| 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-tasktrees-test</artifactId> |
|---|
| 5 | <version>0.0.1-SNAPSHOT</version> |
|---|
| 6 | <name>quest-core-tasktrees-test</name> |
|---|
| 7 | <scm> |
|---|
| 8 | <url>https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-core-tasktrees-test</url> |
|---|
| 9 | </scm> |
|---|
| 10 | <dependencies> |
|---|
| 11 | <dependency> |
|---|
| 12 | <groupId>de.ugoe.cs.quest</groupId> |
|---|
| 13 | <artifactId>quest-core-tasktrees</artifactId> |
|---|
| 14 | <version>0.0.1-SNAPSHOT</version> |
|---|
| 15 | <scope>test</scope> |
|---|
| 16 | </dependency> |
|---|
| 17 | <dependency> |
|---|
| 18 | <groupId>de.ugoe.cs.quest</groupId> |
|---|
| 19 | <artifactId>quest-test-utils</artifactId> |
|---|
| 20 | <version>0.0.1-SNAPSHOT</version> |
|---|
| 21 | <scope>test</scope> |
|---|
| 22 | </dependency> |
|---|
| 23 | <dependency> |
|---|
| 24 | <groupId>junit</groupId> |
|---|
| 25 | <artifactId>junit</artifactId> |
|---|
| 26 | <version>4.8.1</version> |
|---|
| 27 | <scope>test</scope> |
|---|
| 28 | </dependency> |
|---|
| 29 | </dependencies> |
|---|
| 30 | <build> |
|---|
| 31 | <pluginManagement> |
|---|
| 32 | <plugins> |
|---|
| 33 | <plugin> |
|---|
| 34 | <groupId>org.eclipse.m2e</groupId> |
|---|
| 35 | <artifactId>lifecycle-mapping</artifactId> |
|---|
| 36 | <version>1.0.0</version> |
|---|
| 37 | <configuration> |
|---|
| 38 | <lifecycleMappingMetadata> |
|---|
| 39 | <pluginExecutions> |
|---|
| 40 | <pluginExecution> |
|---|
| 41 | <pluginExecutionFilter> |
|---|
| 42 | <groupId>org.apache.maven.plugins</groupId> |
|---|
| 43 | <artifactId>maven-dependency-plugin</artifactId> |
|---|
| 44 | <versionRange>[1.0.0,)</versionRange> |
|---|
| 45 | <goals> |
|---|
| 46 | <goal>unpack</goal> |
|---|
| 47 | </goals> |
|---|
| 48 | </pluginExecutionFilter> |
|---|
| 49 | <action> |
|---|
| 50 | <ignore/> |
|---|
| 51 | </action> |
|---|
| 52 | </pluginExecution> |
|---|
| 53 | |
|---|
| 54 | </pluginExecutions> |
|---|
| 55 | </lifecycleMappingMetadata> |
|---|
| 56 | </configuration> |
|---|
| 57 | </plugin> |
|---|
| 58 | </plugins> |
|---|
| 59 | </pluginManagement> |
|---|
| 60 | <plugins> |
|---|
| 61 | <plugin> |
|---|
| 62 | <groupId>org.apache.maven.plugins</groupId> |
|---|
| 63 | <artifactId>maven-compiler-plugin</artifactId> |
|---|
| 64 | <version>2.3.2</version> |
|---|
| 65 | <configuration> |
|---|
| 66 | <source>1.6</source> |
|---|
| 67 | <target>1.6</target> |
|---|
| 68 | </configuration> |
|---|
| 69 | </plugin> |
|---|
| 70 | <plugin> |
|---|
| 71 | <groupId>org.apache.maven.plugins</groupId> |
|---|
| 72 | <artifactId>maven-dependency-plugin</artifactId> |
|---|
| 73 | <version>2.4</version> |
|---|
| 74 | <executions> |
|---|
| 75 | <execution> |
|---|
| 76 | <id>unpack</id> |
|---|
| 77 | <phase>process-classes</phase> |
|---|
| 78 | <goals> |
|---|
| 79 | <goal>unpack</goal> |
|---|
| 80 | </goals> |
|---|
| 81 | <configuration> |
|---|
| 82 | <artifactItems> |
|---|
| 83 | <artifactItem> |
|---|
| 84 | <groupId>de.ugoe.cs.quest</groupId> |
|---|
| 85 | <artifactId>quest-core-tasktrees</artifactId> |
|---|
| 86 | <version>0.0.1-SNAPSHOT</version> |
|---|
| 87 | <outputDirectory>${project.build.directory}/classes</outputDirectory> |
|---|
| 88 | </artifactItem> |
|---|
| 89 | </artifactItems> |
|---|
| 90 | </configuration> |
|---|
| 91 | </execution> |
|---|
| 92 | </executions> |
|---|
| 93 | </plugin> |
|---|
| 94 | <plugin> |
|---|
| 95 | <groupId>org.apache.maven.plugins</groupId> |
|---|
| 96 | <artifactId>maven-jar-plugin</artifactId> |
|---|
| 97 | <version>2.3.2</version> |
|---|
| 98 | <executions> |
|---|
| 99 | <execution> |
|---|
| 100 | <goals> |
|---|
| 101 | <goal>test-jar</goal> |
|---|
| 102 | </goals> |
|---|
| 103 | </execution> |
|---|
| 104 | </executions> |
|---|
| 105 | </plugin> |
|---|
| 106 | </plugins> |
|---|
| 107 | </build> |
|---|
| 108 | </project> |
|---|