-
Notifications
You must be signed in to change notification settings - Fork 10
/
build.gradle.kts
49 lines (42 loc) · 1.32 KB
/
build.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
plugins {
id("com.bybutter.sisyphus.project") version "2.1.0" apply false
id("com.netflix.nebula.contacts") version "7.0.1"
id("com.netflix.nebula.info") version "12.1.6" apply false
id("com.netflix.nebula.maven-publish") version "20.3.0" apply false
id("com.netflix.nebula.source-jar") version "20.3.0" apply false
id("org.jetbrains.changelog") version "1.3.0"
id("org.jetbrains.compose") version "1.5.2" apply false
kotlin("jvm") version "1.9.10" apply false
}
allprojects {
apply(plugin = "com.netflix.nebula.contacts")
apply(plugin = "com.netflix.nebula.info")
group = "com.bybutter.compose"
version = "2.2.0"
contacts {
addPerson(
delegateClosureOf<nebula.plugin.contacts.Contact> {
moniker = "higan"
github = "devkanro"
roles.add("owner")
},
)
}
}
subprojects {
apply(plugin = "org.jetbrains.compose")
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile>() {
kotlinOptions.jvmTarget = "17"
}
repositories {
mavenLocal()
mavenCentral()
google()
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
}
}
changelog {
version.set(project.version.toString())
groups.set(emptyList())
}