going to make new module

This commit is contained in:
kento2 2026-06-02 22:45:40 +02:00
parent bdbd079a14
commit e85228e717
12 changed files with 16 additions and 30 deletions

View file

@ -1,6 +1,3 @@
val scrowToken = providers.gradleProperty("scrowMavenToken")
.orElse(providers.environmentVariable("SCROW_MAVEN_TOKEN"))
plugins {
id("java")
id("java-library")
@ -12,20 +9,6 @@ version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
maven {
name = "scrow"
url = uri("http://forge.kentoj.de/api/packages/scrow/maven")
isAllowInsecureProtocol = true
credentials(HttpHeaderCredentials::class) {
name = "Authorization"
value = "token $scrowToken"
}
authentication {
create<HttpHeaderAuthentication>("header")
}
}
}
dependencies {