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

Last change on this file since 1452 was 1452, checked in by pharms, 10 years ago
  • preparation for release of 1.0
  • Property svn:mime-type set to text/plain
File size: 1.6 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    <dependencies>
22        <dependency>
23            <groupId>org.apache.commons</groupId>
24            <artifactId>commons-io</artifactId>
25            <version>1.3.2</version>
26        </dependency>
27        <dependency>
28            <groupId>commons-lang</groupId>
29            <artifactId>commons-lang</artifactId>
30            <version>2.1</version>
31        </dependency>
32    </dependencies>
33    <build>
34        <plugins>
35            <plugin>
36                <artifactId>maven-compiler-plugin</artifactId>
37                <version>2.3.2</version>
38                <configuration>
39                    <source>1.7</source>
40                    <target>1.7</target>
41                </configuration>
42            </plugin>
43        </plugins>
44    </build>
45</project>
Note: See TracBrowser for help on using the repository browser.