-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
46 lines (40 loc) · 1.07 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
import org.jfrog.gradle.plugin.artifactory.Constant.ALL_PUBLICATIONS
plugins {
kotlin("jvm") version "1.9.0"
`java-gradle-plugin`
`kotlin-dsl`
`maven-publish`
id("com.github.johnrengelman.shadow") version ("8.1.1")
id("com.wolfyscript.devtools.java-conventions")
id("com.jfrog.artifactory")
}
repositories {
mavenCentral()
}
dependencies {
implementation(kotlin("stdlib"))
testImplementation(kotlin("test"))
implementation(project(":docker-tools"))
implementation(project(":buildtools"))
}
tasks.test {
useJUnitPlatform()
}
kotlin {
jvmToolchain(17)
}
artifactory {
publish {
contextUrl = "https://artifacts.wolfyscript.com/artifactory"
repository {
repoKey = "gradle-dev-local"
username = project.properties["wolfyRepoPublishUsername"].toString()
password = project.properties["wolfyRepoPublishToken"].toString()
}
defaults {
publications(ALL_PUBLICATIONS)
setPublishArtifacts(true)
setPublishPom(true)
}
}
}