Skip to content

Commit f3db179

Browse files
committed
Update to Java 11.
Refs #448
1 parent b32b7f7 commit f3db179

File tree

2 files changed

+26
-10
lines changed

2 files changed

+26
-10
lines changed

EnrichmentMapPlugin/pom.xml

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -109,9 +109,9 @@
109109
<version>5.5.12</version>
110110
</dependency>
111111
<dependency>
112-
<groupId>com.google.guava</groupId> <!-- required by freebuilder -->
112+
<groupId>com.google.guava</groupId>
113113
<artifactId>guava</artifactId>
114-
<version>18.0</version>
114+
<version>30.1-jre</version>
115115
</dependency>
116116
<dependency>
117117
<groupId>com.google.code.findbugs</groupId> <!-- required by guava -->
@@ -164,17 +164,17 @@
164164
<dependency>
165165
<groupId>com.google.inject</groupId>
166166
<artifactId>guice</artifactId>
167-
<version>4.0</version>
167+
<version>4.2.3</version>
168168
</dependency>
169169
<dependency>
170170
<groupId>com.google.inject.extensions</groupId>
171171
<artifactId>guice-multibindings</artifactId>
172-
<version>4.0</version>
172+
<version>4.2.3</version>
173173
</dependency>
174174
<dependency>
175175
<groupId>com.google.inject.extensions</groupId>
176176
<artifactId>guice-assistedinject</artifactId>
177-
<version>4.0</version>
177+
<version>4.2.3</version>
178178
</dependency>
179179
<dependency>
180180
<groupId>org.ops4j</groupId>
@@ -210,6 +210,11 @@
210210
<version>1.5</version>
211211
<scope>test</scope>
212212
</dependency>
213+
<dependency>
214+
<groupId>net.bytebuddy</groupId>
215+
<artifactId>byte-buddy</artifactId>
216+
<version>1.10.21</version>
217+
</dependency>
213218
<dependency>
214219
<groupId>junit</groupId>
215220
<artifactId>junit</artifactId>
@@ -263,8 +268,11 @@
263268
<Bundle-Version>${project.version}</Bundle-Version>
264269
<Bundle-Activator>${bundle.namespace}.enrichmentmap.CyActivator</Bundle-Activator>
265270
<Embed-Dependency>
266-
colt,commons-math3,commons-lang3,httpclient,httpcore,itextpdf,guava,gson,jsr305,guice,peaberry,javax.inject,
267-
aopalliance,guice-multibindings,guice-assistedinject,jatl,jcolorbrewer,jfreechart,jcommon
271+
colt,commons-math3,commons-lang3,
272+
httpclient,httpcore,itextpdf,guava,failureaccess,
273+
gson,jsr305,guice,peaberry,javax.inject,
274+
aopalliance,guice-multibindings,guice-assistedinject,
275+
jatl,jcolorbrewer,jfreechart,jcommon
268276
</Embed-Dependency>
269277
<Embed-Transitive>true</Embed-Transitive>
270278
<Export-Package>${export.package}</Export-Package>

pom.xml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,10 +75,18 @@
7575
<plugin>
7676
<groupId>org.apache.maven.plugins</groupId>
7777
<artifactId>maven-compiler-plugin</artifactId>
78-
<version>3.0</version>
78+
<version>3.8.1</version>
79+
<extensions>true</extensions>
7980
<configuration>
80-
<source>1.8</source>
81-
<target>1.8</target>
81+
<source>11</source>
82+
<target>11</target>
83+
<optimize>true</optimize>
84+
<showWarnings>true</showWarnings>
85+
<showDeprecation>true</showDeprecation>
86+
<compilerArguments>
87+
<Xmaxwarns>10000</Xmaxwarns>
88+
<Xmaxerrs>10000</Xmaxerrs>
89+
</compilerArguments>
8290
</configuration>
8391
</plugin>
8492
</plugins>

0 commit comments

Comments
 (0)