-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
46 lines (40 loc) · 1.02 KB
/
build.gradle.kts
File metadata and controls
46 lines (40 loc) · 1.02 KB
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 "2.2.0"
`java-gradle-plugin`
`kotlin-dsl`
`maven-publish`
id("com.gradleup.shadow") version ("9.0.0")
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(21)
}
artifactory {
publish {
contextUrl = "https://artifacts.wolfyscript.com/artifactory"
repository {
repoKey = "gradle-dev-local"
username = System.getenv("ARTIFACTORY_USERNAME")
password = System.getenv("ARTIFACTORY_TOKEN")
}
defaults {
publications(ALL_PUBLICATIONS)
setPublishArtifacts(true)
setPublishPom(true)
}
}
}