Skip to main content
summaryrefslogblamecommitdiffstats
blob: 398db671d97a8d552cacdaf3ca46a35e9997eef7 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

















                                                                                                        
                                                 













                                                                              













































                                                                                                          





                                                
<?xml version="1.0" encoding="UTF-8"?>
<!--
    Copyright (c) 2011 Obeo.
    All rights reserved. This program and the accompanying materials
    are made available under the terms of the Eclipse Public License v1.0
    which accompanies this distribution, and is available at
    http://www.eclipse.org/legal/epl-v10.html
   
    Contributors:
        Obeo - initial creator
 -->
<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/maven-v4_0_0.xsd">
	<modelVersion>4.0.0</modelVersion>
	<parent>
		<groupId>org.eclipse.emf</groupId>
		<artifactId>org.eclipse.emf.eef.releng.parent</artifactId>
		<relativePath>../../releng/org.eclipse.emf.eef.releng.parent</relativePath>
		<version>1.5.2-SNAPSHOT</version>
	</parent>

	<artifactId>org.eclipse.emf.examples.eef.tests.junit</artifactId>
	<packaging>eclipse-test-plugin</packaging>

	<name>EEF Example SWTBots Tests Plug-in</name>

	<build>
		<plugins>
			<plugin>
				<groupId>org.eclipse.tycho</groupId>
				<artifactId>tycho-surefire-plugin</artifactId>
				<version>${tycho-version}</version>
				<configuration>
				  <useUIHarness>true</useUIHarness>
				  <useUIThread>false</useUIThread>
				  <argLine>-Xmx1024m -XX:MaxPermSize=256m</argLine>
				  <product>org.eclipse.sdk.ide</product>
		          <application>org.eclipse.ui.ide.workbench</application>
		          <testFailureIgnore>true</testFailureIgnore>
		          <includes>
						<include>**/AllTests.class</include>
				 </includes>
		          <dependencies>
		            <dependency>
		              <type>p2-installable-unit</type>
		              <artifactId>org.eclipse.pde.feature.group</artifactId>
		              <version>0.0.0</version>
		            </dependency>
		            <dependency>
		              <type>p2-installable-unit</type>
		              <artifactId>org.eclipse.jdt.feature.group</artifactId>
		              <version>0.0.0</version>
		            </dependency>
		            <dependency>
		              <type>eclipse-feature</type>
		              <artifactId>org.eclipse.emf.eef.sdk-feature</artifactId>
		              <version>0.0.0</version>
		            </dependency>
					<dependency>
					   <type>eclipse-plugin</type>
					   <artifactId>org.eclipse.ui.workbench</artifactId>
					    <version>0.0.0</version>
					</dependency>
					<dependency>
					   <type>eclipse-plugin</type>
					   <artifactId>org.eclipse.emf.eef.modelingbot</artifactId>
					    <version>0.0.0</version>
					</dependency>
					<dependency>
					   <type>eclipse-plugin</type>
					   <artifactId>org.eclipse.emf.eef.modelingbot.edit</artifactId>
					    <version>0.0.0</version>
					</dependency>
					<dependency>
					   <type>eclipse-plugin</type>
					   <artifactId>org.eclipse.emf.eef.modelingbot.editor</artifactId>
					    <version>0.0.0</version>
					</dependency>
		           </dependencies>
				</configuration>
			</plugin>
		</plugins>
	</build>
</project>

Back to the top