blob: 41613c49b3bfac35b883694c066e029c81ad60f1 [file] [log] [blame]
Steven Hung913fd652014-07-28 14:35:42 -04001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 Copyright (c) 2012, 2014 Eclipse Foundation and others.
4 All rights reserved. This program and the accompanying materials
5 are made available under the terms of the Eclipse Distribution License v1.0
6 which accompanies this distribution, and is available at
7 http://www.eclipse.org/org/documents/edl-v10.php
8
9 Contributors:
10 Thanh Ha (Eclipse Foundation) - initial implementation
11-->
12
13<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"
14 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
15 <modelVersion>4.0.0</modelVersion>
16 <parent>
17 <groupId>org.eclipse.webtools.servertools</groupId>
eyuenf7a307e2017-10-10 13:58:13 -040018 <artifactId>org.eclipse.webtools.servertools</artifactId>
Steven Hung913fd652014-07-28 14:35:42 -040019 <version>3.6.0-SNAPSHOT</version>
20 <relativePath>../../</relativePath>
21 </parent>
22
23 <groupId>org.eclipse.webtools.servertools</groupId>
24 <artifactId>org.eclipse.wst.server.ui.tests</artifactId>
sghung@ca.ibm.comc4ceed62016-08-23 18:28:17 -040025 <version>1.1.402-SNAPSHOT</version>
Steven Hung913fd652014-07-28 14:35:42 -040026 <packaging>eclipse-test-plugin</packaging>
27
28 <properties>
29 <testSuite>${project.artifactId}</testSuite>
30 <testClass>org.eclipse.wst.server.ui.tests.AllTests</testClass>
31 </properties>
32
33 <build>
34 <plugins>
35 <plugin>
36 <groupId>org.eclipse.tycho</groupId>
37 <artifactId>tycho-surefire-plugin</artifactId>
38 <version>${tycho.version}</version>
39 <configuration>
40 <useUIHarness>true</useUIHarness>
41 <useUIThread>true</useUIThread>
nickboldtc39d8a42017-07-06 16:49:14 -040042<!-- <dependencies>
Steven Hung913fd652014-07-28 14:35:42 -040043 <dependency>
44 <type>p2-installable-unit</type>
45 <artifactId>org.eclipse.sdk.ide</artifactId>
46 <version>0.0.0</version>
47 </dependency>
nickboldtc39d8a42017-07-06 16:49:14 -040048 </dependencies> -->
Steven Hung913fd652014-07-28 14:35:42 -040049 </configuration>
50 </plugin>
51 </plugins>
52 </build>
53</project>