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

Last change on this file since 615 was 547, checked in by sherbold, 12 years ago
  • countless adaptations throughout nearly all components to remove errors introduced due to the refactoring of the event core
  • Property svn:mime-type set to text/plain
File size: 4.1 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>junit</groupId>
20                        <artifactId>junit</artifactId>
21                        <version>4.8.1</version>
22                        <scope>test</scope>
23                </dependency>
24                <dependency>
25                        <groupId>junit-addons</groupId>
26                        <artifactId>junit-addons</artifactId>
27                        <version>1.4</version>
28                </dependency>
29                <dependency>
30                        <groupId>nl.jqno.equalsverifier</groupId>
31                        <artifactId>equalsverifier</artifactId>
32                        <version>1.1.3</version>
33                </dependency>
34                <dependency>
35                        <groupId>org.mockito</groupId>
36                        <artifactId>mockito-core</artifactId>
37                        <version>1.9.0</version>
38                        <scope>test</scope>
39                </dependency>
40        </dependencies>
41        <build>
42                <pluginManagement>
43                        <plugins>
44                                <plugin>
45                                        <groupId>org.eclipse.m2e</groupId>
46                                        <artifactId>lifecycle-mapping</artifactId>
47                                        <version>1.0.0</version>
48                                        <configuration>
49                                                <lifecycleMappingMetadata>
50                                                        <pluginExecutions>
51                                                                <pluginExecution>
52                                                                        <pluginExecutionFilter>
53                                                                                <groupId>org.apache.maven.plugins</groupId>
54                                                                                <artifactId>maven-dependency-plugin</artifactId>
55                                                                                <versionRange>[1.0.0,)</versionRange>
56                                                                                <goals>
57                                                                                        <goal>unpack</goal>
58                                                                                </goals>
59                                                                        </pluginExecutionFilter>
60                                                                        <action>
61                                                                                <ignore />
62                                                                        </action>
63                                                                </pluginExecution>
64                                                                <pluginExecution>
65                                                                        <pluginExecutionFilter>
66                                                                                <groupId>org.codehaus.mojo</groupId>
67                                                                                <artifactId>emma-maven-plugin</artifactId>
68                                                                                <versionRange>[1.0-alpha-3,)</versionRange>
69                                                                                <goals>
70                                                                                        <goal>emma</goal>
71                                                                                </goals>
72                                                                        </pluginExecutionFilter>
73                                                                        <action>
74                                                                                <ignore />
75                                                                        </action>
76                                                                </pluginExecution>
77                                                        </pluginExecutions>
78                                                </lifecycleMappingMetadata>
79                                        </configuration>
80                                </plugin>
81                        </plugins>
82                </pluginManagement>
83                <plugins>
84                        <plugin>
85                                <groupId>org.apache.maven.plugins</groupId>
86                                <artifactId>maven-compiler-plugin</artifactId>
87                                <version>2.3.2</version>
88                                <configuration>
89                                        <source>1.6</source>
90                                        <target>1.6</target>
91                                </configuration>
92                        </plugin>
93                        <plugin>
94                                <groupId>org.apache.maven.plugins</groupId>
95                                <artifactId>maven-dependency-plugin</artifactId>
96                                <version>2.4</version>
97                                <executions>
98                                        <execution>
99                                                <id>unpack</id>
100                                                <phase>process-classes</phase>
101                                                <goals>
102                                                        <goal>unpack</goal>
103                                                </goals>
104                                                <configuration>
105                                                        <artifactItems>
106                                                                <artifactItem>
107                                                                        <groupId>de.ugoe.cs.quest</groupId>
108                                                                        <artifactId>quest-core-events</artifactId>
109                                                                        <version>0.0.1-SNAPSHOT</version>
110                                                                        <outputDirectory>${project.build.directory}/classes</outputDirectory>
111                                                                </artifactItem>
112                                                        </artifactItems>
113                                                </configuration>
114                                        </execution>
115                                </executions>
116                        </plugin>
117                        <plugin>
118                                <groupId>org.codehaus.mojo</groupId>
119                                <artifactId>emma-maven-plugin</artifactId>
120                                <version>1.0-alpha-3</version>
121                                <inherited>true</inherited>
122                                <executions>
123                                        <execution>
124                                                <phase>process-classes</phase>
125                                                <goals>
126                                                        <goal>emma</goal>
127                                                </goals>
128                                        </execution>
129                                </executions>
130                        </plugin>
131                        <plugin>
132                                <groupId>org.apache.maven.plugins</groupId>
133                                <artifactId>maven-jar-plugin</artifactId>
134                                <version>2.3.2</version>
135                                <executions>
136                                        <execution>
137                                                <goals>
138                                                        <goal>test-jar</goal>
139                                                </goals>
140                                        </execution>
141                                </executions>
142                        </plugin>
143                </plugins>
144        </build>
145</project>
Note: See TracBrowser for help on using the repository browser.