Skip to main content
aboutsummaryrefslogblamecommitdiffstats
blob: cd1a871d76d26ab19ba20757f142c8d0f4d05099 (plain) (tree)
1
2
3
4
5
6
7
8
9








                                                                                                          
                                         




                                                           
                                          



                                           



                                                                                    
                                                            
                                                                   
















                                                                                                   
                                                                                                              









                                                                                                       
<?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.2.0-SNAPSHOT</version>
        <relativePath>../admin/pom-build.xml</relativePath>
	</parent>

	<groupId>org.eclipse.tcf</groupId>
	<artifactId>tcf-tests.maven-master</artifactId>
	<version>1.2.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