Update CI references to 0.0.122
[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.lightningdevkit</groupId>
8     <artifactId>ldk-java</artifactId>
9     <version>Set in genbindings.sh automagically</version>
10
11     <name>LDK Java Bindings and Binaries</name>
12     <description>LDK Java Bindings and Release Binaries</description>
13     <url>https://lightningdevkit.org</url>
14
15     <licenses>
16         <license>
17             <name>MIT License</name>
18             <url>http://www.opensource.org/licenses/MIT</url>
19         </license>
20         <license>
21             <name>The Apache License, Version 2.0</name>
22             <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
23         </license>
24     </licenses>
25
26     <developers>
27         <developer>
28             <name>Lightning Dev Kit Developers</name>
29             <organization>LDK</organization>
30             <organizationUrl>https://github.com/lightningdevkit</organizationUrl>
31         </developer>
32     </developers>
33
34     <scm>
35         <connection>scm:git:https://github.com/lightningdevkit/ldk-garbagecollected.git</connection>
36         <url>https://github.com/lightningdevkit/ldk-garbagecollected</url>
37     </scm>
38
39     <dependencies>
40         <dependency>
41             <groupId>org.junit.jupiter</groupId>
42             <artifactId>junit-jupiter</artifactId>
43             <version>RELEASE</version>
44             <scope>test</scope>
45         </dependency>
46         <dependency>
47             <groupId>org.junit.jupiter</groupId>
48             <artifactId>junit-jupiter</artifactId>
49             <version>RELEASE</version>
50             <scope>test</scope>
51         </dependency>
52         <dependency>
53             <groupId>org.bitcoinj</groupId>
54             <artifactId>bitcoinj-core</artifactId>
55             <version>RELEASE</version>
56             <scope>test</scope>
57         </dependency>
58         <dependency>
59             <groupId>com.google.code.findbugs</groupId>
60             <artifactId>jsr305</artifactId>
61             <version>3.0.2</version>
62             <scope>compile</scope>
63         </dependency>
64     </dependencies>
65     <properties>
66         <maven.compiler.source>9</maven.compiler.source>
67         <maven.compiler.target>9</maven.compiler.target>
68         <org.lightningdevkit.skipdocs>true</org.lightningdevkit.skipdocs>
69     </properties>
70
71     <build>
72         <plugins>
73             <plugin>
74                 <groupId>org.apache.maven.plugins</groupId>
75                 <artifactId>maven-source-plugin</artifactId>
76                 <version>3.2.0</version>
77                 <executions>
78                     <execution>
79                         <id>attach-sources</id>
80                         <goals>
81                             <goal>jar</goal>
82                         </goals>
83                     </execution>
84                 </executions>
85             </plugin>
86             <plugin>
87                 <groupId>org.apache.maven.plugins</groupId>
88                 <artifactId>maven-javadoc-plugin</artifactId>
89                 <version>3.3.1</version>
90                 <configuration>
91                     <skip>${org.lightningdevkit.skipdocs}</skip>
92                 </configuration>
93                 <executions>
94                     <execution>
95                         <id>attach-javadocs</id>
96                         <goals>
97                             <goal>jar</goal>
98                         </goals>
99                     </execution>
100                 </executions>
101             </plugin>
102         </plugins>
103     </build>
104 </project>