first commit

This commit is contained in:
destro174
2021-09-06 19:35:04 +02:00
commit 2e47148476
17 changed files with 638 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
plugins {
`maven-publish`
}
dependencies {
// Galaxy
compileOnly("com.alttd:galaxy-api:1.17.1-R0.1-SNAPSHOT")
}
publishing {
publications {
create<MavenPublication>("mavenJava") {
from(components["java"])
}
}
repositories{
maven {
name = "maven"
url = uri("http://leo:8081/")
isAllowInsecureProtocol = true
credentials(PasswordCredentials::class)
}
}
}