blob: 1ed46a42639a76fa266b54ee953c6d16b05c491c [file] [log] [blame]
Raymond Augefee9ad62015-07-01 23:26:48 -04001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Raymond Augeaaa138e2016-02-16 15:04:15 -05003 Copyright (c) 2015, 2016 Raymond Augé and others.
Raymond Augefee9ad62015-07-01 23:26:48 -04004 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 Raymond Augé - initial implementation
11-->
12<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">
13 <modelVersion>4.0.0</modelVersion>
14 <parent>
15 <artifactId>tests-pom</artifactId>
16 <groupId>org.eclipse.equinox.bundles</groupId>
Sravan Kumar Lakkimsetti95672c32018-09-04 11:51:49 +053017 <version>4.10.0-SNAPSHOT</version>
Raymond Augefee9ad62015-07-01 23:26:48 -040018 <relativePath>../../tests-pom/</relativePath>
19 </parent>
20 <groupId>org.eclipse.equinox</groupId>
21 <artifactId>org.eclipse.equinox.http.servlet.tests</artifactId>
Thomas Watsone447a422018-09-04 09:42:47 -050022 <version>1.5.200-SNAPSHOT</version>
Raymond Augefee9ad62015-07-01 23:26:48 -040023 <packaging>eclipse-test-plugin</packaging>
24
25 <build>
26 <plugins>
27 <plugin>
Raymond Augeb8bc4b22016-02-14 15:43:26 -050028 <groupId>org.eclipse.tycho</groupId>
29 <artifactId>tycho-surefire-plugin</artifactId>
30 <configuration>
31 <testClass>org.eclipse.equinox.http.servlet.tests.*</testClass>
32 </configuration>
33 </plugin>
34
35 <plugin>
Raymond Augefee9ad62015-07-01 23:26:48 -040036 <groupId>org.eclipse.tycho</groupId>
37 <artifactId>target-platform-configuration</artifactId>
38 <configuration>
39 <dependency-resolution>
40 <extraRequirements>
41 <requirement>
42 <type>eclipse-plugin</type>
43 <id>org.eclipse.equinox.ds</id>
44 <versionRange>1.4.0</versionRange>
45 </requirement>
46 <requirement>
47 <type>eclipse-plugin</type>
48 <id>org.eclipse.equinox.http.jetty</id>
Raymond Augedd71e572018-01-22 22:16:47 -050049 <versionRange>3.6.0</versionRange>
Raymond Augeaaa138e2016-02-16 15:04:15 -050050 </requirement>
Raymond Augefee9ad62015-07-01 23:26:48 -040051 </extraRequirements>
52 </dependency-resolution>
53 </configuration>
54 </plugin>
55 </plugins>
56 </build>
57</project>