-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
45 lines (39 loc) · 938 Bytes
/
build.gradle.kts
File metadata and controls
45 lines (39 loc) · 938 Bytes
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
import org.jfrog.gradle.plugin.artifactory.task.ArtifactoryTask
plugins {
kotlin("jvm")
alias(sharedLibs.plugins.artifactory)
alias(sharedLibs.plugins.fabric.loom) apply false
}
repositories {
mavenCentral()
}
dependencies {
testImplementation(kotlin("test"))
}
tasks {
test {
useJUnitPlatform()
}
withType<ArtifactoryTask> {
skip = true
}
}
kotlin {
jvmToolchain(25)
}
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
}
}
}