Skip to content

Commit bec1a81

Browse files
committed
Adding pom file
1 parent afbcdab commit bec1a81

1 file changed

Lines changed: 34 additions & 0 deletions

File tree

pom.xml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
5+
<groupId>northeastern.edu</groupId>
6+
<artifactId>libtester</artifactId>
7+
<version>1.5.1</version>
8+
<packaging>jar</packaging>
9+
10+
<name>libtester</name>
11+
<url>http://maven.apache.org</url>
12+
13+
<properties>
14+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15+
</properties>
16+
<dependencies>
17+
<dependency>
18+
<groupId>net.java</groupId>
19+
<artifactId>quickcheck</artifactId>
20+
<version>0.6</version>
21+
</dependency>
22+
<dependency>
23+
<groupId>org.scannotation</groupId>
24+
<artifactId>scannotation</artifactId>
25+
<version>1.0.3</version>
26+
</dependency>
27+
</dependencies>
28+
29+
<build>
30+
<directory>${project.basedir}/target</directory>
31+
<sourceDirectory>${project.basedir}/src/tester</sourceDirectory>
32+
</build>
33+
34+
</project>

0 commit comments

Comments
 (0)