source: trunk/quest-core-events-test/pom.xml @ 689

Last change on this file since 689 was 689, checked in by pharms, 12 years ago
  • moved some test utilities to dedicated test utilities project
  • Property svn:mime-type set to text/plain
File size: 4.4 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.quest</groupId>
5        <artifactId>quest-core-events-test</artifactId>
6        <version>0.0.1-SNAPSHOT</version>
7        <name>quest-core-events-test</name>
8        <scm>
9                <url>https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-core-events-test</url>
10        </scm>
11        <dependencies>
12                <dependency>
13                        <groupId>de.ugoe.cs.quest</groupId>
14                        <artifactId>quest-core-events</artifactId>
15                        <version>0.0.1-SNAPSHOT</version>
16                        <scope>test</scope>
17                </dependency>
18                <dependency>
19                        <groupId>de.ugoe.cs.quest</groupId>
20                        <artifactId>quest-test-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                <dependency>
36                        <groupId>nl.jqno.equalsverifier</groupId>
37                        <artifactId>equalsverifier</artifactId>
38                        <version>1.1.3</version>
39                </dependency>
40                <dependency>
41                        <groupId>org.mockito</groupId>
42                        <artifactId>mockito-core</artifactId>
43                        <version>1.9.0</version>
44                        <scope>test</scope>
45                </dependency>
46        </dependencies>
47        <build>
48                <pluginManagement>
49                        <plugins>
50                                <plugin>
51                                        <groupId>org.eclipse.m2e</groupId>
52                                        <artifactId>lifecycle-mapping</artifactId>
53                                        <version>1.0.0</version>
54                                        <configuration>
55                                                <lifecycleMappingMetadata>
56                                                        <pluginExecutions>
57                                                                <pluginExecution>
58                                                                        <pluginExecutionFilter>
59                                                                                <groupId>org.apache.maven.plugins</groupId>
60                                                                                <artifactId>maven-dependency-plugin</artifactId>
61                                                                                <versionRange>[1.0.0,)</versionRange>
62                                                                                <goals>
63                                                                                        <goal>unpack</goal>
64                                                                                </goals>
65                                                                        </pluginExecutionFilter>
66                                                                        <action>
67                                                                                <ignore />
68                                                                        </action>
69                                                                </pluginExecution>
70                                                                <pluginExecution>
71                                                                        <pluginExecutionFilter>
72                                                                                <groupId>org.codehaus.mojo</groupId>
73                                                                                <artifactId>emma-maven-plugin</artifactId>
74                                                                                <versionRange>[1.0-alpha-3,)</versionRange>
75                                                                                <goals>
76                                                                                        <goal>emma</goal>
77                                                                                </goals>
78                                                                        </pluginExecutionFilter>
79                                                                        <action>
80                                                                                <ignore />
81                                                                        </action>
82                                                                </pluginExecution>
83                                                        </pluginExecutions>
84                                                </lifecycleMappingMetadata>
85                                        </configuration>
86                                </plugin>
87                        </plugins>
88                </pluginManagement>
89                <plugins>
90                        <plugin>
91                                <groupId>org.apache.maven.plugins</groupId>
92                                <artifactId>maven-compiler-plugin</artifactId>
93                                <version>2.3.2</version>
94                                <configuration>
95                                        <source>1.6</source>
96                                        <target>1.6</target>
97                                </configuration>
98                        </plugin>
99                        <plugin>
100                                <groupId>org.apache.maven.plugins</groupId>
101                                <artifactId>maven-dependency-plugin</artifactId>
102                                <version>2.4</version>
103                                <executions>
104                                        <execution>
105                                                <id>unpack</id>
106                                                <phase>process-classes</phase>
107                                                <goals>
108                                                        <goal>unpack</goal>
109                                                </goals>
110                                                <configuration>
111                                                        <artifactItems>
112                                                                <artifactItem>
113                                                                        <groupId>de.ugoe.cs.quest</groupId>
114                                                                        <artifactId>quest-core-events</artifactId>
115                                                                        <version>0.0.1-SNAPSHOT</version>
116                                                                        <outputDirectory>${project.build.directory}/classes</outputDirectory>
117                                                                </artifactItem>
118                                                        </artifactItems>
119                                                </configuration>
120                                        </execution>
121                                </executions>
122                        </plugin>
123                        <plugin>
124                                <groupId>org.codehaus.mojo</groupId>
125                                <artifactId>emma-maven-plugin</artifactId>
126                                <version>1.0-alpha-3</version>
127                                <inherited>true</inherited>
128                                <executions>
129                                        <execution>
130                                                <phase>process-classes</phase>
131                                                <goals>
132                                                        <goal>emma</goal>
133                                                </goals>
134                                        </execution>
135                                </executions>
136                        </plugin>
137                        <plugin>
138                                <groupId>org.apache.maven.plugins</groupId>
139                                <artifactId>maven-jar-plugin</artifactId>
140                                <version>2.3.2</version>
141                                <executions>
142                                        <execution>
143                                                <goals>
144                                                        <goal>test-jar</goal>
145                                                </goals>
146                                        </execution>
147                                </executions>
148                        </plugin>
149                </plugins>
150        </build>
151</project>
Note: See TracBrowser for help on using the repository browser.