source: trunk/quest-misc/pom.xml @ 505

Last change on this file since 505 was 505, checked in by pharms, 12 years ago
  • added distribution management
File size: 1.2 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.quest</groupId>
4  <artifactId>quest-misc</artifactId>
5  <version>0.0.1-SNAPSHOT</version>
6  <name>quest-misc</name>
7  <scm>
8    <url>https://www.trex.informatik.uni-goettingen.de/svn/swephd/pharms/tasktree/trunk/quest-misc</url>
9  </scm>
10  <dependencies>
11    <dependency>
12      <groupId>junit</groupId>
13      <artifactId>junit</artifactId>
14      <version>4.8.1</version>
15      <scope>test</scope>
16    </dependency>
17  </dependencies>
18  <distributionManagement>
19    <snapshotRepository>
20      <id>quest-snapshots</id>
21      <url>https://trex.informatik.uni-goettingen.de/nexus/content/repositories/quest-snapshots</url>
22    </snapshotRepository>
23  </distributionManagement>
24  <build>
25    <plugins>
26      <plugin>
27        <artifactId>maven-compiler-plugin</artifactId>
28        <version>2.5.1</version>
29        <configuration>
30          <source>1.6</source>
31          <target>1.6</target>
32        </configuration>
33      </plugin>
34    </plugins>
35  </build>
36</project>
Note: See TracBrowser for help on using the repository browser.