This commit is contained in:
@@ -13,7 +13,7 @@ allprojects {
|
||||
|
||||
repositories {
|
||||
maven {
|
||||
url = woggioniMavenRepositoryUrl
|
||||
url = getProperty('gitea.maven.url')
|
||||
}
|
||||
mavenCentral()
|
||||
}
|
||||
@@ -25,12 +25,12 @@ kotlin {
|
||||
dependencies {
|
||||
implementation group: 'org.jetbrains.kotlin',
|
||||
name: 'kotlin-test',
|
||||
version: catalog.versions.kotlin.get()
|
||||
version: catalog.versions.kotlin.asProvider().get()
|
||||
}
|
||||
}
|
||||
}
|
||||
jvm {
|
||||
jvmToolchain(17)
|
||||
jvmToolchain(21)
|
||||
withJava()
|
||||
compilations.main {
|
||||
Action<KotlinJvmCompilerOptions> action = { KotlinJvmCompilerOptions kjco ->
|
||||
@@ -73,7 +73,7 @@ publishing {
|
||||
repositories {
|
||||
maven {
|
||||
name = "Gitea"
|
||||
url = uri("https://woggioni.net/gitea/api/packages/woggioni/maven")
|
||||
url = uri(getProperty('gitea.maven.url'))
|
||||
|
||||
credentials(HttpHeaderCredentials) {
|
||||
name = "Authorization"
|
||||
|
@@ -1,7 +1,7 @@
|
||||
kotlin.code.style=official
|
||||
kotlin.jvm.target.validation.mode=ignore
|
||||
|
||||
woggioniMavenRepositoryUrl=https://woggioni.net/mvn/
|
||||
gitea.maven.url = https://gitea.woggioni.net/api/packages/woggioni/maven
|
||||
|
||||
klevtree.version = 2024.02.12
|
||||
lys.version = 2024.02.09
|
||||
klevtree.version = 2024.04.05
|
||||
lys.version = 2024.04.04
|
||||
|
@@ -1,7 +1,7 @@
|
||||
pluginManagement {
|
||||
repositories {
|
||||
maven {
|
||||
url = woggioniMavenRepositoryUrl
|
||||
url = getProperty('gitea.maven.url')
|
||||
}
|
||||
gradlePluginPortal()
|
||||
}
|
||||
@@ -10,7 +10,7 @@ pluginManagement {
|
||||
dependencyResolutionManagement {
|
||||
repositories {
|
||||
maven {
|
||||
url = 'https://woggioni.net/mvn/'
|
||||
url = getProperty('gitea.maven.url')
|
||||
content {
|
||||
includeGroup 'com.lys'
|
||||
}
|
||||
@@ -19,7 +19,6 @@ dependencyResolutionManagement {
|
||||
versionCatalogs {
|
||||
catalog {
|
||||
from group: 'com.lys', name: 'lys-catalog', version: getProperty('lys.version')
|
||||
version("slf4j", "1.7.36")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user