Skip to content

Commit 3a14415

Browse files
committed
Add pom.xml
1 parent 2e7ac14 commit 3a14415

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
.attach_pid*
22
/src/target/
33
/src/.attach_pid*
4+
/target
45
!.mvn/wrapper/maven-wrapper.jar
56

67
### sts ###

pom.xml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
7+
<groupId>br.com.zevolution</groupId>
8+
<artifactId>java-algorithms-and-datastructure</artifactId>
9+
<version>0.0.1-SNAPSHOT</version>
10+
<name>java-algorithms-and-datastructure</name>
11+
<description>Algorithms and data structures implemented in Java</description>
12+
13+
<properties>
14+
<java.version>1.8</java.version>
15+
</properties>
16+
17+
<dependencies>
18+
<dependency>
19+
<groupId>junit</groupId>
20+
<artifactId>junit</artifactId>
21+
<version>4.12</version>
22+
</dependency>
23+
</dependencies>
24+
</project>

0 commit comments

Comments
 (0)