File tree Expand file tree Collapse file tree 1 file changed +56
-0
lines changed
Expand file tree Collapse file tree 1 file changed +56
-0
lines changed Original file line number Diff line number Diff line change 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 >
You can’t perform that action at this time.
0 commit comments