Raymond Auge | fee9ad6 | 2015-07-01 23:26:48 -0400 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Raymond Auge | aaa138e | 2016-02-16 15:04:15 -0500 | [diff] [blame] | 3 | Copyright (c) 2015, 2016 Raymond Augé and others. |
Raymond Auge | fee9ad6 | 2015-07-01 23:26:48 -0400 | [diff] [blame] | 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 | 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 Lakkimsetti | 95672c3 | 2018-09-04 11:51:49 +0530 | [diff] [blame] | 17 | <version>4.10.0-SNAPSHOT</version> |
Raymond Auge | fee9ad6 | 2015-07-01 23:26:48 -0400 | [diff] [blame] | 18 | <relativePath>../../tests-pom/</relativePath> |
| 19 | </parent> |
| 20 | <groupId>org.eclipse.equinox</groupId> |
| 21 | <artifactId>org.eclipse.equinox.http.servlet.tests</artifactId> |
Thomas Watson | e447a42 | 2018-09-04 09:42:47 -0500 | [diff] [blame^] | 22 | <version>1.5.200-SNAPSHOT</version> |
Raymond Auge | fee9ad6 | 2015-07-01 23:26:48 -0400 | [diff] [blame] | 23 | <packaging>eclipse-test-plugin</packaging> |
| 24 | |
| 25 | <build> |
| 26 | <plugins> |
| 27 | <plugin> |
Raymond Auge | b8bc4b2 | 2016-02-14 15:43:26 -0500 | [diff] [blame] | 28 | <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 Auge | fee9ad6 | 2015-07-01 23:26:48 -0400 | [diff] [blame] | 36 | <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 Auge | dd71e57 | 2018-01-22 22:16:47 -0500 | [diff] [blame] | 49 | <versionRange>3.6.0</versionRange> |
Raymond Auge | aaa138e | 2016-02-16 15:04:15 -0500 | [diff] [blame] | 50 | </requirement> |
Raymond Auge | fee9ad6 | 2015-07-01 23:26:48 -0400 | [diff] [blame] | 51 | </extraRequirements> |
| 52 | </dependency-resolution> |
| 53 | </configuration> |
| 54 | </plugin> |
| 55 | </plugins> |
| 56 | </build> |
| 57 | </project> |