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