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

Last change on this file since 671 was 671, checked in by sherbold, 12 years ago
  • moved CommandHelpers? from quest-ui-core to quest-misc
  • removed dependency on quest-ui-core from all quest-plugin projects
File size: 1.3 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>de.ugoe.cs</groupId>
13      <artifactId>java-utils</artifactId>
14      <version>0.0.1-SNAPSHOT</version>
15    </dependency>
16    <dependency>
17      <groupId>junit</groupId>
18      <artifactId>junit</artifactId>
19      <version>4.8.1</version>
20      <scope>test</scope>
21    </dependency>
22  </dependencies>
23  <distributionManagement>
24    <snapshotRepository>
25      <id>quest-snapshots</id>
26      <url>https://trex.informatik.uni-goettingen.de/nexus/content/repositories/quest-snapshots</url>
27    </snapshotRepository>
28  </distributionManagement>
29  <build>
30    <plugins>
31      <plugin>
32        <artifactId>maven-compiler-plugin</artifactId>
33        <version>2.5.1</version>
34        <configuration>
35          <source>1.6</source>
36          <target>1.6</target>
37        </configuration>
38      </plugin>
39    </plugins>
40  </build>
41</project>
Note: See TracBrowser for help on using the repository browser.