Skip to content

Commit

Permalink
This is a breaking change as to resolve the vulnerable dependencies w…
Browse files Browse the repository at this point in the history
…e must move from a minumum of Java 7 to Java 8. For vunerability information see #1561
  • Loading branch information
jeremylong committed Nov 18, 2018
1 parent f1d00a1 commit 5aa5b61
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions pom.xml
Expand Up @@ -183,7 +183,8 @@ Copyright (c) 2012 - Jeremy Long
<groovy-all.version>2.4.15</groovy-all.version>
<!-- upgrading beyond 1.5 will cause the build to fail on Java 7 -->
<gmavenplus-plugin.version>1.5</gmavenplus-plugin.version>

<com.h3xstream.retirejs.core.version>3.0.2</com.h3xstream.retirejs.core.version>
<com.google.guava.version>27.0-jre</com.google.guava.version>
<surefireArgLine/>
</properties>
<distributionManagement>
Expand Down Expand Up @@ -464,7 +465,7 @@ Copyright (c) 2012 - Jeremy Long
<configuration>
<rules>
<requireJavaVersion>
<version>1.7.0</version>
<version>1.8.0</version>
</requireJavaVersion>
</rules>
</configuration>
Expand All @@ -474,7 +475,7 @@ Copyright (c) 2012 - Jeremy Long
<configuration>
<rules>
<byteCodeRule implementation="org.owasp.maven.enforcer.rule.ClassFileFormatRule">
<supportedClassFileFormat>51</supportedClassFileFormat>
<supportedClassFileFormat>52</supportedClassFileFormat>
</byteCodeRule>
</rules>
</configuration>
Expand Down Expand Up @@ -916,10 +917,15 @@ Copyright (c) 2012 - Jeremy Long
<artifactId>lucene-test-framework</artifactId>
<version>${apache.lucene.version}</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${com.google.guava.version}</version>
</dependency>
<dependency>
<groupId>com.h3xstream.retirejs</groupId>
<artifactId>retirejs-core</artifactId>
<version>3.0.1</version>
<version>${com.h3xstream.retirejs.core.version}</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
Expand Down

0 comments on commit 5aa5b61

Please sign in to comment.