progress on boosters

This commit is contained in:
destro174
2021-11-04 17:57:55 +01:00
parent b6cefd5403
commit 95d219d546
13 changed files with 677 additions and 24 deletions
+16 -16
View File
@@ -7,19 +7,19 @@ dependencies {
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)
}
}
}
//publishing {
// publications {
// create<MavenPublication>("mavenJava") {
// from(components["java"])
// }
// }
//
// repositories{
// maven {
// name = "maven"
// url = uri("http://leo:8081/")
// isAllowInsecureProtocol = true
// credentials(PasswordCredentials::class)
// }
// }
//}
@@ -4,7 +4,7 @@ import java.util.UUID;
public interface Booster {
boolean active();
boolean isActive();
void setActive(Boolean active);
@@ -33,4 +33,6 @@ public interface Booster {
UUID getUUID();
void stopBooster();
void saveBooster();
}