Skip to content

Commit da21a27

Browse files
committed
moved to maven 3.6.3, added pom.xml
1 parent f04f189 commit da21a27

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,6 @@
33
.settings/org.eclipse.jdt.core.prefs
44
bin/
55
.metadata/
6-
AlgVisualizer.jardesc
6+
AlgVisualizer.jardesc
7+
/target/
8+
.settings/

pom.xml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<modelVersion>4.0.0</modelVersion>
3+
<groupId>com.example.algorithmvisualizer</groupId>
4+
<artifactId>AlgorithmVisualizer</artifactId>
5+
<version>0.0.1-SNAPSHOT</version>
6+
<name>AlgorithmVisualizer</name>
7+
<description>An application that visualizes sorting algorithms.</description>
8+
<build>
9+
<sourceDirectory>src</sourceDirectory>
10+
<plugins>
11+
<plugin>
12+
<artifactId>maven-compiler-plugin</artifactId>
13+
<version>3.8.0</version>
14+
<configuration>
15+
<release>11</release>
16+
</configuration>
17+
</plugin>
18+
</plugins>
19+
</build>
20+
</project>

0 commit comments

Comments
 (0)