[1011] | 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 | <licenses>
|
---|
| 12 | <license>
|
---|
| 13 | <name>The Apache Software License, Version 2.0</name>
|
---|
| 14 | <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
---|
| 15 | </license>
|
---|
| 16 | </licenses>
|
---|
| 17 | <scm>
|
---|
| 18 | <url>https://autoquest.informatik.uni-goettingen.de/svn/autoquest/trunk/java-utils-test</url>
|
---|
| 19 | </scm>
|
---|
| 20 | <dependencies>
|
---|
| 21 | <dependency>
|
---|
| 22 | <groupId>de.ugoe.cs</groupId>
|
---|
| 23 | <artifactId>java-utils</artifactId>
|
---|
| 24 | <version>0.0.1-SNAPSHOT</version>
|
---|
| 25 | <scope>test</scope>
|
---|
| 26 | </dependency>
|
---|
| 27 | <dependency>
|
---|
| 28 | <groupId>junit</groupId>
|
---|
| 29 | <artifactId>junit</artifactId>
|
---|
| 30 | <version>4.8.1</version>
|
---|
| 31 | <scope>test</scope>
|
---|
| 32 | </dependency>
|
---|
| 33 | <dependency>
|
---|
| 34 | <groupId>junit-addons</groupId>
|
---|
| 35 | <artifactId>junit-addons</artifactId>
|
---|
| 36 | <version>1.4</version>
|
---|
| 37 | </dependency>
|
---|
| 38 | </dependencies>
|
---|
| 39 | <build>
|
---|
| 40 | <pluginManagement>
|
---|
| 41 | <plugins>
|
---|
| 42 | <plugin>
|
---|
| 43 | <groupId>org.eclipse.m2e</groupId>
|
---|
| 44 | <artifactId>lifecycle-mapping</artifactId>
|
---|
| 45 | <version>1.0.0</version>
|
---|
| 46 | <configuration>
|
---|
| 47 | <lifecycleMappingMetadata>
|
---|
| 48 | <pluginExecutions>
|
---|
| 49 | <pluginExecution>
|
---|
| 50 | <pluginExecutionFilter>
|
---|
| 51 | <groupId>org.apache.maven.plugins</groupId>
|
---|
| 52 | <artifactId>maven-dependency-plugin</artifactId>
|
---|
| 53 | <versionRange>[1.0.0,)</versionRange>
|
---|
| 54 | <goals>
|
---|
| 55 | <goal>unpack</goal>
|
---|
| 56 | </goals>
|
---|
| 57 | </pluginExecutionFilter>
|
---|
| 58 | <action>
|
---|
| 59 | <ignore />
|
---|
| 60 | </action>
|
---|
| 61 | </pluginExecution>
|
---|
| 62 | <pluginExecution>
|
---|
| 63 | <pluginExecutionFilter>
|
---|
| 64 | <groupId>org.codehaus.mojo</groupId>
|
---|
| 65 | <artifactId>emma-maven-plugin</artifactId>
|
---|
| 66 | <versionRange>[1.0-alpha-3,)</versionRange>
|
---|
| 67 | <goals>
|
---|
| 68 | <goal>emma</goal>
|
---|
| 69 | </goals>
|
---|
| 70 | </pluginExecutionFilter>
|
---|
| 71 | <action>
|
---|
| 72 | <ignore />
|
---|
| 73 | </action>
|
---|
| 74 | </pluginExecution>
|
---|
| 75 | </pluginExecutions>
|
---|
| 76 | </lifecycleMappingMetadata>
|
---|
| 77 | </configuration>
|
---|
| 78 | </plugin>
|
---|
| 79 | </plugins>
|
---|
| 80 | </pluginManagement>
|
---|
| 81 | <plugins>
|
---|
| 82 | <plugin>
|
---|
| 83 | <groupId>org.apache.maven.plugins</groupId>
|
---|
| 84 | <artifactId>maven-compiler-plugin</artifactId>
|
---|
| 85 | <version>2.3.2</version>
|
---|
| 86 | <configuration>
|
---|
| 87 | <source>1.6</source>
|
---|
| 88 | <target>1.6</target>
|
---|
| 89 | </configuration>
|
---|
| 90 | </plugin>
|
---|
| 91 | <plugin>
|
---|
| 92 | <groupId>org.apache.maven.plugins</groupId>
|
---|
| 93 | <artifactId>maven-dependency-plugin</artifactId>
|
---|
| 94 | <version>2.4</version>
|
---|
| 95 | <executions>
|
---|
| 96 | <execution>
|
---|
| 97 | <id>unpack</id>
|
---|
| 98 | <phase>process-classes</phase>
|
---|
| 99 | <goals>
|
---|
| 100 | <goal>unpack</goal>
|
---|
| 101 | </goals>
|
---|
| 102 | <configuration>
|
---|
| 103 | <artifactItems>
|
---|
| 104 | <artifactItem>
|
---|
| 105 | <groupId>de.ugoe.cs</groupId>
|
---|
| 106 | <artifactId>java-utils</artifactId>
|
---|
| 107 | <version>0.0.1-SNAPSHOT</version>
|
---|
| 108 | <outputDirectory>${project.build.directory}/classes</outputDirectory>
|
---|
| 109 | </artifactItem>
|
---|
| 110 | </artifactItems>
|
---|
| 111 | </configuration>
|
---|
| 112 | </execution>
|
---|
| 113 | </executions>
|
---|
| 114 | </plugin>
|
---|
| 115 | <plugin>
|
---|
| 116 | <groupId>org.codehaus.mojo</groupId>
|
---|
| 117 | <artifactId>emma-maven-plugin</artifactId>
|
---|
| 118 | <version>1.0-alpha-3</version>
|
---|
| 119 | <inherited>true</inherited>
|
---|
| 120 | <executions>
|
---|
| 121 | <execution>
|
---|
| 122 | <phase>process-classes</phase>
|
---|
| 123 | <goals>
|
---|
| 124 | <goal>emma</goal>
|
---|
| 125 | </goals>
|
---|
| 126 | </execution>
|
---|
| 127 | </executions>
|
---|
| 128 | </plugin>
|
---|
| 129 | <plugin>
|
---|
| 130 | <groupId>org.apache.maven.plugins</groupId>
|
---|
| 131 | <artifactId>maven-jar-plugin</artifactId>
|
---|
| 132 | <version>2.3.2</version>
|
---|
| 133 | <executions>
|
---|
| 134 | <execution>
|
---|
| 135 | <goals>
|
---|
| 136 | <goal>test-jar</goal>
|
---|
| 137 | </goals>
|
---|
| 138 | </execution>
|
---|
| 139 | </executions>
|
---|
| 140 | </plugin>
|
---|
| 141 | </plugins>
|
---|
| 142 | </build>
|
---|
[479] | 143 | </project> |
---|