-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
57 lines (44 loc) · 1.15 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
50
51
52
53
54
55
56
57
plugins {
`kotlin-dsl`
`java-gradle-plugin`
alias(libs.plugins.com.vanniktech.maven.publish)
alias(libs.plugins.binary.compatibility.validator)
}
val VERSION_NAME: String by project
val group = "com.prof18.kmp-framework-bundler"
repositories {
mavenCentral()
}
dependencies {
compileOnly(gradleApi())
compileOnly(libs.kotlin.gradle.plugin)
compileOnly(libs.kotlin.compiler.embeddable)
testImplementation(libs.junit)
}
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(11))
}
}
tasks.withType<JavaCompile>().configureEach {
options.release.set(11)
}
tasks.withType<Test> {
useJUnit()
dependsOn("publishToMavenLocal")
val kotlinVersion = libs.versions.kotlin.get()
systemProperty("kotlinVersion", kotlinVersion)
systemProperty("pluginVersion", VERSION_NAME)
}
tasks.processResources {
duplicatesStrategy = DuplicatesStrategy.INCLUDE
}
gradlePlugin {
plugins {
create("KMPFrameworkBundler") {
id = group
implementationClass = "com.prof18.kmpframeworkbundler.KMPFrameworkBundlerPlugin"
version = VERSION_NAME
}
}
}