We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e13eef9 commit 328a529Copy full SHA for 328a529
1 file changed
Agent/build.gradle
@@ -2,7 +2,7 @@ plugins {
2
id "java"
3
id "base.base-conventions"
4
id "base.application-conventions"
5
- id "net.lenni0451.repackager" version "1.0.2"
+ id "net.lenni0451.jar-transformer" version "1.1.0"
6
}
7
8
dependencies {
@@ -21,10 +21,19 @@ jar {
21
22
23
24
-repackager {
25
- jarFile = jar.archiveFile
26
- relocations = [
27
- "org.objectweb": "net.lenni0451.authhook.libs.org.objectweb"
28
- ]
29
- removeEmptyDirs = true
+jarTransformer {
+ jar {
+ inputFile = jar.archiveFile
+ exclude {
+ excludes = [
+ "module-info.class"
30
+ ]
31
+ }
32
+ repackage {
33
+ relocations = [
34
+ "org.objectweb": "net.lenni0451.authhook.libs.org.objectweb"
35
36
+ removeEmptyDirs = true
37
38
39
0 commit comments