Updated junit to the newest version (4.11).

Updated jline to the newest version (2.11).
Updated code to match the new structure of jline.
Updated version of maven-shade-plugin to the newest version (2.1)
This commit is contained in:
shing19m 2013-07-23 20:14:37 +02:00
parent fa2f2f7d7a
commit a8129640b3
2 changed files with 4 additions and 4 deletions

View File

@ -31,7 +31,7 @@ http://maven.apache.org/xsd/maven-4.0.0.xsd">
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>1.4</version>
<version>2.1</version>
<executions>
<execution>
<phase>package</phase>
@ -54,13 +54,13 @@ http://maven.apache.org/xsd/maven-4.0.0.xsd">
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.2</version>
<version>4.11</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>jline</groupId>
<artifactId>jline</artifactId>
<version>0.9.9</version>
<version>2.11</version>
</dependency>
</dependencies>
<repositories>

View File

@ -2,7 +2,7 @@ package b1;
import java.io.IOException;
import java.io.PrintWriter;
import jline.ConsoleReader;
import jline.console.ConsoleReader;
public class Main {