Skip to content

Commit 41a5943

Browse files
committed
Added maven support
1 parent d3d4ff0 commit 41a5943

File tree

1 file changed

+56
-0
lines changed

1 file changed

+56
-0
lines changed

pom.xml

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
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+
<groupId>net.i2p</groupId>
5+
<artifactId>ed25519-java</artifactId>
6+
<version>0.0.1-SNAPSHOT</version>
7+
<name>ed25519-java</name>
8+
<description>Implementation of EdDSA in Java</description>
9+
<build>
10+
<sourceDirectory>src</sourceDirectory>
11+
<testSourceDirectory>test</testSourceDirectory>
12+
<testResources>
13+
<testResource>
14+
<directory>test</directory>
15+
<excludes>
16+
<exclude>**/*.java</exclude>
17+
</excludes>
18+
</testResource>
19+
</testResources>
20+
<plugins>
21+
<plugin>
22+
<groupId>org.apache.maven.plugins</groupId>
23+
<artifactId>maven-compiler-plugin</artifactId>
24+
<configuration>
25+
<source>1.6</source>
26+
<target>1.6</target>
27+
<encoding>${project.build.sourceEncoding}</encoding>
28+
</configuration>
29+
<version>3.1</version>
30+
</plugin>
31+
<plugin>
32+
<groupId>org.apache.maven.plugins</groupId>
33+
<artifactId>maven-surefire-plugin</artifactId>
34+
<version>2.17</version>
35+
<configuration>
36+
<skipTests>true</skipTests>
37+
</configuration>
38+
</plugin>
39+
</plugins>
40+
</build>
41+
<dependencies>
42+
<dependency>
43+
<groupId>org.hamcrest</groupId>
44+
<artifactId>hamcrest-all</artifactId>
45+
<version>1.3</version>
46+
<scope>test</scope>
47+
</dependency>
48+
<dependency>
49+
<groupId>junit</groupId>
50+
<artifactId>junit</artifactId>
51+
<version>4.11</version>
52+
<type>maven-plugin</type>
53+
<scope>test</scope>
54+
</dependency>
55+
</dependencies>
56+
</project>

0 commit comments

Comments
 (0)