mirror of
https://gitlab.com/2009scape/tools/rs09-constants-library.git
synced 2026-08-01 14:39:15 -06:00
25 lines
542 B
Groovy
25 lines
542 B
Groovy
plugins {
|
|
id 'org.jetbrains.kotlin.jvm' version '1.4.31'
|
|
}
|
|
|
|
group 'org.rs09.consts'
|
|
version '1.4'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven {
|
|
url "https://gitlab.com/api/v4/groups/10870176/-/packages/maven"
|
|
name "GitLab"
|
|
credentials(HttpHeaderCredentials) {
|
|
name = 'Job-Token'
|
|
value = System.getenv("CI_JOB_TOKEN")
|
|
}
|
|
authentication {
|
|
header(HttpHeaderAuthentication)
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib"
|
|
}
|