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

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

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

  • Property svn:mime-type set to text/plain
File size: 1.5 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.1.1-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    <dependencies>
18        <dependency>
19            <groupId>org.apache.commons</groupId>
20            <artifactId>commons-io</artifactId>
21            <version>1.3.2</version>
22        </dependency>
23        <dependency>
24            <groupId>commons-lang</groupId>
25            <artifactId>commons-lang</artifactId>
26            <version>2.1</version>
27        </dependency>
28    </dependencies>
29    <build>
30        <plugins>
31            <plugin>
32                <artifactId>maven-compiler-plugin</artifactId>
33                <version>2.3.2</version>
34                <configuration>
35                    <source>1.7</source>
36                    <target>1.7</target>
37                </configuration>
38            </plugin>
39        </plugins>
40    </build>
41</project>
Note: See TracBrowser for help on using the repository browser.