-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
44 lines (38 loc) · 888 Bytes
/
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
import org.jfrog.gradle.plugin.artifactory.task.ArtifactoryTask
plugins {
id("com.jfrog.artifactory") version "5.+"
kotlin("jvm")
}
repositories {
mavenCentral()
}
dependencies {
testImplementation(kotlin("test"))
}
tasks {
test {
useJUnitPlatform()
}
withType<ArtifactoryTask> {
skip = true
}
}
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("lib")
setPublishArtifacts(true)
setPublishPom(true)
isPublishBuildInfo = false
}
}
}