2023-02-28T02:13:01

This commit is contained in:
2023-02-28 02:13:03 +09:00
parent d28485c0c8
commit bd1440e1a5
15 changed files with 111 additions and 22 deletions

View File

@@ -15,7 +15,7 @@ description = ""//todo
repositories {
maven {
url = uri("https://repository.elex-project.com/repository/maven")
url = uri(project.findProperty("repo.url") as String)
}
}
@@ -68,16 +68,16 @@ tasks.javadoc {
}
dependencies {
//implementation(fileTree(mapOf("dir" to "libs", "include" to listOf("*.jar"))))
implementation("org.slf4j:slf4j-api:1.7.32")
implementation("org.jetbrains:annotations:22.0.0")
implementation("org.slf4j:slf4j-api:2.0.6")
implementation("org.jetbrains:annotations:24.0.0")
implementation("com.elex-project:abraxas:4.7.1")
implementation("com.elex-project:abraxas:4.11.0")
compileOnly("org.projectlombok:lombok:1.18.20")
annotationProcessor("org.projectlombok:lombok:1.18.20")
testAnnotationProcessor("org.projectlombok:lombok:1.18.20")
compileOnly("org.projectlombok:lombok:1.18.26")
annotationProcessor("org.projectlombok:lombok:1.18.26")
testAnnotationProcessor("org.projectlombok:lombok:1.18.26")
implementation("ch.qos.logback:logback-classic:1.2.3")
testImplementation("org.junit.jupiter:junit-jupiter:5.7.2")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.7.2")
implementation("ch.qos.logback:logback-classic:1.4.5")
testImplementation("org.junit.jupiter:junit-jupiter:5.9.2")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.9.2")
}

View File

@@ -70,8 +70,8 @@ publishing {
repositories {
maven {
name = "mavenElex"
val urlRelease = uri("https://repository.elex-project.com/repository/maven-releases")
val urlSnapshot = uri("https://repository.elex-project.com/repository/maven-snapshots")
val urlRelease = uri(project.findProperty("repo.release.url") as String)
val urlSnapshot = uri(project.findProperty("repo.snapshot.url") as String)
url = if (version.toString().endsWith("SNAPSHOT")) urlSnapshot else urlRelease
// Repository credential, Must be defined in ~/.gradle/gradle.properties
credentials {
@@ -81,7 +81,7 @@ publishing {
}
maven { //todo
name = "mavenGithub"
url = uri("https://maven.pkg.github.com/elex-project/tmpl-java-library")
url = uri("https://maven.pkg.git.elex-project.com/elex/tmpl-java-library")
credentials {
username = project.findProperty("github.username") as String
password = project.findProperty("github.token") as String