diff options
Diffstat (limited to 'org.eclipse.jubula.client.api.converter.annotations/pom.xml')
-rw-r--r-- | org.eclipse.jubula.client.api.converter.annotations/pom.xml | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/org.eclipse.jubula.client.api.converter.annotations/pom.xml b/org.eclipse.jubula.client.api.converter.annotations/pom.xml new file mode 100644 index 000000000..3b509b164 --- /dev/null +++ b/org.eclipse.jubula.client.api.converter.annotations/pom.xml @@ -0,0 +1,61 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2014 BREDEX GmbH. + 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 + --> +<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> + <artifactId>org.eclipse.jubula.releng.client</artifactId> + <groupId>org.eclipse.jubula</groupId> + <version>2.4.0-SNAPSHOT</version> + <relativePath>../org.eclipse.jubula.releng.client</relativePath> + </parent> + + <artifactId>org.eclipse.jubula.client.api.converter.annotations</artifactId> + <packaging>eclipse-plugin</packaging> + + <build> + <plugins> + <plugin> + <groupId>org.eclipse.tycho</groupId> + <artifactId>tycho-maven-plugin</artifactId> + <version>${tycho-version}</version> + <extensions>true</extensions> + </plugin> + <plugin> + <groupId>org.eclipse.tycho</groupId> + <artifactId>target-platform-configuration</artifactId> + <version>${tycho-version}</version> + <configuration> + <dependency-resolution> + <optionalDependencies>ignore</optionalDependencies> + <extraRequirements> + <!-- prefer RCP to RAP for compilation --> + <requirement> + <type>eclipse-plugin</type> + <id>org.eclipse.swt</id> + <versionRange>[3.6,4.0)</versionRange> + </requirement> + <requirement> + <type>eclipse-plugin</type> + <id>org.eclipse.jface</id> + <versionRange>[3.6,4.0)</versionRange> + </requirement> + <requirement> + <type>eclipse-plugin</type> + <id>org.eclipse.jubula.client.ui.rcp</id> + <versionRange>[2.4.0,2.5.0)</versionRange> + </requirement> + </extraRequirements> + </dependency-resolution> + </configuration> + </plugin> + </plugins> + </build> +</project> |