forked from zanata/openprops
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
79 lines (74 loc) · 3.04 KB
/
pom.xml
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
78
79
<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.fedorahosted.openprops</groupId>
<artifactId>openprops</artifactId>
<packaging>jar</packaging>
<version>0.6-SNAPSHOT</version>
<name>OpenProps</name>
<url>https://fedorahosted.org/openprops</url>
<description>${name} is a tiny Java library which reads and writes .properties files using the same code as java.util.Properties from the OpenJDK, but enhanced so that it preserves the order of entries within the file, and it also preserves comments in the file. This means that a Properties editor or a file converter written to use OpenProps won't have to lose comments or mess up the order of entries.</description>
<issueManagement>
<system>Trac</system>
<url>https://fedorahosted.org/openprops</url>
</issueManagement>
<licenses>
<license>
<name>GNU General Public License, version 2, with the Classpath Exception</name>
<url>http://openjdk.java.net/legal/gplv2+ce.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:svn:http://svn.fedorahosted.org/svn/openprops/trunk</connection>
<developerConnection>scm:svn:svn+ssh://svn.fedorahosted.org/svn/openprops/trunk</developerConnection>
<url>https://fedorahosted.org/openprops/browser/trunk</url>
</scm>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.0.2</version>
<configuration>
<source>1.5</source>
<target>1.5</target>
<showDeprecation>true</showDeprecation>
<showWarnings>true</showWarnings>
<optimize>true</optimize>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<distributionManagement>
<repository>
<id>fhosted.tennera.svn</id>
<name>fedorahosted tennera svn repository</name>
<url>file:///srv/maven2/repo</url>
</repository>
<snapshotRepository>
<id>hiro.m2snap</id>
<name>hirosnap</name>
<url>scpexe://hiro.bne.redhat.com:/srv/maven2/snapshot/</url>
</snapshotRepository>
<!--
<repository>
<id>fhosted.tennera.repo</id>
<name>fedorahosted tennera repository</name>
<url>scpexe://fedorahosted.org:tennera/maven2</url>
</repository>
<snapshotRepository>
<id>fhosted.tennera.snap</id>
<name>fedorahosted tennera snapshot repository</name>
<url>scpexe://fedorahosted.org:tennera/maven2-snapshot</url>
</snapshotRepository>
-->
</distributionManagement>
</project>