forked from DanySK/code-plagiarism-detector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
105 lines (95 loc) · 2.88 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
import org.gradle.api.tasks.testing.logging.TestLogEvent
@Suppress("DSL_SCOPE_VIOLATION")
plugins {
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")
}
repositories {
mavenCentral()
}
dependencies {
implementation(libs.kotlin.stdlib)
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 {
target {
compilations.all {
kotlinOptions {
allWarningsAsErrors = true
freeCompilerArgs = listOf("-opt-in=kotlin.RequiresOptIn")
}
}
}
}
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]")
}
}
}
}
}
}
}