Merge pull request #4 from TheBlueMatt/2021-03-init-util
[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     </dependencies>
30     <properties>
31         <maven.compiler.source>1.8</maven.compiler.source>
32         <maven.compiler.target>1.8</maven.compiler.target>
33         <maven-source-plugin.version>3.2.1</maven-source-plugin.version>
34     </properties>
35
36     <build>
37         <plugins>
38             <plugin>
39                 <groupId>org.apache.maven.plugins</groupId>
40                 <artifactId>maven-source-plugin</artifactId>
41                 <version>${maven-source-plugin.version}</version>
42                 <executions>
43                     <execution>
44                         <id>attach-sources</id>
45                         <goals>
46                             <goal>jar</goal>
47                         </goals>
48                     </execution>
49                 </executions>
50             </plugin>
51         </plugins>
52     </build>
53 </project>