source: trunk/java-utils/pom.xml @ 1466

Last change on this file since 1466 was 1466, checked in by pharms, 10 years ago

[maven-release-plugin] rollback the release of java-utils-0.1.0

  • Property svn:mime-type set to text/plain
File size: 2.0 KB
Line 
1<project
2    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>
6    <modelVersion>4.0.0</modelVersion>
7    <groupId>de.ugoe.cs</groupId>
8    <artifactId>java-utils</artifactId>
9    <version>0.0.1-SNAPSHOT</version>
10    <name>java-utils</name>
11    <licenses>
12        <license>
13            <name>The Apache Software License, Version 2.0</name>
14            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
15        </license>
16    </licenses>
17    <scm>
18        <url>https://autoquest.informatik.uni-goettingen.de/svn/autoquest/trunk/java-utils</url>
19        <connection>scm:svn:https://autoquest.informatik.uni-goettingen.de/svn/autoquest/trunk/java-utils</connection>
20    </scm>
21    <distributionManagement>
22        <snapshotRepository>
23            <id>autoquest-snapshots</id>
24            <url>https://trex.informatik.uni-goettingen.de/nexus/content/repositories/autoquest-snapshots</url>
25        </snapshotRepository>
26        <repository>
27            <id>autoquest</id>
28            <url>https://trex.informatik.uni-goettingen.de/nexus/content/repositories/autoquest</url>
29        </repository>
30    </distributionManagement>
31    <dependencies>
32        <dependency>
33            <groupId>org.apache.commons</groupId>
34            <artifactId>commons-io</artifactId>
35            <version>1.3.2</version>
36        </dependency>
37        <dependency>
38            <groupId>commons-lang</groupId>
39            <artifactId>commons-lang</artifactId>
40            <version>2.1</version>
41        </dependency>
42    </dependencies>
43    <build>
44        <plugins>
45            <plugin>
46                <artifactId>maven-compiler-plugin</artifactId>
47                <version>2.3.2</version>
48                <configuration>
49                    <source>1.7</source>
50                    <target>1.7</target>
51                </configuration>
52            </plugin>
53        </plugins>
54    </build>
55</project>
Note: See TracBrowser for help on using the repository browser.