|
1 | 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.crypto</groupId> |
5 | | - <artifactId>eddsa</artifactId> |
6 | | - <version>0.0.1-SNAPSHOT</version> |
7 | | - <name>ed25519-java</name> |
8 | | - <packaging>bundle</packaging> |
9 | | - <description>Implementation of EdDSA in Java</description> |
10 | | - <url>https://github.com/str4d/ed25519-java</url> |
11 | | - <licenses> |
12 | | - <license> |
13 | | - <name>Public Domain</name> |
14 | | - <url>http://en.wikipedia.org/wiki/Public_domain</url> |
15 | | - <distribution>repo</distribution> |
16 | | - </license> |
17 | | - </licenses> |
18 | | - <developers> |
19 | | - <developer> |
20 | | - <id>str4d</id> |
21 | | - <name>str4d</name> |
22 | | - |
23 | | - </developer> |
24 | | - </developers> |
25 | | - <scm> |
26 | | - <connection>scm:git:git://github.com/str4d/ed25519-java.git</connection> |
27 | | - < developerConnection>scm:git: [email protected]:str4d/ed25519-java.git</ developerConnection> |
28 | | - <url>https://github.com/str4d/ed25519-java</url> |
29 | | - </scm> |
30 | | - <build> |
31 | | - <sourceDirectory>src</sourceDirectory> |
32 | | - <testSourceDirectory>test</testSourceDirectory> |
33 | | - <testResources> |
34 | | - <testResource> |
35 | | - <directory>test</directory> |
36 | | - <excludes> |
37 | | - <exclude>**/*.java</exclude> |
38 | | - </excludes> |
39 | | - </testResource> |
40 | | - </testResources> |
41 | | - <plugins> |
42 | | - <plugin> |
43 | | - <groupId>org.apache.maven.plugins</groupId> |
44 | | - <artifactId>maven-compiler-plugin</artifactId> |
45 | | - <configuration> |
46 | | - <source>1.6</source> |
47 | | - <target>1.6</target> |
48 | | - <encoding>${project.build.sourceEncoding}</encoding> |
49 | | - </configuration> |
50 | | - <version>3.1</version> |
51 | | - </plugin> |
52 | | - <plugin> |
53 | | - <groupId>org.apache.maven.plugins</groupId> |
54 | | - <artifactId>maven-surefire-plugin</artifactId> |
55 | | - <version>2.17</version> |
56 | | - <configuration> |
57 | | - <skipTests>true</skipTests> |
58 | | - </configuration> |
59 | | - </plugin> |
60 | | - <plugin> |
61 | | - <groupId>org.apache.felix</groupId> |
62 | | - <artifactId>maven-bundle-plugin</artifactId> |
63 | | - <version>3.0.1</version> |
64 | | - <extensions>true</extensions> |
65 | | - <configuration> |
66 | | - <instructions> |
67 | | - <Bundle-Name>ed25519-java</Bundle-Name> |
68 | | - <Bundle-Description> |
69 | | - ${project.description} |
70 | | - </Bundle-Description> |
71 | | - <Export-Package> |
72 | | - net.i2p.crypto.eddsa, |
73 | | - net.i2p.crypto.eddsa.spec |
74 | | - </Export-Package> |
75 | | - <Private-Package> |
76 | | - net.i2p.crypto.eddsa.math.* |
77 | | - </Private-Package> |
78 | | - </instructions> |
79 | | - </configuration> |
80 | | - </plugin> |
81 | | - </plugins> |
82 | | - </build> |
83 | | - <dependencies> |
84 | | - <dependency> |
85 | | - <groupId>org.hamcrest</groupId> |
86 | | - <artifactId>hamcrest-all</artifactId> |
87 | | - <version>1.3</version> |
88 | | - <scope>test</scope> |
89 | | - </dependency> |
90 | | - <dependency> |
91 | | - <groupId>junit</groupId> |
92 | | - <artifactId>junit</artifactId> |
93 | | - <version>4.11</version> |
94 | | - <type>maven-plugin</type> |
95 | | - <scope>test</scope> |
96 | | - </dependency> |
97 | | - </dependencies> |
98 | | - <contributors> |
99 | | - <contributor> |
100 | | - <name>mbakkar</name> |
101 | | - |
102 | | - </contributor> |
103 | | - <contributor> |
104 | | - <name>Philippe Marchesseault</name> |
105 | | - |
106 | | - </contributor> |
107 | | - <contributor> |
108 | | - <name>BloodyRookie</name> |
109 | | - |
110 | | - </contributor> |
111 | | - </contributors> |
| 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.crypto</groupId> |
| 5 | + <artifactId>eddsa</artifactId> |
| 6 | + <version>0.0.1-SNAPSHOT</version> |
| 7 | + <name>ed25519-java</name> |
| 8 | + <packaging>bundle</packaging> |
| 9 | + <description>Implementation of EdDSA in Java</description> |
| 10 | + <url>https://github.com/str4d/ed25519-java</url> |
| 11 | + <licenses> |
| 12 | + <license> |
| 13 | + <name>Public Domain</name> |
| 14 | + <url>http://en.wikipedia.org/wiki/Public_domain</url> |
| 15 | + <distribution>repo</distribution> |
| 16 | + </license> |
| 17 | + </licenses> |
| 18 | + <developers> |
| 19 | + <developer> |
| 20 | + <id>str4d</id> |
| 21 | + <name>str4d</name> |
| 22 | + |
| 23 | + </developer> |
| 24 | + </developers> |
| 25 | + <scm> |
| 26 | + <connection>scm:git:git://github.com/str4d/ed25519-java.git</connection> |
| 27 | + < developerConnection>scm:git: [email protected]:str4d/ed25519-java.git</ developerConnection> |
| 28 | + <url>https://github.com/str4d/ed25519-java</url> |
| 29 | + </scm> |
| 30 | + <build> |
| 31 | + <sourceDirectory>src</sourceDirectory> |
| 32 | + <testSourceDirectory>test</testSourceDirectory> |
| 33 | + <testResources> |
| 34 | + <testResource> |
| 35 | + <directory>test</directory> |
| 36 | + <excludes> |
| 37 | + <exclude>**/*.java</exclude> |
| 38 | + </excludes> |
| 39 | + </testResource> |
| 40 | + </testResources> |
| 41 | + <plugins> |
| 42 | + <plugin> |
| 43 | + <groupId>org.apache.maven.plugins</groupId> |
| 44 | + <artifactId>maven-compiler-plugin</artifactId> |
| 45 | + <configuration> |
| 46 | + <source>1.6</source> |
| 47 | + <target>1.6</target> |
| 48 | + <encoding>${project.build.sourceEncoding}</encoding> |
| 49 | + </configuration> |
| 50 | + <version>3.1</version> |
| 51 | + </plugin> |
| 52 | + <plugin> |
| 53 | + <groupId>org.apache.maven.plugins</groupId> |
| 54 | + <artifactId>maven-surefire-plugin</artifactId> |
| 55 | + <version>2.17</version> |
| 56 | + <configuration> |
| 57 | + <skipTests>true</skipTests> |
| 58 | + </configuration> |
| 59 | + </plugin> |
| 60 | + <plugin> |
| 61 | + <groupId>org.apache.felix</groupId> |
| 62 | + <artifactId>maven-bundle-plugin</artifactId> |
| 63 | + <version>3.0.1</version> |
| 64 | + <extensions>true</extensions> |
| 65 | + <configuration> |
| 66 | + <instructions> |
| 67 | + <Bundle-Name>ed25519-java</Bundle-Name> |
| 68 | + <Bundle-Description> |
| 69 | + ${project.description} |
| 70 | + </Bundle-Description> |
| 71 | + <Export-Package> |
| 72 | + net.i2p.crypto.eddsa, |
| 73 | + net.i2p.crypto.eddsa.spec |
| 74 | + </Export-Package> |
| 75 | + <Private-Package> |
| 76 | + net.i2p.crypto.eddsa.math.* |
| 77 | + </Private-Package> |
| 78 | + </instructions> |
| 79 | + </configuration> |
| 80 | + </plugin> |
| 81 | + </plugins> |
| 82 | + </build> |
| 83 | + <dependencies> |
| 84 | + <dependency> |
| 85 | + <groupId>org.hamcrest</groupId> |
| 86 | + <artifactId>hamcrest-all</artifactId> |
| 87 | + <version>1.3</version> |
| 88 | + <scope>test</scope> |
| 89 | + </dependency> |
| 90 | + <dependency> |
| 91 | + <groupId>junit</groupId> |
| 92 | + <artifactId>junit</artifactId> |
| 93 | + <version>4.11</version> |
| 94 | + <type>maven-plugin</type> |
| 95 | + <scope>test</scope> |
| 96 | + </dependency> |
| 97 | + </dependencies> |
| 98 | + <contributors> |
| 99 | + <contributor> |
| 100 | + <name>mbakkar</name> |
| 101 | + |
| 102 | + </contributor> |
| 103 | + <contributor> |
| 104 | + <name>Philippe Marchesseault</name> |
| 105 | + |
| 106 | + </contributor> |
| 107 | + <contributor> |
| 108 | + <name>BloodyRookie</name> |
| 109 | + |
| 110 | + </contributor> |
| 111 | + </contributors> |
112 | 112 | </project> |
0 commit comments