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