rs09-constants-library/build.gradle

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"
}