source: trunk/quest-core-testgeneration/pom.xml @ 523

Last change on this file since 523 was 523, checked in by sherbold, 12 years ago
  • initial commit of quest-core-testgeneration
  • Property svn:mime-type set to text/plain
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-core-testgeneration</artifactId>
5  <version>0.0.1-SNAPSHOT</version>
6  <name>quest-core-testgeneration</name>
7        <scm>
8                <url>https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-core-testgeneration</url>
9        </scm>
10        <dependencies>
11                <dependency>
12                        <groupId>de.ugoe.cs.quest</groupId>
13                        <artifactId>quest-core-events</artifactId>
14                        <version>0.0.1-SNAPSHOT</version>
15                </dependency>
16                <dependency>
17                        <groupId>de.ugoe.cs.quest</groupId>
18                        <artifactId>quest-core-usageprofiles</artifactId>
19                        <version>0.0.1-SNAPSHOT</version>
20                </dependency>
21                <dependency>
22                        <groupId>de.ugoe.cs.quest</groupId>
23                        <artifactId>quest-core-coverage</artifactId>
24                        <version>0.0.1-SNAPSHOT</version>
25                </dependency>
26        </dependencies>
27        <build>
28                <plugins>
29                        <plugin>
30                                <artifactId>maven-compiler-plugin</artifactId>
31                                <version>2.3.2</version>
32                                <configuration>
33                                        <source>1.6</source>
34                                        <target>1.6</target>
35                                </configuration>
36                        </plugin>
37                </plugins>
38        </build>
39</project>
Note: See TracBrowser for help on using the repository browser.