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

Last change on this file since 2179 was 2179, checked in by pharms, 7 years ago

[maven-release-plugin] prepare for next development iteration

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