-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
62 lines (56 loc) · 2.1 KB
/
pom.xml
File metadata and controls
62 lines (56 loc) · 2.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.libquirc</groupId>
<artifactId>libquirc-wrapper</artifactId>
<version>1.2-a9c52e79283d6872728e68fec7892dc7c276c827</version>
<packaging>jar</packaging>
<name>libquirc</name>
<description>A JNI for the quirc library, bundled and compiled for linux.</description>
<url>http://github.com/ascarrambad/libquirc-java-wrapper</url>
<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
</license>
</licenses>
<developers>
<developer>
<name>Matteo Riva</name>
<email>matteoriva@me.com</email>
</developer>
<developer>
<name>Daniel Beer</name>
<email>dlbeer@gmail.com</email>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/ascarrambad/libquirc-java-wrapper.git</connection>
<developerConnection>scm:git:ssh://github.com:ascarrambad/libquirc-java-wrapper.git</developerConnection>
<url>http://github.com/ascarrambad/libquirc-java-wrapper/tree/main</url>
</scm>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<includes>
<!-- LINUX -->
<include>**/*.a</include>
<include>**/*.so</include>
</includes>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>9</source>
<target>9</target>
</configuration>
</plugin>
</plugins>
</build>
</project>