-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathbuild.gradle.kts
107 lines (93 loc) · 3.26 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
import org.jetbrains.kotlin.gradle.tasks.KotlinCompilationTask
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
kotlin("jvm") version("2.0.0")
kotlin("kapt") version("2.0.0")
id("com.vanniktech.maven.publish") version("0.23.1")
`maven-publish`
signing
}
allprojects {
repositories {
mavenLocal()
mavenCentral()
maven("https://maven.google.com")
maven("https://plugins.gradle.org/m2/")
google()
}
}
mavenPublishing {
publishToMavenCentral()
}
group = "de.jensklingenberg"
version = "0.0.1"
val autoService = "1.1.1"
dependencies {
compileOnly("com.google.auto.service:auto-service:$autoService")
kapt("com.google.auto.service:auto-service:$autoService")
compileOnly("org.jetbrains.kotlin:kotlin-compiler-embeddable:2.0.0")
testImplementation("dev.zacsweers.kctfork:core:0.4.1")
testImplementation("junit:junit:4.13.2")
testImplementation("com.google.truth:truth:1.4.2")
testImplementation(kotlin("reflect"))
}
publishing {
publications {
create<MavenPublication>("default") {
from(components["java"])
pom {
name.set("compiler-plugin")
description.set("Hello World Compiler Plugin")
url.set("https://github.com/Foso/KotlinCompilerPluginExample")
licenses {
license {
name.set("Apache License 2.0")
url.set("https://github.com/Foso/KotlinCompilerPluginExample/blob/master/LICENSE.txt")
}
}
scm {
url.set("https://github.com/Foso/KotlinCompilerPluginExample")
connection.set("scm:git:git://github.com/Foso/KotlinCompilerPluginExample.git")
}
developers {
developer {
name.set("Developer Name")
url.set("Developer URL")
}
}
}
}
}
repositories {
if (
hasProperty("sonatypeUsername") &&
hasProperty("sonatypePassword") &&
hasProperty("sonatypeSnapshotUrl") &&
hasProperty("sonatypeReleaseUrl")
) {
maven {
val url = when {
"SNAPSHOT" in version.toString() -> property("sonatypeSnapshotUrl")
else -> property("sonatypeReleaseUrl")
} as String
setUrl(url)
credentials {
username = property("sonatypeUsername") as String
password = property("sonatypePassword") as String
}
}
}
}
}
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(8))
}
}
tasks.withType<KotlinCompile> {
kotlinOptions.jvmTarget = "1.8"
}
tasks.withType<KotlinCompilationTask<*>>().configureEach {
compilerOptions.freeCompilerArgs.add("-opt-in=org.jetbrains.kotlin.compiler.plugin.ExperimentalCompilerApi")
}
//./gradlew clean :lib:compileKotlinJvm --no-daemon -Dorg.gradle.debug=true -Dkotlin.compiler.execution.strategy="in-process" -Dkotlin.daemon.jvm.options="-Xdebug,-Xrunjdwp:transport=dt_socket,address=5005,server=y,suspend=n"