| 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|---|
| 2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|---|
| 3 | <modelVersion>4.0.0</modelVersion>
|
|---|
| 4 | <groupId>de.ugoe.cs.quest</groupId>
|
|---|
| 5 | <artifactId>quest-plugin-core-test</artifactId>
|
|---|
| 6 | <version>0.0.1-SNAPSHOT</version>
|
|---|
| 7 | <name>quest-plugin-core-test</name>
|
|---|
| 8 | <scm>
|
|---|
| 9 | <url>https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-plugin-core-test</url>
|
|---|
| 10 | </scm>
|
|---|
| 11 | <dependencies>
|
|---|
| 12 | <dependency>
|
|---|
| 13 | <groupId>de.ugoe.cs.quest</groupId>
|
|---|
| 14 | <artifactId>quest-plugin-core</artifactId>
|
|---|
| 15 | <version>0.0.1-SNAPSHOT</version>
|
|---|
| 16 | <scope>test</scope>
|
|---|
| 17 | </dependency>
|
|---|
| 18 | <dependency>
|
|---|
| 19 | <groupId>junit</groupId>
|
|---|
| 20 | <artifactId>junit</artifactId>
|
|---|
| 21 | <version>4.8.1</version>
|
|---|
| 22 | <scope>test</scope>
|
|---|
| 23 | </dependency>
|
|---|
| 24 | <dependency>
|
|---|
| 25 | <groupId>junit-addons</groupId>
|
|---|
| 26 | <artifactId>junit-addons</artifactId>
|
|---|
| 27 | <version>1.4</version>
|
|---|
| 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 | <pluginExecution>
|
|---|
| 54 | <pluginExecutionFilter>
|
|---|
| 55 | <groupId>org.codehaus.mojo</groupId>
|
|---|
| 56 | <artifactId>emma-maven-plugin</artifactId>
|
|---|
| 57 | <versionRange>[1.0-alpha-3,)</versionRange>
|
|---|
| 58 | <goals>
|
|---|
| 59 | <goal>emma</goal>
|
|---|
| 60 | </goals>
|
|---|
| 61 | </pluginExecutionFilter>
|
|---|
| 62 | <action>
|
|---|
| 63 | <ignore/>
|
|---|
| 64 | </action>
|
|---|
| 65 | </pluginExecution>
|
|---|
| 66 | </pluginExecutions>
|
|---|
| 67 | </lifecycleMappingMetadata>
|
|---|
| 68 | </configuration>
|
|---|
| 69 | </plugin>
|
|---|
| 70 | </plugins>
|
|---|
| 71 | </pluginManagement>
|
|---|
| 72 | <plugins>
|
|---|
| 73 | <plugin>
|
|---|
| 74 | <groupId>org.apache.maven.plugins</groupId>
|
|---|
| 75 | <artifactId>maven-compiler-plugin</artifactId>
|
|---|
| 76 | <version>2.3.2</version>
|
|---|
| 77 | <configuration>
|
|---|
| 78 | <source>1.6</source>
|
|---|
| 79 | <target>1.6</target>
|
|---|
| 80 | </configuration>
|
|---|
| 81 | </plugin>
|
|---|
| 82 | <plugin>
|
|---|
| 83 | <groupId>org.apache.maven.plugins</groupId>
|
|---|
| 84 | <artifactId>maven-dependency-plugin</artifactId>
|
|---|
| 85 | <version>2.4</version>
|
|---|
| 86 | <executions>
|
|---|
| 87 | <execution>
|
|---|
| 88 | <id>unpack</id>
|
|---|
| 89 | <phase>process-classes</phase>
|
|---|
| 90 | <goals>
|
|---|
| 91 | <goal>unpack</goal>
|
|---|
| 92 | </goals>
|
|---|
| 93 | <configuration>
|
|---|
| 94 | <artifactItems>
|
|---|
| 95 | <artifactItem>
|
|---|
| 96 | <groupId>de.ugoe.cs.quest</groupId>
|
|---|
| 97 | <artifactId>quest-plugin-core</artifactId>
|
|---|
| 98 | <version>0.0.1-SNAPSHOT</version>
|
|---|
| 99 | <outputDirectory>${project.build.directory}/classes</outputDirectory>
|
|---|
| 100 | </artifactItem>
|
|---|
| 101 | </artifactItems>
|
|---|
| 102 | </configuration>
|
|---|
| 103 | </execution>
|
|---|
| 104 | </executions>
|
|---|
| 105 | </plugin>
|
|---|
| 106 | <plugin>
|
|---|
| 107 | <groupId>org.codehaus.mojo</groupId>
|
|---|
| 108 | <artifactId>emma-maven-plugin</artifactId>
|
|---|
| 109 | <version>1.0-alpha-3</version>
|
|---|
| 110 | <inherited>true</inherited>
|
|---|
| 111 | <executions>
|
|---|
| 112 | <execution>
|
|---|
| 113 | <phase>process-classes</phase>
|
|---|
| 114 | <goals>
|
|---|
| 115 | <goal>emma</goal>
|
|---|
| 116 | </goals>
|
|---|
| 117 | </execution>
|
|---|
| 118 | </executions>
|
|---|
| 119 | </plugin>
|
|---|
| 120 | <plugin>
|
|---|
| 121 | <groupId>org.apache.maven.plugins</groupId>
|
|---|
| 122 | <artifactId>maven-jar-plugin</artifactId>
|
|---|
| 123 | <version>2.3.2</version>
|
|---|
| 124 | <executions>
|
|---|
| 125 | <execution>
|
|---|
| 126 | <goals>
|
|---|
| 127 | <goal>test-jar</goal>
|
|---|
| 128 | </goals>
|
|---|
| 129 | </execution>
|
|---|
| 130 | </executions>
|
|---|
| 131 | </plugin>
|
|---|
| 132 | </plugins>
|
|---|
| 133 | </build>
|
|---|
| 134 | </project> |
|---|