-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpom.xml.in
77 lines (65 loc) · 2.06 KB
/
pom.xml.in
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<?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">
<!--
This POM file can be used to simplify uploading of the binary packages to Maven repositories.
Usage:
REPOSITORY_URL=http://server.internal.org/nexus/content/repositories/rpm-releases REPOSITORY_ID=Releases make package_rpm deploy_rpm deploy_jar
-->
<modelVersion>4.0.0</modelVersion>
<groupId>net.sf.osra</groupId>
<artifactId>osra</artifactId>
<packaging>jar</packaging>
<version>@PACKAGE_VERSION@</version>
<name>OSRA</name>
<url>http://osra.sourceforge.net/</url>
<scm>
<connection>https://osra.svn.sourceforge.net/svnroot/osra/trunk</connection>
</scm>
<issueManagement>
<system>SourceForge</system>
<url>https://sourceforge.net/tracker/?group_id=203833&atid=987182</url>
</issueManagement>
<licenses>
<license>
<name>GPLv2 License</name>
<url>http://www.gnu.org/licenses/gpl-2.0.txt</url>
</license>
</licenses>
<dependencies>
<dependency>
<groupId>net.sf.jnati</groupId>
<artifactId>jnati-deploy</artifactId>
<version>0.4</version>
<exclusions>
<exclusion>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</exclusion>
</exclusions>
</dependency>
<!--dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>1.4</version>
<scope>test</scope>
</dependency-->
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.7</version>
</plugin>
</plugins>
</pluginManagement>
<sourceDirectory>addons/java</sourceDirectory>
<!--testSourceDirectory>addons/lib_java_sample</testSourceDirectory-->
</build>
</project>