generated from DanySK/Template-for-Kotlin-JVM-Projects
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle.kts
163 lines (149 loc) · 4.7 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
import com.apollographql.apollo3.gradle.internal.ApolloDownloadSchemaTask
import com.apollographql.apollo3.gradle.internal.ApolloGenerateSourcesTask
import org.gradle.api.tasks.testing.logging.TestLogEvent
import org.jetbrains.kotlin.gradle.tasks.KotlinCompilationTask
@Suppress("DSL_SCOPE_VIOLATION")
plugins {
alias(libs.plugins.apollo)
alias(libs.plugins.dokka)
alias(libs.plugins.gitSemVer)
alias(libs.plugins.kotlin.jvm)
alias(libs.plugins.kotlin.qa)
alias(libs.plugins.publishOnCentral)
alias(libs.plugins.multiJvmTesting)
alias(libs.plugins.shadowJar)
alias(libs.plugins.taskTree)
alias(libs.plugins.serialization)
application
}
group = "org.danilopianini"
application {
mainClass.set("$group.plagiarismdetector.MainKt")
}
apollo {
fun disableDownload() {
tasks.withType<ApolloDownloadSchemaTask>().configureEach {
enabled = false
}
}
service("github") {
val schema = file("src/main/resources/github.graphql")
packageName.set("org.danilopianini.plagiarismdetector.graphql.github")
schemaFiles.from(schema)
if (schema.exists()) {
disableDownload()
}
introspection {
endpointUrl.set("https://api.github.com/graphql")
schemaFile.set(schema)
val token = System.getenv("GH_TOKEN") ?: System.getenv("GITHUB_TOKEN")
if (token == null) {
project.logger.warn(
"No token provided. Please set the GH_TOKEN or the GITHUB_TOKEN environment variable." +
"Schema download is disabled.",
)
disableDownload()
}
headers.set(
mapOf(
"Authorization" to "Bearer $token",
),
)
}
}
}
tasks.withType<KotlinCompilationTask<*>>().configureEach {
dependsOn(tasks.withType<ApolloDownloadSchemaTask>().filter { it.name.contains("FromIntrospection") })
}
repositories {
mavenCentral()
}
dependencies {
implementation(libs.kotlin.stdlib)
implementation(libs.apollo.runtime)
implementation(libs.clikt)
implementation(libs.github.api)
implementation(libs.unirest)
implementation(libs.json)
implementation(libs.kaml)
implementation(libs.org.eclipse.jgit)
implementation(libs.commons.io)
implementation(libs.commons.math)
implementation(libs.javaparser.core)
implementation(libs.slf4j.api)
implementation(libs.logback.classic)
implementation(libs.logback.core)
implementation(libs.progressbar)
testImplementation(libs.bundles.kotlin.testing)
testImplementation(libs.mockk)
}
multiJvm {
jvmVersionForCompilation.set(11)
}
kotlin {
compilerOptions {
allWarningsAsErrors = true
freeCompilerArgs = listOf("-opt-in=kotlin.RequiresOptIn")
}
}
/*
* Disable verification tasks for generated sources
*/
tasks.withType<SourceTask>().configureEach {
if (this is VerificationTask) {
dependsOn(tasks.withType<ApolloGenerateSourcesTask>())
exclude {
it.file.absolutePath.contains("generated", ignoreCase = true)
}
}
}
ktlint {
filter {
exclude {
it.file.absolutePath.contains("generated")
}
}
}
tasks.test {
useJUnitPlatform()
testLogging {
showStandardStreams = true
showCauses = true
showStackTraces = true
events(*TestLogEvent.values())
exceptionFormat = org.gradle.api.tasks.testing.logging.TestExceptionFormat.FULL
}
jvmArgs(project.property("jvmTestArgs"))
}
signing {
val signingKey: String? by project
val signingPassword: String? by project
useInMemoryPgpKeys(signingKey, signingPassword)
}
publishOnCentral {
projectLongName.set("Code Plagiarism Detector")
projectDescription.set("A tool for scanning existing projects in search of potential signs of plagiarism")
repository("https://maven.pkg.github.com/danysk/${rootProject.name}".lowercase()) {
user.set("DanySK")
password.set(System.getenv("GITHUB_TOKEN"))
}
publishing {
publications {
withType<MavenPublication> {
pom {
developers {
developer {
name.set("Danilo Pianini")
email.set("[email protected]")
url.set("http://www.danilopianini.org/")
}
developer {
name.set("Luca Tassinari")
email.set("[email protected]")
}
}
}
}
}
}
}