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