Skip to content

Commit

Permalink
fix: add InstrumentException to dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
bluelhf committed Feb 19, 2024
1 parent 9b63ec9 commit 5522e1c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
9 changes: 8 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>blue.lhf</groupId>
<artifactId>Tuli</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>

<properties>
<maven.compiler.source>17</maven.compiler.source>
Expand All @@ -23,4 +23,11 @@
</plugin>
</plugins>
</build>

<distributionManagement>
<repository>
<id>kiputyttö-releases</id>
<url>https://maven.lhf.blue/releases</url>
</repository>
</distributionManagement>
</project>
2 changes: 1 addition & 1 deletion src/main/java/blue/lhf/tuli/impl/SneakyDevil.java
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ private static Path buildJAR() throws IOException {


// SneakyDevil and its non-Java SE dependencies
final Class<?>[] toWrite = new Class[]{Tuli.class, SneakyDevil.class};
final Class<?>[] toWrite = new Class[]{Tuli.class, SneakyDevil.class, InstrumentException.class};

try (final JarOutputStream out = new JarOutputStream(Files.newOutputStream(target), manifest)) {
for (final Class<?> clazz : toWrite) {
Expand Down

0 comments on commit 5522e1c

Please sign in to comment.