Skip to content

Commit 529e16e

Browse files
Issue #161: Update IT to use Java 11
1 parent e6fca6c commit 529e16e

File tree

2 files changed

+12
-10
lines changed

2 files changed

+12
-10
lines changed

src/it/simple/pom.xml

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,10 @@
1414
<plugin>
1515
<groupId>org.apache.maven.plugins</groupId>
1616
<artifactId>maven-compiler-plugin</artifactId>
17-
<version>3.1</version>
18-
<configuration>
19-
<source>1.6</source>
20-
<target>1.6</target>
21-
<compilerArgs>
22-
<arg>-Xlint</arg>
23-
</compilerArgs>
24-
</configuration>
17+
<version>3.8.0</version>
18+
<configuration>
19+
<release>11</release>
20+
</configuration>
2521
</plugin>
2622
<plugin>
2723
<groupId>com.github.wvengen</groupId>
@@ -39,6 +35,14 @@
3935
<configuration>
4036
<attach>true</attach>
4137
</configuration>
38+
<dependencies>
39+
<dependency>
40+
<groupId>org.apache.logging.log4j</groupId>
41+
<artifactId>log4j-core</artifactId>
42+
<version>2.14.1</version>
43+
<scope>runtime</scope>
44+
</dependency>
45+
</dependencies>
4246
</plugin>
4347
</plugins>
4448
</build>

src/it/simple/proguard.conf

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
-libraryjars <java.home>/lib/rt.jar
2-
31
-dontnote
42
-dontwarn
53

0 commit comments

Comments
 (0)