Skip to content

Commit e2d98c4

Browse files
authored
Fix compilation under Java 11 (#8)
1 parent 5a45a50 commit e2d98c4

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

pom.xml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@
8080
<plugin>
8181
<groupId>org.apache.maven.plugins</groupId>
8282
<artifactId>maven-jar-plugin</artifactId>
83+
<version>3.2.0</version>
8384
<configuration>
8485
<archive>
8586
<manifestEntries>
@@ -93,11 +94,12 @@
9394
<plugin>
9495
<groupId>org.apache.maven.plugins</groupId>
9596
<artifactId>maven-shade-plugin</artifactId>
97+
<version>3.2.3</version>
9698
<dependencies>
9799
<dependency>
98100
<groupId>com.github.edwgiz</groupId>
99101
<artifactId>maven-shade-plugin.log4j2-cachefile-transformer</artifactId>
100-
<version>2.8.1</version>
102+
<version>2.13.1</version>
101103
</dependency>
102104
</dependencies>
103105
<executions>
@@ -111,7 +113,7 @@
111113
<configuration>
112114
<transformers>
113115
<transformer
114-
implementation="com.github.edwgiz.mavenShadePlugin.log4j2CacheTransformer.PluginsCacheFileTransformer">
116+
implementation="com.github.edwgiz.maven_shade_plugin.log4j2_cache_transformer.PluginsCacheFileTransformer">
115117
</transformer>
116118
</transformers>
117119
</configuration>

0 commit comments

Comments
 (0)