Skip to content

Commit ffab0cd

Browse files
committed
pom file
1 parent 5c9f63b commit ffab0cd

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

pom.xml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4+
<modelVersion>4.0.0</modelVersion>
5+
<groupId>emailvalidator4j</groupId>
6+
<artifactId>emailvalidator4j-1.0.0</artifactId>
7+
<version>1.0.0</version>
8+
<inceptionYear>2015</inceptionYear>
9+
<licenses>
10+
<license>
11+
<name>MIT</name>
12+
<url>http://opensource.org/licenses/mit-license.php</url>
13+
<distribution>repo</distribution>
14+
</license>
15+
</licenses>
16+
<dependencies>
17+
<dependency>
18+
<groupId>junit</groupId>
19+
<artifactId>junit</artifactId>
20+
<version>4.11</version>
21+
<scope>test</scope>
22+
</dependency>
23+
<dependency>
24+
<groupId>com.tngtech.java</groupId>
25+
<artifactId>junit-dataprovider</artifactId>
26+
<version>1.9.2</version>
27+
<scope>test</scope>
28+
</dependency>
29+
<dependency>
30+
<groupId>org.mockito</groupId>
31+
<artifactId>mockito-core</artifactId>
32+
<version>1.+</version>
33+
<scope>test</scope>
34+
</dependency>
35+
</dependencies>
36+
</project>

0 commit comments

Comments
 (0)