Skip to content

Commit a40285a

Browse files
committed
added maven build config
1 parent e076df3 commit a40285a

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

pom.xml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0"
2+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
4+
http://maven.apache.org/maven-v4_0_0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
<groupId>stats.calculator</groupId>
7+
<artifactId>stats.calculator</artifactId>
8+
<packaging>jar</packaging>
9+
<version>1.0-SNAPSHOT</version>
10+
<dependencies>
11+
<dependency>
12+
<groupId>junit</groupId>
13+
<artifactId>junit</artifactId>
14+
<version>4.11</version>
15+
<scope>test</scope>
16+
</dependency>
17+
<dependency>
18+
<groupId>hamcrest</groupId>
19+
<artifactId>hamcrest-all</artifactId>
20+
<version>1.3</version>
21+
<scope>test</scope>
22+
</dependency>
23+
24+
</dependencies>
25+
</project>

0 commit comments

Comments
 (0)