2024-04-01

This commit is contained in:
2024-04-01 20:11:09 +09:00
parent a2349837be
commit c4291c2746
26 changed files with 464 additions and 34 deletions

View File

@@ -8,16 +8,24 @@
buildscript {
repositories {
maven {
name = "Nexus 3 Repository"
url = uri(project.findProperty("repo.url") as String)
credentials {
username = project.findProperty("repo.username") as String
password = project.findProperty("repo.password") as String
}
}
}
}
plugins {
base
id("com.github.ben-manes.versions") version "0.39.0"
id("com.github.ben-manes.versions") version "0.51.0"
}
subprojects{
group = "com.elex-project"
version = "1.0-SNAPSHOT"
description = ""//todo
}