Skip to content

Commit

Permalink
Upgrading versions to latest libraries.
Browse files Browse the repository at this point in the history
  • Loading branch information
oshoukry committed Jul 31, 2019
1 parent 823d42b commit e860a98
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
13 changes: 7 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -83,10 +83,10 @@
</issueManagement>

<properties>
<asm.version>7.0</asm.version>
<asm.version>7.1</asm.version>
<coveralls-maven-plugin.version>3.0.1</coveralls-maven-plugin.version>
<hamcrest-all.version>1.3</hamcrest-all.version>
<jacoco-maven-plugin.version>0.8.0</jacoco-maven-plugin.version>
<jacoco-maven-plugin.version>0.8.4</jacoco-maven-plugin.version>
<jdk.sourceEncoding>UTF-8</jdk.sourceEncoding>
<jdk.target>1.5</jdk.target>
<maven.compiler.source>${jdk.target}</maven.compiler.source>
Expand All @@ -97,9 +97,9 @@
<maven-javadoc-plugin.version>2.10.4</maven-javadoc-plugin.version>
<maven-source-plugin.version>3.0.1</maven-source-plugin.version>
<skipTests>false</skipTests>
<slf4j.version>1.7.25</slf4j.version>
<surefire.version>2.19.1</surefire.version>
<testng.version>6.8</testng.version>
<slf4j.version>1.7.26</slf4j.version>
<surefire.version>2.22.2</surefire.version>
<testng.version>6.14.3</testng.version>
</properties>

<dependencies>
Expand Down Expand Up @@ -186,12 +186,13 @@
<version>${surefire.version}</version>
<configuration>
<testNGArtifactName>none:none</testNGArtifactName>
<argLine>-Xms1024m -Xmx1024m</argLine>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.0.2</version>
<version>3.1.2</version>
<configuration>
<archive>
<manifest>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
public class ByteCodeFactory {
private static final Logger LOGGER = LoggerFactory.getLogger(ByteCodeFactory.class);
public static final Version ASM_MIN_VERSION = VersionFactory.getVersion("5.0.0");
public static final Version ASM_MAX_VERSION = VersionFactory.getVersion("7.0.0");
public static final Version ASM_MAX_VERSION = VersionFactory.getVersion("7.1.0");

private static boolean asm_enabled = ASMDetector.getInstance().isASMLoaded();
private static Version asm_version = ASMDetector.getInstance().getVersion();
Expand Down

0 comments on commit e860a98

Please sign in to comment.