Skip to content

Commit

Permalink
removed unsused dependency and renamed main class
Browse files Browse the repository at this point in the history
  • Loading branch information
mohsinhassaan committed Sep 13, 2019
1 parent d6bbca0 commit e0cb3ce
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 9 deletions.
7 changes: 1 addition & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,6 @@
<artifactId>jgrapht-core</artifactId>
<version>1.3.1</version>
</dependency>
<dependency>
<groupId>org.jgrapht</groupId>
<artifactId>jgrapht-io</artifactId>
<version>1.3.1</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
Expand All @@ -54,7 +49,7 @@
<transformers>
<transformer implementation=
"org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<mainClass>maze.App</mainClass>
<mainClass>maze.MazeSolver</mainClass>
</transformer>
</transformers>
</configuration>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,13 @@
import javax.imageio.ImageIO;

import org.jgrapht.alg.shortestpath.DijkstraShortestPath;
import org.jgrapht.io.ExportException;

/**
* Hello world!
*
*/
public class App {
public static void main(String[] args) throws IOException, ExportException {
public class MazeSolver {
public static void main(String[] args) throws IOException {
if (args.length < 1) {
System.out.println("Insufficient arguments");
return;
Expand Down

0 comments on commit e0cb3ce

Please sign in to comment.