source: trunk/java-utils-test/pom.xml @ 927

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