Skip to content

Commit 430f69b

Browse files
committed
updated pom dependencies; works now for Java 8 programs (in particular for Lambdas, but I reckon for any byte code that utilizes invokedynamic)
1 parent 86d8f4c commit 430f69b

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,7 @@ bin/
1111
.project
1212
.settings/
1313

14+
# intellij
15+
.idea/
16+
*.iml
17+

pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<dependency>
1818
<groupId>org.apache.bcel</groupId>
1919
<artifactId>bcel</artifactId>
20-
<version>5.2</version>
20+
<version>6.0</version>
2121
<scope>provided</scope>
2222
</dependency>
2323
<dependency>
@@ -32,7 +32,7 @@
3232
<plugin>
3333
<groupId>org.apache.maven.plugins</groupId>
3434
<artifactId>maven-assembly-plugin</artifactId>
35-
<version>2.2.1</version>
35+
<version>3.0.0</version>
3636
<configuration>
3737
<descriptors>
3838
<descriptor>assembly-dyn.xml</descriptor>
@@ -58,11 +58,11 @@
5858
</plugin>
5959
<plugin>
6060
<artifactId>maven-compiler-plugin</artifactId>
61-
<version>2.3.2</version>
61+
<version>3.6.1</version>
6262
<configuration>
6363
<optimize>false</optimize>
64-
<source>1.6</source>
65-
<target>1.6</target>
64+
<source>1.8</source>
65+
<target>1.8</target>
6666
</configuration>
6767
</plugin>
6868
</plugins>

0 commit comments

Comments
 (0)