diff --git a/api/build.gradle b/api/build.gradle index 229c589..7b8e948 100644 --- a/api/build.gradle +++ b/api/build.gradle @@ -1,14 +1,3 @@ -plugins { - id 'java' - id 'java-library' -} - -group = 'me.tofaa.entitylib' -version = '1.0-SNAPSHOT' - -repositories { - mavenCentral() -} dependencies { api 'org.jetbrains:annotations:24.0.0' diff --git a/code-gen/build.gradle b/code-gen/build.gradle index e6439d3..b4b822e 100644 --- a/code-gen/build.gradle +++ b/code-gen/build.gradle @@ -1,17 +1,8 @@ -plugins { - id 'java' -} - // jdk 17 sourceCompatibility = JavaVersion.VERSION_17 targetCompatibility = JavaVersion.VERSION_17 - -repositories { - mavenCentral() -} - dependencies { implementation 'com.google.code.gson:gson:2.10.1' implementation 'com.squareup:javapoet:1.13.0' diff --git a/common/build.gradle b/common/build.gradle index 4cb63f2..3647b1a 100644 --- a/common/build.gradle +++ b/common/build.gradle @@ -1,14 +1,3 @@ -plugins { - id 'java' - id 'java-library' -} - -group = 'org.example' -version = '1.0-SNAPSHOT' - -repositories { - mavenCentral() -} dependencies { api(project(":api")) diff --git a/platforms/spigot/build.gradle b/platforms/spigot/build.gradle index f74503b..9484c34 100644 --- a/platforms/spigot/build.gradle +++ b/platforms/spigot/build.gradle @@ -1,14 +1,3 @@ -plugins { - id 'java' - id 'java-library' -} - -group = 'me.tofaa.entitylib' -version = '1.0-SNAPSHOT' - -repositories { - mavenCentral() -} dependencies { api(project(":common"))