Changeset 763 for trunk/quest-core-coverage-test
- Timestamp:
- 09/04/12 13:18:39 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/quest-core-coverage-test/pom.xml
r549 r763 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-coverage-test</artifactId> 5 <version>0.0.1-SNAPSHOT</version> 6 <name>quest-core-coverage-test</name> 7 <scm> 8 <url>https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-core-events-test</url> 9 </scm> 10 <dependencies> 11 <dependency> 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 > 6 <parent> 12 7 <groupId>de.ugoe.cs.quest</groupId> 13 <artifactId>quest- core-events-test</artifactId>8 <artifactId>quest-test</artifactId> 14 9 <version>0.0.1-SNAPSHOT</version> 15 <type>test-jar</type> 16 <scope>test</scope> 17 </dependency> 18 <dependency> 19 <groupId>de.ugoe.cs.quest</groupId> 20 <artifactId>quest-core-usageprofiles-test</artifactId> 21 <version>0.0.1-SNAPSHOT</version> 22 <type>test-jar</type> 23 <scope>test</scope> 24 </dependency> 25 <dependency> 26 <groupId>de.ugoe.cs.quest</groupId> 27 <artifactId>quest-core-coverage</artifactId> 28 <version>0.0.1-SNAPSHOT</version> 29 <scope>test</scope> 30 </dependency> 31 <dependency> 32 <groupId>junit</groupId> 33 <artifactId>junit</artifactId> 34 <version>4.8.1</version> 35 <scope>test</scope> 36 </dependency> 37 <!-- <dependency> 38 <groupId>junit-addons</groupId> 39 <artifactId>junit-addons</artifactId> 40 <version>1.4</version> 41 </dependency> 42 <dependency> 43 <groupId>nl.jqno.equalsverifier</groupId> 44 <artifactId>equalsverifier</artifactId> 45 <version>1.1.3</version> 46 </dependency>--> 47 </dependencies> 48 <build> 49 <pluginManagement> 50 <plugins> 51 <plugin> 52 <groupId>org.eclipse.m2e</groupId> 53 <artifactId>lifecycle-mapping</artifactId> 54 <version>1.0.0</version> 55 <configuration> 56 <lifecycleMappingMetadata> 57 <pluginExecutions> 58 <pluginExecution> 59 <pluginExecutionFilter> 60 <groupId>org.apache.maven.plugins</groupId> 61 <artifactId>maven-dependency-plugin</artifactId> 62 <versionRange>[1.0.0,)</versionRange> 63 <goals> 64 <goal>unpack</goal> 65 </goals> 66 </pluginExecutionFilter> 67 <action> 68 <ignore/> 69 </action> 70 </pluginExecution> 71 <pluginExecution> 72 <pluginExecutionFilter> 73 <groupId>org.codehaus.mojo</groupId> 74 <artifactId>emma-maven-plugin</artifactId> 75 <versionRange>[1.0-alpha-3,)</versionRange> 76 <goals> 77 <goal>emma</goal> 78 </goals> 79 </pluginExecutionFilter> 80 <action> 81 <ignore/> 82 </action> 83 </pluginExecution> 84 </pluginExecutions> 85 </lifecycleMappingMetadata> 86 </configuration> 87 </plugin> 88 </plugins> 89 </pluginManagement> 90 <plugins> 91 <plugin> 92 <groupId>org.apache.maven.plugins</groupId> 93 <artifactId>maven-compiler-plugin</artifactId> 94 <version>2.3.2</version> 95 <configuration> 96 <source>1.6</source> 97 <target>1.6</target> 98 </configuration> 99 </plugin> 100 <plugin> 101 <groupId>org.apache.maven.plugins</groupId> 102 <artifactId>maven-dependency-plugin</artifactId> 103 <version>2.4</version> 104 <executions> 105 <execution> 106 <id>unpack</id> 107 <phase>process-classes</phase> 108 <goals> 109 <goal>unpack</goal> 110 </goals> 111 <configuration> 112 <artifactItems> 113 <artifactItem> 114 <groupId>de.ugoe.cs.quest</groupId> 115 <artifactId>quest-core-coverage</artifactId> 116 <version>0.0.1-SNAPSHOT</version> 117 <outputDirectory>${project.build.directory}/classes</outputDirectory> 118 </artifactItem> 119 </artifactItems> 120 </configuration> 121 </execution> 122 </executions> 123 </plugin> 124 <plugin> 125 <groupId>org.codehaus.mojo</groupId> 126 <artifactId>emma-maven-plugin</artifactId> 127 <version>1.0-alpha-3</version> 128 <inherited>true</inherited> 129 <executions> 130 <execution> 131 <phase>process-classes</phase> 132 <goals> 133 <goal>emma</goal> 134 </goals> 135 </execution> 136 </executions> 137 </plugin> 138 <plugin> 139 <groupId>org.apache.maven.plugins</groupId> 140 <artifactId>maven-jar-plugin</artifactId> 141 <version>2.3.2</version> 142 <executions> 143 <execution> 144 <goals> 145 <goal>test-jar</goal> 146 </goals> 147 </execution> 148 </executions> 149 </plugin> 150 </plugins> 151 </build> 10 </parent> 11 <modelVersion>4.0.0</modelVersion> 12 <artifactId>quest-core-coverage-test</artifactId> 13 <properties> 14 <tested-artifactId>quest-core-coverage</tested-artifactId> 15 </properties> 16 <dependencies> 17 <dependency> 18 <groupId>de.ugoe.cs.quest</groupId> 19 <artifactId>quest-core-usageprofiles</artifactId> 20 <version>${tested-quest-version}</version> 21 <scope>test</scope> 22 </dependency> 23 </dependencies> 152 24 </project>
Note: See TracChangeset
for help on using the changeset viewer.