-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
49 lines (41 loc) · 1.24 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
import org.gradle.jvm.tasks.Jar
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
`maven-publish`
kotlin("jvm") version "1.7.10"
id("org.jetbrains.dokka") version "1.7.10"
}
group = "com.londogard"
version = "1.2.0"
val smileVersion = "2.6.0"
repositories {
mavenCentral()
maven(url = "https://jitpack.io")
}
dependencies {
implementation(kotlin("stdlib-jdk8"))
implementation("com.londogard:embeddings-kt:master-SNAPSHOT")
implementation("com.github.haifengl:smile-nlp:$smileVersion")
implementation("com.github.haifengl:smile-kotlin:$smileVersion")
testImplementation("junit:junit:4.13.2")
}
tasks.withType<KotlinCompile> {
kotlinOptions.jvmTarget = "1.8"
}
publishing {
repositories {
maven {
name = "GitHubPackages"
url = uri("https://maven.pkg.github.com/londogard/summarize-kt")
credentials {
username = project.findProperty("gpr.user") as String? ?: System.getenv("GITHUB_ACTOR")
password = project.findProperty("gpr.key") as String? ?: System.getenv("GITHUB_TOKEN")
}
}
}
publications {
register<MavenPublication>("gpr"){
from(components["java"])
}
}
}