Rewrite this in a way that actually makes sense

This commit is contained in:
2023-06-20 00:09:26 -05:00
parent dc1b460c6a
commit cdf06b5a5d
39 changed files with 222 additions and 5965 deletions
+11 -1
View File
@@ -4,10 +4,12 @@ plugins {
}
group = "dev.plex"
version = "2.0"
version = "2.1"
subprojects {
apply(plugin = "java")
apply(plugin = "com.github.johnrengelman.shadow")
java.sourceCompatibility = JavaVersion.VERSION_17
repositories {
mavenCentral()
@@ -24,6 +26,14 @@ subprojects {
url = uri("https://maven.playpro.com/")
}
}
dependencies {
if (project.name != "shared") {
implementation(project(":shared"))
}
compileOnly("net.coreprotect:coreprotect:21.3")
}
}
tasks {