Removed Compiler Files

This commit is contained in:
Paldiu 2022-04-16 16:53:12 -05:00
parent 1d17d36177
commit 8473988f59
4 changed files with 15 additions and 47 deletions

11
.gitignore vendored
View File

@ -25,11 +25,8 @@ hs_err_pid*
*.xml *.xml
*.txt *.txt
*.lst *.lst
*.lst
/target/ build/
/out/ .idea/
/build/ .gradle/
/.idea/ simplexcore.asc
# Ignore Gradle project-specific cache directory
/.gradle/

View File

@ -13,35 +13,21 @@ java {
version project.properties["pluginVersion"] version project.properties["pluginVersion"]
targetCompatibility = sourceCompatibility = JavaVersion.VERSION_17 targetCompatibility = sourceCompatibility = JavaVersion.VERSION_17
repositories { repositories {
mavenCentral() mavenCentral()
//maven artifact repo urls maven { url "https://jitpack.io" }
[ maven { url "https://papermc.io/repo/repository/maven-public/" }
"https://jitpack.io", maven { url "https://os1.oss.sonatype.org/content/groups/public/" }
"https://papermc.io/repo/repository/maven-public/",
"https://os1.oss.sonatype.org/content/groups/public/"
].each { s ->
maven {
url s
}
}
} }
dependencies { dependencies {
//provided //provided
[ compileOnly "io.papermc.paper:paper-api:1.18-R0.1-SNAPSHOT"
"io.papermc.paper:paper-api:1.18-R0.1-SNAPSHOT",
].each {s ->
compileOnly s
}
//compile //compile
[ implementation "org.jetbrains:annotations:23.0.0"
"org.jetbrains:annotations:23.0.0", implementation "org.reflections:reflections:0.10.2"
"org.reflections:reflections:0.10.2"
].each {s ->
implementation s
}
} }
shadowJar { shadowJar {
@ -49,12 +35,8 @@ shadowJar {
baseName project.properties["pluginName"].toString() baseName project.properties["pluginName"].toString()
//shading and relocation //shading and relocation
[ relocate "org.reflections", "${project.properties["pluginMainPackage"]}.shaded.reflections"
"org.reflections", relocate "javassist", "${project.properties["pluginMainPackage"]}.shaded.jassist"
"javassist"
].each {s ->
relocate s, "${project.properties["pluginMainPackage"]}.shaded.$s"
}
} }
apply plugin: 'maven-publish' apply plugin: 'maven-publish'

View File

@ -1,12 +0,0 @@
-----BEGIN PGP PUBLIC KEY BLOCK-----
mDMEYdpDBxYJKwYBBAHaRw8BAQdAoGRHsaqmeJEq8ZXIpoCUqCQ0aKbNpLVz0lD4
yq+UM6i0C3NpbXBsZXhjb3JliJoEExYKAEIWIQT65oQCdo6SdgRjZpTAvpGolhpB
HAUCYdpDBwIbAwUJB4WtmQULCQgHAgMiAgEGFQoJCAsCBBYCAwECHgcCF4AACgkQ
wL6RqJYaQRwLkQD+Kef3rW0gUvCx8jodYo5Dwd3Xeb4EpKoYwWVNy59a4f4A/jbP
elULb4W9X2QY5haAlqGgxZWl3b72rbU2coIruqULuDgEYdpDBxIKKwYBBAGXVQEF
AQEHQC9BgyazC+d+LYmrNdqLiQHWb69HFFB0dlRAM6M8YmAYAwEIB4h+BBgWCgAm
FiEE+uaEAnaOknYEY2aUwL6RqJYaQRwFAmHaQwcCGwwFCQeFrZkACgkQwL6RqJYa
QRxmvgEApZfqXwcuiqv/x0KFykus5ECOSgLrfB9l5f1lMzHPwrAA/RH31VsaKq10
JSvONawvcpjts3x7qy6+wrkjI25LJmUL
=h40b
-----END PGP PUBLIC KEY BLOCK-----

View File

@ -0,0 +1 @@
# Empty configuration file.