Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkchong2013-09-24 16:22:13 +0000
committerkchong2013-09-24 16:22:13 +0000
commit7b26e3dd8385dff2cb1f4877bb40a90be1717e32 (patch)
tree3d3febde6671ee0d19b8eb7af3cc61657857b74d
parent6e6074e63ae0169e2342f6b26f483f423e938e9c (diff)
downloadwebtools.webservices.axis2-7b26e3dd8385dff2cb1f4877bb40a90be1717e32.tar.gz
webtools.webservices.axis2-7b26e3dd8385dff2cb1f4877bb40a90be1717e32.tar.xz
webtools.webservices.axis2-7b26e3dd8385dff2cb1f4877bb40a90be1717e32.zip
[414716] [CBI] webtools.webservices patches for building withv201309241715
Maven/Tycho
-rw-r--r--.gitignore2
-rw-r--r--.project11
-rw-r--r--bundles/org.eclipse.jst.ws.axis2.consumption.core/pom.xml27
-rw-r--r--bundles/org.eclipse.jst.ws.axis2.consumption.ui/pom.xml27
-rw-r--r--bundles/org.eclipse.jst.ws.axis2.core/pom.xml27
-rw-r--r--bundles/org.eclipse.jst.ws.axis2.creation.core/pom.xml27
-rw-r--r--bundles/org.eclipse.jst.ws.axis2.creation.ui/pom.xml27
-rw-r--r--bundles/org.eclipse.jst.ws.axis2.ui/pom.xml27
-rw-r--r--docs/org.eclipse.jst.ws.axis2.ui.doc.user/pom.xml27
-rw-r--r--features/org.eclipse.jst.ws.axis2tools.feature/pom.xml45
-rw-r--r--features/org.eclipse.jst.ws.axis2tools_sdk.feature/pom.xml27
-rw-r--r--pom.xml44
-rw-r--r--tests/org.eclipse.jst.ws.axis2.tests.performance/META-INF/MANIFEST.MF2
-rw-r--r--tests/org.eclipse.jst.ws.axis2.tests.performance/pom.xml27
14 files changed, 346 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..d027e79
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,2 @@
+# maven
+target/
diff --git a/.project b/.project
new file mode 100644
index 0000000..5a52ad4
--- /dev/null
+++ b/.project
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>webtools.webservices.axis2</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ </buildSpec>
+ <natures>
+ </natures>
+</projectDescription>
diff --git a/bundles/org.eclipse.jst.ws.axis2.consumption.core/pom.xml b/bundles/org.eclipse.jst.ws.axis2.consumption.core/pom.xml
new file mode 100644
index 0000000..8d1294e
--- /dev/null
+++ b/bundles/org.eclipse.jst.ws.axis2.consumption.core/pom.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (c) 2012, 2013 Eclipse Foundation and others.
+ All rights reserved. This program and the accompanying materials
+ are made available under the terms of the Eclipse Distribution License v1.0
+ which accompanies this distribution, and is available at
+ http://www.eclipse.org/org/documents/edl-v10.php
+
+ Contributors:
+ Thanh Ha (Eclipse Foundation) - initial implementation
+-->
+
+<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>
+ <groupId>org.eclipse.webtools.webservices</groupId>
+ <artifactId>org.eclipse.webtools.webservices.axis2</artifactId>
+ <version>3.5.0-SNAPSHOT</version>
+ <relativePath>../../</relativePath>
+ </parent>
+
+ <groupId>org.eclipse.webtools.webservices</groupId>
+ <artifactId>org.eclipse.jst.ws.axis2.consumption.core</artifactId>
+ <version>1.0.105-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+</project>
diff --git a/bundles/org.eclipse.jst.ws.axis2.consumption.ui/pom.xml b/bundles/org.eclipse.jst.ws.axis2.consumption.ui/pom.xml
new file mode 100644
index 0000000..0a782ec
--- /dev/null
+++ b/bundles/org.eclipse.jst.ws.axis2.consumption.ui/pom.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (c) 2012, 2013 Eclipse Foundation and others.
+ All rights reserved. This program and the accompanying materials
+ are made available under the terms of the Eclipse Distribution License v1.0
+ which accompanies this distribution, and is available at
+ http://www.eclipse.org/org/documents/edl-v10.php
+
+ Contributors:
+ Thanh Ha (Eclipse Foundation) - initial implementation
+-->
+
+<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>
+ <groupId>org.eclipse.webtools.webservices</groupId>
+ <artifactId>org.eclipse.webtools.webservices.axis2</artifactId>
+ <version>3.5.0-SNAPSHOT</version>
+ <relativePath>../../</relativePath>
+ </parent>
+
+ <groupId>org.eclipse.webtools.webservices</groupId>
+ <artifactId>org.eclipse.jst.ws.axis2.consumption.ui</artifactId>
+ <version>1.0.103-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+</project>
diff --git a/bundles/org.eclipse.jst.ws.axis2.core/pom.xml b/bundles/org.eclipse.jst.ws.axis2.core/pom.xml
new file mode 100644
index 0000000..2156915
--- /dev/null
+++ b/bundles/org.eclipse.jst.ws.axis2.core/pom.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (c) 2012, 2013 Eclipse Foundation and others.
+ All rights reserved. This program and the accompanying materials
+ are made available under the terms of the Eclipse Distribution License v1.0
+ which accompanies this distribution, and is available at
+ http://www.eclipse.org/org/documents/edl-v10.php
+
+ Contributors:
+ Thanh Ha (Eclipse Foundation) - initial implementation
+-->
+
+<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>
+ <groupId>org.eclipse.webtools.webservices</groupId>
+ <artifactId>org.eclipse.webtools.webservices.axis2</artifactId>
+ <version>3.5.0-SNAPSHOT</version>
+ <relativePath>../../</relativePath>
+ </parent>
+
+ <groupId>org.eclipse.webtools.webservices</groupId>
+ <artifactId>org.eclipse.jst.ws.axis2.core</artifactId>
+ <version>1.0.204-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+</project>
diff --git a/bundles/org.eclipse.jst.ws.axis2.creation.core/pom.xml b/bundles/org.eclipse.jst.ws.axis2.creation.core/pom.xml
new file mode 100644
index 0000000..7ba60ee
--- /dev/null
+++ b/bundles/org.eclipse.jst.ws.axis2.creation.core/pom.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (c) 2012, 2013 Eclipse Foundation and others.
+ All rights reserved. This program and the accompanying materials
+ are made available under the terms of the Eclipse Distribution License v1.0
+ which accompanies this distribution, and is available at
+ http://www.eclipse.org/org/documents/edl-v10.php
+
+ Contributors:
+ Thanh Ha (Eclipse Foundation) - initial implementation
+-->
+
+<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>
+ <groupId>org.eclipse.webtools.webservices</groupId>
+ <artifactId>org.eclipse.webtools.webservices.axis2</artifactId>
+ <version>3.5.0-SNAPSHOT</version>
+ <relativePath>../../</relativePath>
+ </parent>
+
+ <groupId>org.eclipse.webtools.webservices</groupId>
+ <artifactId>org.eclipse.jst.ws.axis2.creation.core</artifactId>
+ <version>1.0.106-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+</project>
diff --git a/bundles/org.eclipse.jst.ws.axis2.creation.ui/pom.xml b/bundles/org.eclipse.jst.ws.axis2.creation.ui/pom.xml
new file mode 100644
index 0000000..61d2e3b
--- /dev/null
+++ b/bundles/org.eclipse.jst.ws.axis2.creation.ui/pom.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (c) 2012, 2013 Eclipse Foundation and others.
+ All rights reserved. This program and the accompanying materials
+ are made available under the terms of the Eclipse Distribution License v1.0
+ which accompanies this distribution, and is available at
+ http://www.eclipse.org/org/documents/edl-v10.php
+
+ Contributors:
+ Thanh Ha (Eclipse Foundation) - initial implementation
+-->
+
+<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>
+ <groupId>org.eclipse.webtools.webservices</groupId>
+ <artifactId>org.eclipse.webtools.webservices.axis2</artifactId>
+ <version>3.5.0-SNAPSHOT</version>
+ <relativePath>../../</relativePath>
+ </parent>
+
+ <groupId>org.eclipse.webtools.webservices</groupId>
+ <artifactId>org.eclipse.jst.ws.axis2.creation.ui</artifactId>
+ <version>1.0.104-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+</project>
diff --git a/bundles/org.eclipse.jst.ws.axis2.ui/pom.xml b/bundles/org.eclipse.jst.ws.axis2.ui/pom.xml
new file mode 100644
index 0000000..cce0840
--- /dev/null
+++ b/bundles/org.eclipse.jst.ws.axis2.ui/pom.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (c) 2012, 2013 Eclipse Foundation and others.
+ All rights reserved. This program and the accompanying materials
+ are made available under the terms of the Eclipse Distribution License v1.0
+ which accompanies this distribution, and is available at
+ http://www.eclipse.org/org/documents/edl-v10.php
+
+ Contributors:
+ Thanh Ha (Eclipse Foundation) - initial implementation
+-->
+
+<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>
+ <groupId>org.eclipse.webtools.webservices</groupId>
+ <artifactId>org.eclipse.webtools.webservices.axis2</artifactId>
+ <version>3.5.0-SNAPSHOT</version>
+ <relativePath>../../</relativePath>
+ </parent>
+
+ <groupId>org.eclipse.webtools.webservices</groupId>
+ <artifactId>org.eclipse.jst.ws.axis2.ui</artifactId>
+ <version>1.0.303-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+</project>
diff --git a/docs/org.eclipse.jst.ws.axis2.ui.doc.user/pom.xml b/docs/org.eclipse.jst.ws.axis2.ui.doc.user/pom.xml
new file mode 100644
index 0000000..c32f052
--- /dev/null
+++ b/docs/org.eclipse.jst.ws.axis2.ui.doc.user/pom.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (c) 2012, 2013 Eclipse Foundation and others.
+ All rights reserved. This program and the accompanying materials
+ are made available under the terms of the Eclipse Distribution License v1.0
+ which accompanies this distribution, and is available at
+ http://www.eclipse.org/org/documents/edl-v10.php
+
+ Contributors:
+ Thanh Ha (Eclipse Foundation) - initial implementation
+-->
+
+<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>
+ <groupId>org.eclipse.webtools.webservices</groupId>
+ <artifactId>org.eclipse.webtools.webservices.axis2</artifactId>
+ <version>3.5.0-SNAPSHOT</version>
+ <relativePath>../../</relativePath>
+ </parent>
+
+ <groupId>org.eclipse.webtools.webservices</groupId>
+ <artifactId>org.eclipse.jst.ws.axis2.ui.doc.user</artifactId>
+ <version>1.0.100-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+</project>
diff --git a/features/org.eclipse.jst.ws.axis2tools.feature/pom.xml b/features/org.eclipse.jst.ws.axis2tools.feature/pom.xml
new file mode 100644
index 0000000..76e04de
--- /dev/null
+++ b/features/org.eclipse.jst.ws.axis2tools.feature/pom.xml
@@ -0,0 +1,45 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (c) 2012, 2013 Eclipse Foundation and others.
+ All rights reserved. This program and the accompanying materials
+ are made available under the terms of the Eclipse Distribution License v1.0
+ which accompanies this distribution, and is available at
+ http://www.eclipse.org/org/documents/edl-v10.php
+
+ Contributors:
+ Thanh Ha (Eclipse Foundation) - initial implementation
+-->
+
+<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>
+ <groupId>org.eclipse.webtools.webservices</groupId>
+ <artifactId>org.eclipse.webtools.webservices.axis2</artifactId>
+ <version>3.5.0-SNAPSHOT</version>
+ <relativePath>../../</relativePath>
+ </parent>
+
+ <groupId>org.eclipse.webtools.webservices</groupId>
+ <artifactId>org.eclipse.jst.ws.axis2tools.feature</artifactId>
+ <version>1.1.200-SNAPSHOT</version>
+ <packaging>eclipse-feature</packaging>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.tycho.extras</groupId>
+ <artifactId>tycho-source-feature-plugin</artifactId>
+ <executions>
+ <execution>
+ <phase>package</phase>
+ <id>source-feature</id>
+ <goals>
+ <goal>source-feature</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+</project>
diff --git a/features/org.eclipse.jst.ws.axis2tools_sdk.feature/pom.xml b/features/org.eclipse.jst.ws.axis2tools_sdk.feature/pom.xml
new file mode 100644
index 0000000..06399e5
--- /dev/null
+++ b/features/org.eclipse.jst.ws.axis2tools_sdk.feature/pom.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (c) 2012, 2013 Eclipse Foundation and others.
+ All rights reserved. This program and the accompanying materials
+ are made available under the terms of the Eclipse Distribution License v1.0
+ which accompanies this distribution, and is available at
+ http://www.eclipse.org/org/documents/edl-v10.php
+
+ Contributors:
+ Thanh Ha (Eclipse Foundation) - initial implementation
+-->
+
+<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>
+ <groupId>org.eclipse.webtools.webservices</groupId>
+ <artifactId>org.eclipse.webtools.webservices.axis2</artifactId>
+ <version>3.5.0-SNAPSHOT</version>
+ <relativePath>../../</relativePath>
+ </parent>
+
+ <groupId>org.eclipse.webtools.webservices</groupId>
+ <artifactId>org.eclipse.jst.ws.axis2tools_sdk.feature</artifactId>
+ <version>1.1.200-SNAPSHOT</version>
+ <packaging>eclipse-feature</packaging>
+</project>
diff --git a/pom.xml b/pom.xml
new file mode 100644
index 0000000..0589770
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,44 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (c) 2012, 2013 Eclipse Foundation and others.
+ All rights reserved. This program and the accompanying materials
+ are made available under the terms of the Eclipse Distribution License v1.0
+ which accompanies this distribution, and is available at
+ http://www.eclipse.org/org/documents/edl-v10.php
+
+ Contributors:
+ Thanh Ha (Eclipse Foundation) - initial implementation
+-->
+
+<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>
+ <groupId>org.eclipse</groupId>
+ <artifactId>wtp-parent</artifactId>
+ <version>3.5.0-SNAPSHOT</version>
+ <relativePath>../wtp-parent</relativePath>
+ </parent>
+
+ <groupId>org.eclipse.webtools.webservices</groupId>
+ <artifactId>org.eclipse.webtools.webservices.axis2</artifactId>
+ <version>3.5.0-SNAPSHOT</version>
+ <packaging>pom</packaging>
+
+ <modules>
+ <module>bundles/org.eclipse.jst.ws.axis2.consumption.core</module>
+ <module>bundles/org.eclipse.jst.ws.axis2.consumption.ui</module>
+ <module>bundles/org.eclipse.jst.ws.axis2.core</module>
+ <module>bundles/org.eclipse.jst.ws.axis2.creation.core</module>
+ <module>bundles/org.eclipse.jst.ws.axis2.creation.ui</module>
+ <module>bundles/org.eclipse.jst.ws.axis2.ui</module>
+
+ <module>docs/org.eclipse.jst.ws.axis2.ui.doc.user</module>
+
+ <module>features/org.eclipse.jst.ws.axis2tools.feature</module>
+ <module>features/org.eclipse.jst.ws.axis2tools_sdk.feature</module>
+
+ <module>tests/org.eclipse.jst.ws.axis2.tests.performance</module>
+ </modules>
+</project>
diff --git a/tests/org.eclipse.jst.ws.axis2.tests.performance/META-INF/MANIFEST.MF b/tests/org.eclipse.jst.ws.axis2.tests.performance/META-INF/MANIFEST.MF
index dcb68fc..0997f3d 100644
--- a/tests/org.eclipse.jst.ws.axis2.tests.performance/META-INF/MANIFEST.MF
+++ b/tests/org.eclipse.jst.ws.axis2.tests.performance/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name
Bundle-SymbolicName: org.eclipse.jst.ws.axis2.tests.performance
-Bundle-Version: 1.0.0
+Bundle-Version: 1.0.0.qualifier
Bundle-Activator: org.eclipse.jst.ws.axis2.tests.performance.Activator
Bundle-Vendor: %Bundle-Vendor
Require-Bundle: org.eclipse.jst.ws,
diff --git a/tests/org.eclipse.jst.ws.axis2.tests.performance/pom.xml b/tests/org.eclipse.jst.ws.axis2.tests.performance/pom.xml
new file mode 100644
index 0000000..4c0444c
--- /dev/null
+++ b/tests/org.eclipse.jst.ws.axis2.tests.performance/pom.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (c) 2012, 2013 Eclipse Foundation and others.
+ All rights reserved. This program and the accompanying materials
+ are made available under the terms of the Eclipse Distribution License v1.0
+ which accompanies this distribution, and is available at
+ http://www.eclipse.org/org/documents/edl-v10.php
+
+ Contributors:
+ Thanh Ha (Eclipse Foundation) - initial implementation
+-->
+
+<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>
+ <groupId>org.eclipse.webtools.webservices</groupId>
+ <artifactId>org.eclipse.webtools.webservices.axis2</artifactId>
+ <version>3.5.0-SNAPSHOT</version>
+ <relativePath>../../</relativePath>
+ </parent>
+
+ <groupId>org.eclipse.webtools.webservices</groupId>
+ <artifactId>org.eclipse.jst.ws.axis2.tests.performance</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+</project> \ No newline at end of file

Back to the top