source: trunk/quest-test-utils/pom.xml @ 849

Last change on this file since 849 was 794, checked in by pharms, 12 years ago
  • use project.parent.version instead of deprecated parent.version variable
File size: 1.5 KB
RevLine 
[703]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>
[763]6    <parent>
7        <groupId>de.ugoe.cs.quest</groupId>
8        <artifactId>quest</artifactId>
9        <version>0.0.1-SNAPSHOT</version>
10    </parent>
[703]11    <modelVersion>4.0.0</modelVersion>
12    <artifactId>quest-test-utils</artifactId>
13    <name>quest-test-utils</name>
14    <scm>
[763]15        <url>${quest-scm-trunk-dir}/quest-test-utils</url>
[703]16    </scm>
17    <dependencies>
18        <dependency>
19            <groupId>de.ugoe.cs</groupId>
20            <artifactId>java-utils</artifactId>
21            <version>0.0.1-SNAPSHOT</version>
22        </dependency>
23        <dependency>
24            <groupId>de.ugoe.cs.quest</groupId>
25            <artifactId>quest-core-events</artifactId>
[794]26            <version>${project.parent.version}</version>
[703]27        </dependency>
28        <dependency>
[763]29            <groupId>de.ugoe.cs.quest</groupId>
[790]30            <artifactId>quest-core-tasktrees</artifactId>
[794]31            <version>${project.parent.version}</version>
[790]32        </dependency>
33        <dependency>
34            <groupId>de.ugoe.cs.quest</groupId>
[763]35            <artifactId>quest-core-usageprofiles</artifactId>
[794]36            <version>${project.parent.version}</version>
[763]37        </dependency>
38        <dependency>
[703]39            <groupId>junit</groupId>
40            <artifactId>junit</artifactId>
41            <version>4.8.1</version>
42        </dependency>
43    </dependencies>
44</project>
Note: See TracBrowser for help on using the repository browser.