[Java] Upgrade Android deterministic build to Debian bookworm
[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>RELEASE</version>
33             <scope>compile</scope>
34         </dependency>
35     </dependencies>
36     <properties>
37         <maven.compiler.source>1.8</maven.compiler.source>
38         <maven.compiler.target>1.8</maven.compiler.target>
39         <maven-source-plugin.version>3.2.1</maven-source-plugin.version>
40     </properties>
41
42     <build>
43         <plugins>
44             <plugin>
45                 <groupId>org.apache.maven.plugins</groupId>
46                 <artifactId>maven-source-plugin</artifactId>
47                 <version>${maven-source-plugin.version}</version>
48                 <executions>
49                     <execution>
50                         <id>attach-sources</id>
51                         <goals>
52                             <goal>jar</goal>
53                         </goals>
54                     </execution>
55                 </executions>
56             </plugin>
57         </plugins>
58     </build>
59 </project>