Skip to content

Commit

Permalink
fix: installer creats compact jar
Browse files Browse the repository at this point in the history
  • Loading branch information
teletha committed Sep 11, 2024
1 parent f9a555c commit a72d93d
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions src/project/java/bee/Install.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
package bee;

import bee.api.Repository;
import bee.task.Jar;
import bee.task.Test;
import kiss.I;

Expand All @@ -29,11 +28,10 @@ public void project() {
BeeInstaller.install(true, true);
}

// static class Jar extends bee.task.Jar {
// {
// merging = o -> o
// .glob("!licenses/**", "!META-INF/*", "!META-INF/licenses/**", "!META-INF/maven/**",
// "!META-INF/sisu/**", "!META-INF/versions/**");
// }
// }
static class Jar extends bee.task.Jar {
{
merging = o -> o
.glob("!licenses/**", "!META-INF/*", "!META-INF/licenses/**", "!META-INF/maven/**", "!META-INF/sisu/**", "!META-INF/versions/**");
}
}
}

0 comments on commit a72d93d

Please sign in to comment.