diff options
Diffstat (limited to 'org.eclipse.jubula.client.api.converter')
10 files changed, 186 insertions, 0 deletions
diff --git a/org.eclipse.jubula.client.api.converter/.checkstyle b/org.eclipse.jubula.client.api.converter/.checkstyle new file mode 100644 index 000000000..f69a865d7 --- /dev/null +++ b/org.eclipse.jubula.client.api.converter/.checkstyle @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<fileset-config file-format-version="1.2.0" simple-config="true" sync-formatter="false"> + <fileset name="all" enabled="true" check-config-name="Jubula" local="false"> + <file-match-pattern match-pattern="." include-pattern="true"/> + </fileset> +</fileset-config> diff --git a/org.eclipse.jubula.client.api.converter/.classpath b/org.eclipse.jubula.client.api.converter/.classpath new file mode 100644 index 000000000..646a681bc --- /dev/null +++ b/org.eclipse.jubula.client.api.converter/.classpath @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<classpath> + <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/> + <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/> + <classpathentry kind="src" path="src"/> + <classpathentry kind="src" path="src-gen"> + <attributes> + <attribute name="ignore_optional_problems" value="true"/> + </attributes> + </classpathentry> + <classpathentry kind="output" path="bin"/> +</classpath> diff --git a/org.eclipse.jubula.client.api.converter/.gitignore b/org.eclipse.jubula.client.api.converter/.gitignore new file mode 100644 index 000000000..934e0e06f --- /dev/null +++ b/org.eclipse.jubula.client.api.converter/.gitignore @@ -0,0 +1,2 @@ +/bin +/target diff --git a/org.eclipse.jubula.client.api.converter/.project b/org.eclipse.jubula.client.api.converter/.project new file mode 100644 index 000000000..b92cbb46e --- /dev/null +++ b/org.eclipse.jubula.client.api.converter/.project @@ -0,0 +1,52 @@ +<?xml version="1.0" encoding="UTF-8"?> +<projectDescription> + <name>org.eclipse.jubula.client.api.converter</name> + <comment></comment> + <projects> + </projects> + <buildSpec> + <buildCommand> + <name>org.eclipse.jdt.core.javabuilder</name> + <arguments> + </arguments> + </buildCommand> + <buildCommand> + <name>org.eclipse.pde.ManifestBuilder</name> + <arguments> + </arguments> + </buildCommand> + <buildCommand> + <name>org.eclipse.pde.SchemaBuilder</name> + <arguments> + </arguments> + </buildCommand> + <buildCommand> + <name>net.sf.eclipsecs.core.CheckstyleBuilder</name> + <arguments> + </arguments> + </buildCommand> + </buildSpec> + <natures> + <nature>org.eclipse.pde.PluginNature</nature> + <nature>org.eclipse.jdt.core.javanature</nature> + <nature>net.sf.eclipsecs.core.CheckstyleNature</nature> + </natures> + <linkedResources> + <link> + <name>.settings</name> + <type>2</type> + <locationURI>PARENT-1-PROJECT_LOC/org.eclipse.jubula.project.configuration/settings/1.7</locationURI> + </link> + </linkedResources> + <filteredResources> + <filter> + <id>1409218333740</id> + <name></name> + <type>10</type> + <matcher> + <id>org.eclipse.ui.ide.multiFilter</id> + <arguments>1.0-projectRelativePath-matches-false-false-target</arguments> + </matcher> + </filter> + </filteredResources> +</projectDescription> diff --git a/org.eclipse.jubula.client.api.converter/META-INF/MANIFEST.MF b/org.eclipse.jubula.client.api.converter/META-INF/MANIFEST.MF new file mode 100644 index 000000000..84bb4d93e --- /dev/null +++ b/org.eclipse.jubula.client.api.converter/META-INF/MANIFEST.MF @@ -0,0 +1,11 @@ +Manifest-Version: 1.0 +Bundle-ManifestVersion: 2 +Bundle-Name: Jubula API - Converter +Bundle-SymbolicName: org.eclipse.jubula.client.api.converter +Bundle-Version: 2.4.0.qualifier +Bundle-Vendor: Eclipse Jubula +Require-Bundle: org.eclipse.core.runtime;bundle-version="[3.6.0,4.0.0)", + org.eclipse.jubula.client.core;bundle-version="[2.4.0,2.5.0)", + org.eclipse.jubula.client.api.converter.annotations;bundle-version="[2.4.0,2.5.0)" +Bundle-RequiredExecutionEnvironment: JavaSE-1.7 +Bundle-ActivationPolicy: lazy diff --git a/org.eclipse.jubula.client.api.converter/about.html b/org.eclipse.jubula.client.api.converter/about.html new file mode 100644 index 000000000..f1be81099 --- /dev/null +++ b/org.eclipse.jubula.client.api.converter/about.html @@ -0,0 +1,28 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"/> +<title>About</title> +</head> +<body lang="EN-US"> +<h2>About This Content</h2> + +<p>June 22, 2011</p> +<h3>License</h3> + +<p>The Eclipse Foundation makes available all content in this plug-in ("Content"). Unless otherwise +indicated below, the Content is provided to you under the terms and conditions of the +Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is available +at <a href="http://www.eclipse.org/legal/epl-v10.html">http://www.eclipse.org/legal/epl-v10.html</a>. +For purposes of the EPL, "Program" will mean the Content.</p> + +<p>If you did not receive this Content directly from the Eclipse Foundation, the Content is +being redistributed by another party ("Redistributor") and different terms and conditions may +apply to your use of any object code in the Content. Check the Redistributor's license that was +provided with the Content. If no such license exists, contact the Redistributor. Unless otherwise +indicated below, the terms and conditions of the EPL still apply to any source code in the Content +and such source code may be obtained at <a href="http://www.eclipse.org">http://www.eclipse.org</a>.</p> + +</body> +</html> diff --git a/org.eclipse.jubula.client.api.converter/build.properties b/org.eclipse.jubula.client.api.converter/build.properties new file mode 100644 index 000000000..1cbd75378 --- /dev/null +++ b/org.eclipse.jubula.client.api.converter/build.properties @@ -0,0 +1,13 @@ +############################################################################### +# 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 +############################################################################### +source.. = src/,\ + src-gen/ +output.. = bin/ +bin.includes = META-INF/,\ + .,\ + about.html diff --git a/org.eclipse.jubula.client.api.converter/pom.xml b/org.eclipse.jubula.client.api.converter/pom.xml new file mode 100644 index 000000000..0e8801107 --- /dev/null +++ b/org.eclipse.jubula.client.api.converter/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</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> diff --git a/org.eclipse.jubula.client.api.converter/src-gen/.keep b/org.eclipse.jubula.client.api.converter/src-gen/.keep new file mode 100644 index 000000000..e69de29bb --- /dev/null +++ b/org.eclipse.jubula.client.api.converter/src-gen/.keep diff --git a/org.eclipse.jubula.client.api.converter/src/org/eclipse/jubula/client/api/converter/.keep b/org.eclipse.jubula.client.api.converter/src/org/eclipse/jubula/client/api/converter/.keep new file mode 100644 index 000000000..e69de29bb --- /dev/null +++ b/org.eclipse.jubula.client.api.converter/src/org/eclipse/jubula/client/api/converter/.keep |