aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author zaaarf <zaaarf@proton.me>2023-03-31 13:50:01 +0200
committer zaaarf <zaaarf@proton.me>2023-03-31 13:50:01 +0200
commit0a28187b7ce276f457d164c3d409f2bf67318d08 (patch)
tree280a18915d1d548624438f995aecad0b7ed6d0f1
parent716a19c5a55b7a2760aff5bede8c9dcad5285d53 (diff)
fix: remove generic also at the end of internal name
GOD YES
-rw-r--r--build.gradle24
1 files changed, 12 insertions, 12 deletions
diff --git a/build.gradle b/build.gradle
index 86c3a2a..faf262d 100644
--- a/build.gradle
+++ b/build.gradle
@@ -1,29 +1,29 @@
plugins {
- id 'java'
- id 'com.palantir.git-version' version '0.13.0'
+ id 'java'
+ id 'com.palantir.git-version' version '0.13.0'
}
archivesBaseName = 'processor'
version = gitVersion()
java {
- sourceCompatibility = JavaVersion.VERSION_1_8
- targetCompatibility = JavaVersion.VERSION_1_8
- withSourcesJar()
- withJavadocJar()
+ sourceCompatibility = JavaVersion.VERSION_1_8
+ targetCompatibility = JavaVersion.VERSION_1_8
+ withSourcesJar()
+ withJavadocJar()
}
repositories {
- mavenCentral()
- maven { url = 'https://maven.fantabos.co' }
+ mavenCentral()
+ maven { url = 'https://maven.fantabos.co' }
}
dependencies {
- implementation 'com.squareup:javapoet:1.13.0'
- implementation 'org.ow2.asm:asm-commons:9.5'
- implementation 'ftbsc:lll:0.4.0'
+ implementation 'com.squareup:javapoet:1.13.0'
+ implementation 'org.ow2.asm:asm-commons:9.5'
+ implementation 'ftbsc:lll:0.4.0'
}
jar {
- archiveFileName = "${jar.archiveBaseName.get()}-${project.version.split('-')[0]}.${jar.archiveExtension.get()}"
+ archiveFileName = "${jar.archiveBaseName.get()}-${project.version.split('-')[0]}.${jar.archiveExtension.get()}"
}