Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 1a6f95f402871322d633ef1db056bb11ade5d4df (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?xml version="1.0" encoding="UTF-8"?>
<project
	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
	xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
	<modelVersion>4.0.0</modelVersion>

	<parent>
		<groupId>org.eclipse.tcf</groupId>
		<artifactId>org.eclipse.tcf.maven-build</artifactId>
        <version>1.1.0-SNAPSHOT</version>
        <relativePath>../admin/pom-build.xml</relativePath>
	</parent>

	<groupId>org.eclipse.tcf</groupId>
	<artifactId>tcf-tests.maven-master</artifactId>
	<version>1.1.0-SNAPSHOT</version> 
	<packaging>pom</packaging>
	<name>TCF Unit Tests, Master</name>

	<modules>
		<!-- The modules the test module depends on -->
		<module>../pom.xml</module>
		<module>../target_explorer/plugins/org.eclipse.tcf.te.tests</module>
		
		<!-- The test module executing the tests -->
		<module>plugins/org.eclipse.tcf.debug.test</module>
	</modules>

	<build>
		<plugins>
			<plugin>
				<groupId>org.jacoco</groupId>
				<artifactId>jacoco-maven-plugin</artifactId>
				<executions>
					<execution>
						<goals>
							<goal>prepare-agent</goal>
						</goals>
						<configuration>
							<includes>
								<include>org.eclipse.tcf*</include>
							</includes>
							<excludes>
								<exclude>org.eclipse.tcf.debug.test*</exclude>
								<exclude>org.eclipse.tcf.te.*</exclude>
							</excludes>
						</configuration>
					</execution>
				</executions>
			</plugin>
		</plugins>
	</build>

</project>

Back to the top