f moar test
[ldk-java] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5     <modelVersion>4.0.0</modelVersion>
6
7     <groupId>org.ldk</groupId>
8     <artifactId>ldk-java</artifactId>
9     <version>1.0-SNAPSHOT</version>
10     <dependencies>
11         <dependency>
12             <groupId>org.junit.jupiter</groupId>
13             <artifactId>junit-jupiter</artifactId>
14             <version>RELEASE</version>
15             <scope>test</scope>
16         </dependency>
17         <dependency>
18             <groupId>org.junit.jupiter</groupId>
19             <artifactId>junit-jupiter</artifactId>
20             <version>RELEASE</version>
21             <scope>test</scope>
22         </dependency>
23         <dependency>
24             <groupId>org.bitcoinj</groupId>
25             <artifactId>bitcoinj-core</artifactId>
26             <version>RELEASE</version>
27             <scope>test</scope>
28         </dependency>
29         <dependency>
30             <groupId>org.jetbrains</groupId>
31             <artifactId>annotations</artifactId>
32             <version>13.0</version>
33             <scope>compile</scope>
34         </dependency>
35         <dependency>
36             <groupId>org.jetbrains</groupId>
37             <artifactId>annotations</artifactId>
38             <version>13.0</version>
39             <scope>compile</scope>
40         </dependency>
41     </dependencies>
42     <properties>
43         <maven.compiler.source>1.8</maven.compiler.source>
44         <maven.compiler.target>1.8</maven.compiler.target>
45         <maven-source-plugin.version>3.2.1</maven-source-plugin.version>
46     </properties>
47
48     <build>
49         <plugins>
50             <plugin>
51                 <groupId>org.apache.maven.plugins</groupId>
52                 <artifactId>maven-source-plugin</artifactId>
53                 <version>${maven-source-plugin.version}</version>
54                 <executions>
55                     <execution>
56                         <id>attach-sources</id>
57                         <goals>
58                             <goal>jar</goal>
59                         </goals>
60                     </execution>
61                 </executions>
62             </plugin>
63         </plugins>
64     </build>
65 </project>