Dependency updates

This commit is contained in:
md_5 2018-12-06 09:52:03 +11:00
parent 2bbb797460
commit 89b9721c58
3 changed files with 9 additions and 9 deletions

12
pom.xml
View File

@ -45,13 +45,13 @@
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-commons</artifactId>
<version>6.1.1</version>
<version>7.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.16.16</version>
<version>1.18.4</version>
<scope>provided</scope>
</dependency>
<dependency>
@ -67,9 +67,9 @@
<scope>compile</scope>
</dependency>
<dependency>
<groupId>net.sf.opencsv</groupId>
<groupId>com.opencsv</groupId>
<artifactId>opencsv</artifactId>
<version>2.3</version>
<version>4.4</version>
<scope>compile</scope>
</dependency>
</dependencies>
@ -99,7 +99,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.0.2</version>
<version>3.1.0</version>
<configuration>
<archive>
<manifestEntries>
@ -111,7 +111,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.1.0</version>
<version>3.2.1</version>
<executions>
<execution>
<phase>package</phase>

View File

@ -71,7 +71,7 @@ public class JarComparer extends ClassVisitor {
}
public JarComparer(Jar jar) {
super(Opcodes.ASM6);
super(Opcodes.ASM7);
this.jar = jar;
this.jarRepo = new JarRepo(jar);
this.inheritance = new JarProvider(jar);
@ -166,7 +166,7 @@ public class JarComparer extends ClassVisitor {
private class MethodReferenceFinder extends MethodVisitor {
public MethodReferenceFinder() {
super(Opcodes.ASM6);
super(Opcodes.ASM7);
}
@Override

View File

@ -28,8 +28,8 @@
*/
package net.md_5.specialsource.transformer;
import au.com.bytecode.opencsv.CSVReader;
import com.google.common.base.Preconditions;
import com.opencsv.CSVReader;
import java.io.File;
import java.io.FileReader;