source: trunk/quest-core-assertions-test/pom.xml @ 518

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