Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThanh Ha2013-07-05 23:37:24 +0000
committerNick Sandonato2013-09-25 15:59:46 +0000
commitfe4eb600851ed173b6ffb2c9265466f82dd6d031 (patch)
tree6cd0e2a837a40428974ad716401880a5a9b3bfd6
parente6ebf28517a07017df9eb64f508a3967b39a4254 (diff)
downloadwebtools.sourceediting.xsl-fe4eb600851ed173b6ffb2c9265466f82dd6d031.tar.gz
webtools.sourceediting.xsl-fe4eb600851ed173b6ffb2c9265466f82dd6d031.tar.xz
webtools.sourceediting.xsl-fe4eb600851ed173b6ffb2c9265466f82dd6d031.zip
Bug 414715: [CBI] webtools.sourceediting.xsl patches for building with Maven/Tycho
Signed-off-by: Thanh Ha <thanh.ha@eclipse.org>
-rw-r--r--.gitignore3
-rw-r--r--bundles/org.eclipse.wst.xsl.core/pom.xml62
-rw-r--r--bundles/org.eclipse.wst.xsl.debug.ui/pom.xml59
-rw-r--r--bundles/org.eclipse.wst.xsl.exslt.core/pom.xml59
-rw-r--r--bundles/org.eclipse.wst.xsl.exslt.ui/pom.xml60
-rw-r--r--bundles/org.eclipse.wst.xsl.jaxp.debug.ui/pom.xml60
-rw-r--r--bundles/org.eclipse.wst.xsl.jaxp.debug/pom.xml59
-rw-r--r--bundles/org.eclipse.wst.xsl.jaxp.launching/pom.xml59
-rw-r--r--bundles/org.eclipse.wst.xsl.launching/pom.xml59
-rw-r--r--bundles/org.eclipse.wst.xsl.saxon/pom.xml39
-rw-r--r--bundles/org.eclipse.wst.xsl.ui/pom.xml59
-rw-r--r--bundles/org.eclipse.wst.xsl.xalan/pom.xml59
-rw-r--r--bundles/org.eclipse.wst.xsl/build.properties6
-rw-r--r--bundles/org.eclipse.wst.xsl/pom.xml41
-rw-r--r--docs/org.eclipse.wst.xsl.doc/build.properties6
-rw-r--r--docs/org.eclipse.wst.xsl.doc/pom.xml27
-rw-r--r--docs/org.eclipse.wst.xsl.sdk.documentation/pom.xml27
-rw-r--r--features/org.eclipse.wst.xsl.feature/pom.xml78
-rw-r--r--features/org.eclipse.wst.xsl_sdk.feature/pom.xml27
-rw-r--r--pom.xml49
20 files changed, 612 insertions, 286 deletions
diff --git a/.gitignore b/.gitignore
index 749e075..1e8d462 100644
--- a/.gitignore
+++ b/.gitignore
@@ -30,3 +30,6 @@ temp.folder
src.zip
.fbwarnings
javaCompiler...args
+
+# maven
+target/
diff --git a/bundles/org.eclipse.wst.xsl.core/pom.xml b/bundles/org.eclipse.wst.xsl.core/pom.xml
index 1db5e81..1891e27 100644
--- a/bundles/org.eclipse.wst.xsl.core/pom.xml
+++ b/bundles/org.eclipse.wst.xsl.core/pom.xml
@@ -1,28 +1,40 @@
<?xml version="1.0" encoding="UTF-8"?>
-<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/maven-v4_0_0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.eclipse.wst.xsl</groupId>
- <artifactId>org.eclipse.wst.xsl.core</artifactId>
- <packaging>eclipse-plugin</packaging>
- <version>1.1.100-SNAPSHOT</version>
- <name>XSLT Core Plugin</name>
+<!--
+ Copyright (c) 2010, 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:
+ David Carver - Initial implementation
+ Thanh Ha (Eclipse Foundation) - CBI Webtools implementation
+-->
- <parent>
- <groupId>org.eclipse.wst.xsl</groupId>
- <artifactId>org.eclipse.wst.xsl-parent</artifactId>
- <version>1.2.0-SNAPSHOT</version>
- <relativePath>../../development/athena/org.eclipse.wst.xsl.releng</relativePath>
- </parent>
+<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.sourceediting</groupId>
+ <artifactId>org.eclipse.webtools.sourceediting.xsl</artifactId>
+ <version>3.5.0-SNAPSHOT</version>
+ <relativePath>../../</relativePath>
+ </parent>
- <build>
- <sourceDirectory>src</sourceDirectory>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-javadoc-plugin</artifactId>
- <version>2.7</version>
- </plugin>
- </plugins>
- </build>
-</project> \ No newline at end of file
+ <groupId>org.eclipse.webtools.sourceediting</groupId>
+ <artifactId>org.eclipse.wst.xsl.core</artifactId>
+ <version>1.1.301-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+ <name>XSLT Core Plugin</name>
+
+ <build>
+ <sourceDirectory>src</sourceDirectory>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <version>2.7</version>
+ </plugin>
+ </plugins>
+ </build>
+</project>
diff --git a/bundles/org.eclipse.wst.xsl.debug.ui/pom.xml b/bundles/org.eclipse.wst.xsl.debug.ui/pom.xml
index a8bf2cc..803be72 100644
--- a/bundles/org.eclipse.wst.xsl.debug.ui/pom.xml
+++ b/bundles/org.eclipse.wst.xsl.debug.ui/pom.xml
@@ -1,29 +1,40 @@
<?xml version="1.0" encoding="UTF-8"?>
-<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/maven-v4_0_0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.eclipse.wst.xsl</groupId>
- <artifactId>org.eclipse.wst.xsl.debug.ui</artifactId>
- <packaging>eclipse-plugin</packaging>
- <version>1.0.200-SNAPSHOT</version>
- <name>XSLT Debug UI Plugin</name>
+<!--
+ Copyright (c) 2010, 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:
+ David Carver - Initial implementation
+ Thanh Ha (Eclipse Foundation) - CBI Webtools implementation
+-->
- <parent>
- <groupId>org.eclipse.wst.xsl</groupId>
- <artifactId>org.eclipse.wst.xsl-parent</artifactId>
- <version>1.2.0-SNAPSHOT</version>
- <relativePath>../../development/athena/org.eclipse.wst.xsl.releng</relativePath>
- </parent>
+<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.sourceediting</groupId>
+ <artifactId>org.eclipse.webtools.sourceediting.xsl</artifactId>
+ <version>3.5.0-SNAPSHOT</version>
+ <relativePath>../../</relativePath>
+ </parent>
- <build>
- <sourceDirectory>src</sourceDirectory>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-javadoc-plugin</artifactId>
- <version>2.7</version>
- </plugin>
- </plugins>
- </build>
+ <groupId>org.eclipse.webtools.sourceediting</groupId>
+ <artifactId>org.eclipse.wst.xsl.debug.ui</artifactId>
+ <version>1.0.302-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+ <name>XSLT Debug UI Plugin</name>
+ <build>
+ <sourceDirectory>src</sourceDirectory>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <version>2.7</version>
+ </plugin>
+ </plugins>
+ </build>
</project>
diff --git a/bundles/org.eclipse.wst.xsl.exslt.core/pom.xml b/bundles/org.eclipse.wst.xsl.exslt.core/pom.xml
index 4049a4e..a20a35e 100644
--- a/bundles/org.eclipse.wst.xsl.exslt.core/pom.xml
+++ b/bundles/org.eclipse.wst.xsl.exslt.core/pom.xml
@@ -1,29 +1,40 @@
<?xml version="1.0" encoding="UTF-8"?>
-<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/maven-v4_0_0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.eclipse.wst.xsl</groupId>
- <artifactId>org.eclipse.wst.xsl.exslt.core</artifactId>
- <packaging>eclipse-plugin</packaging>
- <version>1.0.0-SNAPSHOT</version>
- <name>XSLT EXSLT Core Plugin</name>
+<!--
+ Copyright (c) 2010, 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:
+ David Carver - Initial implementation
+ Thanh Ha (Eclipse Foundation) - CBI Webtools implementation
+-->
- <parent>
- <groupId>org.eclipse.wst.xsl</groupId>
- <artifactId>org.eclipse.wst.xsl-parent</artifactId>
- <version>1.2.0-SNAPSHOT</version>
- <relativePath>../../development/athena/org.eclipse.wst.xsl.releng</relativePath>
- </parent>
+<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.sourceediting</groupId>
+ <artifactId>org.eclipse.webtools.sourceediting.xsl</artifactId>
+ <version>3.5.0-SNAPSHOT</version>
+ <relativePath>../../</relativePath>
+ </parent>
- <build>
- <sourceDirectory>src</sourceDirectory>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-javadoc-plugin</artifactId>
- <version>2.7</version>
- </plugin>
- </plugins>
- </build>
+ <groupId>org.eclipse.webtools.sourceediting</groupId>
+ <artifactId>org.eclipse.wst.xsl.exslt.core</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+ <name>XSLT EXSLT Core Plugin</name>
+ <build>
+ <sourceDirectory>src</sourceDirectory>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <version>2.7</version>
+ </plugin>
+ </plugins>
+ </build>
</project>
diff --git a/bundles/org.eclipse.wst.xsl.exslt.ui/pom.xml b/bundles/org.eclipse.wst.xsl.exslt.ui/pom.xml
index b4e03b9..2178ab6 100644
--- a/bundles/org.eclipse.wst.xsl.exslt.ui/pom.xml
+++ b/bundles/org.eclipse.wst.xsl.exslt.ui/pom.xml
@@ -1,30 +1,40 @@
<?xml version="1.0" encoding="UTF-8"?>
-<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/maven-v4_0_0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.eclipse.wst.xsl</groupId>
- <artifactId>org.eclipse.wst.xsl.exslt.ui</artifactId>
- <packaging>eclipse-plugin</packaging>
- <version>1.0.0-SNAPSHOT</version>
- <name>XSLT EXSLT UI Plugin</name>
+<!--
+ Copyright (c) 2010, 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:
+ David Carver - Initial implementation
+ Thanh Ha (Eclipse Foundation) - CBI Webtools implementation
+-->
- <parent>
- <groupId>org.eclipse.wst.xsl</groupId>
- <artifactId>org.eclipse.wst.xsl-parent</artifactId>
- <version>1.2.0-SNAPSHOT</version>
- <relativePath>../../development/athena/org.eclipse.wst.xsl.releng</relativePath>
- </parent>
-
- <build>
- <sourceDirectory>src</sourceDirectory>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-javadoc-plugin</artifactId>
- <version>2.7</version>
- </plugin>
- </plugins>
- </build>
+<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.sourceediting</groupId>
+ <artifactId>org.eclipse.webtools.sourceediting.xsl</artifactId>
+ <version>3.5.0-SNAPSHOT</version>
+ <relativePath>../../</relativePath>
+ </parent>
+ <groupId>org.eclipse.webtools.sourceediting</groupId>
+ <artifactId>org.eclipse.wst.xsl.exslt.ui</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+ <name>XSLT EXSLT UI Plugin</name>
+ <build>
+ <sourceDirectory>src</sourceDirectory>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <version>2.7</version>
+ </plugin>
+ </plugins>
+ </build>
</project>
diff --git a/bundles/org.eclipse.wst.xsl.jaxp.debug.ui/pom.xml b/bundles/org.eclipse.wst.xsl.jaxp.debug.ui/pom.xml
index a3f3f0f..bb00ddc 100644
--- a/bundles/org.eclipse.wst.xsl.jaxp.debug.ui/pom.xml
+++ b/bundles/org.eclipse.wst.xsl.jaxp.debug.ui/pom.xml
@@ -1,30 +1,40 @@
<?xml version="1.0" encoding="UTF-8"?>
-<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/maven-v4_0_0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.eclipse.wst.xsl</groupId>
- <artifactId>org.eclipse.wst.xsl.jaxp.debug.ui</artifactId>
- <packaging>eclipse-plugin</packaging>
- <version>1.0.200-SNAPSHOT</version>
- <name>XSLT JAXP Debug UI Plugin</name>
+<!--
+ Copyright (c) 2010, 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:
+ David Carver - Initial implementation
+ Thanh Ha (Eclipse Foundation) - CBI Webtools implementation
+-->
- <parent>
- <groupId>org.eclipse.wst.xsl</groupId>
- <artifactId>org.eclipse.wst.xsl-parent</artifactId>
- <version>1.2.0-SNAPSHOT</version>
- <relativePath>../../development/athena/org.eclipse.wst.xsl.releng</relativePath>
- </parent>
-
- <build>
- <sourceDirectory>src</sourceDirectory>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-javadoc-plugin</artifactId>
- <version>2.7</version>
- </plugin>
- </plugins>
- </build>
+<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.sourceediting</groupId>
+ <artifactId>org.eclipse.webtools.sourceediting.xsl</artifactId>
+ <version>3.5.0-SNAPSHOT</version>
+ <relativePath>../../</relativePath>
+ </parent>
+ <groupId>org.eclipse.webtools.sourceediting</groupId>
+ <artifactId>org.eclipse.wst.xsl.jaxp.debug.ui</artifactId>
+ <version>1.0.200-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+ <name>XSLT JAXP Debug UI Plugin</name>
+ <build>
+ <sourceDirectory>src</sourceDirectory>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <version>2.7</version>
+ </plugin>
+ </plugins>
+ </build>
</project>
diff --git a/bundles/org.eclipse.wst.xsl.jaxp.debug/pom.xml b/bundles/org.eclipse.wst.xsl.jaxp.debug/pom.xml
index 8af78b8..93915be 100644
--- a/bundles/org.eclipse.wst.xsl.jaxp.debug/pom.xml
+++ b/bundles/org.eclipse.wst.xsl.jaxp.debug/pom.xml
@@ -1,29 +1,40 @@
<?xml version="1.0" encoding="UTF-8"?>
-<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/maven-v4_0_0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.eclipse.wst.xsl</groupId>
- <artifactId>org.eclipse.wst.xsl.jaxp.debug</artifactId>
- <packaging>eclipse-plugin</packaging>
- <version>1.0.200-SNAPSHOT</version>
- <name>XSLT JAXP Debug Plugin</name>
+<!--
+ Copyright (c) 2010, 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:
+ David Carver - Initial implementation
+ Thanh Ha (Eclipse Foundation) - CBI Webtools implementation
+-->
- <parent>
- <groupId>org.eclipse.wst.xsl</groupId>
- <artifactId>org.eclipse.wst.xsl-parent</artifactId>
- <version>1.2.0-SNAPSHOT</version>
- <relativePath>../../development/athena/org.eclipse.wst.xsl.releng</relativePath>
- </parent>
+<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.sourceediting</groupId>
+ <artifactId>org.eclipse.webtools.sourceediting.xsl</artifactId>
+ <version>3.5.0-SNAPSHOT</version>
+ <relativePath>../../</relativePath>
+ </parent>
- <build>
- <sourceDirectory>src</sourceDirectory>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-javadoc-plugin</artifactId>
- <version>2.7</version>
- </plugin>
- </plugins>
- </build>
+ <groupId>org.eclipse.webtools.sourceediting</groupId>
+ <artifactId>org.eclipse.wst.xsl.jaxp.debug</artifactId>
+ <version>1.0.300-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+ <name>XSLT JAXP Debug Plugin</name>
+ <build>
+ <sourceDirectory>src</sourceDirectory>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <version>2.7</version>
+ </plugin>
+ </plugins>
+ </build>
</project>
diff --git a/bundles/org.eclipse.wst.xsl.jaxp.launching/pom.xml b/bundles/org.eclipse.wst.xsl.jaxp.launching/pom.xml
index 72500de..e51986b 100644
--- a/bundles/org.eclipse.wst.xsl.jaxp.launching/pom.xml
+++ b/bundles/org.eclipse.wst.xsl.jaxp.launching/pom.xml
@@ -1,29 +1,40 @@
<?xml version="1.0" encoding="UTF-8"?>
-<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/maven-v4_0_0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.eclipse.wst.xsl</groupId>
- <artifactId>org.eclipse.wst.xsl.jaxp.launching</artifactId>
- <packaging>eclipse-plugin</packaging>
- <version>1.0.200-SNAPSHOT</version>
- <name>XSLT JAXP Launching UI Plugin</name>
+<!--
+ Copyright (c) 2010, 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:
+ David Carver - Initial implementation
+ Thanh Ha (Eclipse Foundation) - CBI Webtools implementation
+-->
- <parent>
- <groupId>org.eclipse.wst.xsl</groupId>
- <artifactId>org.eclipse.wst.xsl-parent</artifactId>
- <version>1.2.0-SNAPSHOT</version>
- <relativePath>../../development/athena/org.eclipse.wst.xsl.releng</relativePath>
- </parent>
+<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.sourceediting</groupId>
+ <artifactId>org.eclipse.webtools.sourceediting.xsl</artifactId>
+ <version>3.5.0-SNAPSHOT</version>
+ <relativePath>../../</relativePath>
+ </parent>
- <build>
- <sourceDirectory>src</sourceDirectory>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-javadoc-plugin</artifactId>
- <version>2.7</version>
- </plugin>
- </plugins>
- </build>
+ <groupId>org.eclipse.webtools.sourceediting</groupId>
+ <artifactId>org.eclipse.wst.xsl.jaxp.launching</artifactId>
+ <version>1.0.300-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+ <name>XSLT JAXP Launching UI Plugin</name>
+ <build>
+ <sourceDirectory>src</sourceDirectory>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <version>2.7</version>
+ </plugin>
+ </plugins>
+ </build>
</project>
diff --git a/bundles/org.eclipse.wst.xsl.launching/pom.xml b/bundles/org.eclipse.wst.xsl.launching/pom.xml
index ada16a5..fcc3433 100644
--- a/bundles/org.eclipse.wst.xsl.launching/pom.xml
+++ b/bundles/org.eclipse.wst.xsl.launching/pom.xml
@@ -1,29 +1,40 @@
<?xml version="1.0" encoding="UTF-8"?>
-<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/maven-v4_0_0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.eclipse.wst.xsl</groupId>
- <artifactId>org.eclipse.wst.xsl.launching</artifactId>
- <packaging>eclipse-plugin</packaging>
- <version>1.0.200-SNAPSHOT</version>
- <name>XSLT Launching Plugin</name>
+<!--
+ Copyright (c) 2010, 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:
+ David Carver - Initial implementation
+ Thanh Ha (Eclipse Foundation) - CBI Webtools implementation
+-->
- <parent>
- <groupId>org.eclipse.wst.xsl</groupId>
- <artifactId>org.eclipse.wst.xsl-parent</artifactId>
- <version>1.2.0-SNAPSHOT</version>
- <relativePath>../../development/athena/org.eclipse.wst.xsl.releng</relativePath>
- </parent>
+<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.sourceediting</groupId>
+ <artifactId>org.eclipse.webtools.sourceediting.xsl</artifactId>
+ <version>3.5.0-SNAPSHOT</version>
+ <relativePath>../../</relativePath>
+ </parent>
- <build>
- <sourceDirectory>src</sourceDirectory>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-javadoc-plugin</artifactId>
- <version>2.7</version>
- </plugin>
- </plugins>
- </build>
+ <groupId>org.eclipse.webtools.sourceediting</groupId>
+ <artifactId>org.eclipse.wst.xsl.launching</artifactId>
+ <version>1.1.0-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+ <name>XSLT Launching Plugin</name>
+ <build>
+ <sourceDirectory>src</sourceDirectory>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <version>2.7</version>
+ </plugin>
+ </plugins>
+ </build>
</project>
diff --git a/bundles/org.eclipse.wst.xsl.saxon/pom.xml b/bundles/org.eclipse.wst.xsl.saxon/pom.xml
index 9daf2cc..c4cdb58 100644
--- a/bundles/org.eclipse.wst.xsl.saxon/pom.xml
+++ b/bundles/org.eclipse.wst.xsl.saxon/pom.xml
@@ -1,18 +1,29 @@
<?xml version="1.0" encoding="UTF-8"?>
-<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/maven-v4_0_0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.eclipse.wst.xsl</groupId>
- <artifactId>org.eclipse.wst.xsl.saxon</artifactId>
- <packaging>eclipse-plugin</packaging>
- <version>1.0.200-SNAPSHOT</version>
- <name>XSLT Saxon Plugin</name>
+<!--
+ Copyright (c) 2010, 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:
+ David Carver - Initial implementation
+ Thanh Ha (Eclipse Foundation) - CBI Webtools implementation
+-->
- <parent>
- <groupId>org.eclipse.wst.xsl</groupId>
- <artifactId>org.eclipse.wst.xsl-parent</artifactId>
- <version>1.2.0-SNAPSHOT</version>
- <relativePath>../../development/athena/org.eclipse.wst.xsl.releng</relativePath>
- </parent>
+<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.sourceediting</groupId>
+ <artifactId>org.eclipse.webtools.sourceediting.xsl</artifactId>
+ <version>3.5.0-SNAPSHOT</version>
+ <relativePath>../../</relativePath>
+ </parent>
+ <groupId>org.eclipse.webtools.sourceediting</groupId>
+ <artifactId>org.eclipse.wst.xsl.saxon</artifactId>
+ <version>1.0.200-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+ <name>XSLT Saxon Plugin</name>
</project>
diff --git a/bundles/org.eclipse.wst.xsl.ui/pom.xml b/bundles/org.eclipse.wst.xsl.ui/pom.xml
index 1cbceb7..b5f9a28 100644
--- a/bundles/org.eclipse.wst.xsl.ui/pom.xml
+++ b/bundles/org.eclipse.wst.xsl.ui/pom.xml
@@ -1,29 +1,40 @@
<?xml version="1.0" encoding="UTF-8"?>
-<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/maven-v4_0_0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.eclipse.wst.xsl</groupId>
- <artifactId>org.eclipse.wst.xsl.ui</artifactId>
- <packaging>eclipse-plugin</packaging>
- <version>1.1.300-SNAPSHOT</version>
- <name>XSLT UI Plugin</name>
+<!--
+ Copyright (c) 2010, 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:
+ David Carver - Initial implementation
+ Thanh Ha (Eclipse Foundation) - CBI Webtools implementation
+-->
- <parent>
- <groupId>org.eclipse.wst.xsl</groupId>
- <artifactId>org.eclipse.wst.xsl-parent</artifactId>
- <version>1.2.0-SNAPSHOT</version>
- <relativePath>../../development/athena/org.eclipse.wst.xsl.releng</relativePath>
- </parent>
+<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.sourceediting</groupId>
+ <artifactId>org.eclipse.webtools.sourceediting.xsl</artifactId>
+ <version>3.5.0-SNAPSHOT</version>
+ <relativePath>../../</relativePath>
+ </parent>
- <build>
- <sourceDirectory>src</sourceDirectory>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-javadoc-plugin</artifactId>
- <version>2.7</version>
- </plugin>
- </plugins>
- </build>
+ <groupId>org.eclipse.webtools.sourceediting</groupId>
+ <artifactId>org.eclipse.wst.xsl.ui</artifactId>
+ <version>1.1.301-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+ <name>XSLT UI Plugin</name>
+ <build>
+ <sourceDirectory>src</sourceDirectory>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <version>2.7</version>
+ </plugin>
+ </plugins>
+ </build>
</project>
diff --git a/bundles/org.eclipse.wst.xsl.xalan/pom.xml b/bundles/org.eclipse.wst.xsl.xalan/pom.xml
index aa76dd2..a3b876a 100644
--- a/bundles/org.eclipse.wst.xsl.xalan/pom.xml
+++ b/bundles/org.eclipse.wst.xsl.xalan/pom.xml
@@ -1,29 +1,40 @@
<?xml version="1.0" encoding="UTF-8"?>
-<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/maven-v4_0_0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.eclipse.wst.xsl</groupId>
- <artifactId>org.eclipse.wst.xsl.xalan</artifactId>
- <packaging>eclipse-plugin</packaging>
- <version>1.0.100-SNAPSHOT</version>
- <name>XSLT Xalan Plugin</name>
+<!--
+ Copyright (c) 2010, 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:
+ David Carver - Initial implementation
+ Thanh Ha (Eclipse Foundation) - CBI Webtools implementation
+-->
- <parent>
- <groupId>org.eclipse.wst.xsl</groupId>
- <artifactId>org.eclipse.wst.xsl-parent</artifactId>
- <version>1.2.0-SNAPSHOT</version>
- <relativePath>../../development/athena/org.eclipse.wst.xsl.releng</relativePath>
- </parent>
+<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.sourceediting</groupId>
+ <artifactId>org.eclipse.webtools.sourceediting.xsl</artifactId>
+ <version>3.5.0-SNAPSHOT</version>
+ <relativePath>../../</relativePath>
+ </parent>
- <build>
- <sourceDirectory>src-debugger</sourceDirectory>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-javadoc-plugin</artifactId>
- <version>2.7</version>
- </plugin>
- </plugins>
- </build>
+ <groupId>org.eclipse.webtools.sourceediting</groupId>
+ <artifactId>org.eclipse.wst.xsl.xalan</artifactId>
+ <version>1.0.100-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+ <name>XSLT Xalan Plugin</name>
+ <build>
+ <sourceDirectory>src-debugger</sourceDirectory>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <version>2.7</version>
+ </plugin>
+ </plugins>
+ </build>
</project>
diff --git a/bundles/org.eclipse.wst.xsl/build.properties b/bundles/org.eclipse.wst.xsl/build.properties
index 1694922..0afaed7 100644
--- a/bundles/org.eclipse.wst.xsl/build.properties
+++ b/bundles/org.eclipse.wst.xsl/build.properties
@@ -5,3 +5,9 @@ bin.includes = META-INF/,\
about.properties,\
plugin.properties,\
icons/
+src.includes = about.html,\
+ about.ini,\
+ about.mappings,\
+ about.properties,\
+ icons/,\
+ plugin.properties
diff --git a/bundles/org.eclipse.wst.xsl/pom.xml b/bundles/org.eclipse.wst.xsl/pom.xml
index aca071e..b56509e 100644
--- a/bundles/org.eclipse.wst.xsl/pom.xml
+++ b/bundles/org.eclipse.wst.xsl/pom.xml
@@ -1,18 +1,29 @@
<?xml version="1.0" encoding="UTF-8"?>
-<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/maven-v4_0_0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.eclipse.wst.xsl</groupId>
- <artifactId>org.eclipse.wst.xsl</artifactId>
- <packaging>eclipse-plugin</packaging>
- <version>1.2.0-SNAPSHOT</version>
- <name>XSL Tools Branding Plugin</name>
+<!--
+ Copyright (c) 2010, 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:
+ David Carver - Initial implementation
+ Thanh Ha (Eclipse Foundation) - CBI Webtools implementation
+-->
- <parent>
- <groupId>org.eclipse.wst.xsl</groupId>
- <artifactId>org.eclipse.wst.xsl-parent</artifactId>
- <version>1.2.0-SNAPSHOT</version>
- <relativePath>../../development/athena/org.eclipse.wst.xsl.releng</relativePath>
- </parent>
+<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.sourceediting</groupId>
+ <artifactId>org.eclipse.webtools.sourceediting.xsl</artifactId>
+ <version>3.5.0-SNAPSHOT</version>
+ <relativePath>../../</relativePath>
+ </parent>
-</project> \ No newline at end of file
+ <groupId>org.eclipse.webtools.sourceediting</groupId>
+ <artifactId>org.eclipse.wst.xsl</artifactId>
+ <version>1.2.0-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+ <name>XSL Tools Branding Plugin</name>
+</project>
diff --git a/docs/org.eclipse.wst.xsl.doc/build.properties b/docs/org.eclipse.wst.xsl.doc/build.properties
index 6cd5053..edd215c 100644
--- a/docs/org.eclipse.wst.xsl.doc/build.properties
+++ b/docs/org.eclipse.wst.xsl.doc/build.properties
@@ -6,4 +6,10 @@ bin.includes = plugin.xml,\
*.xml,\
about.html,\
plugin.properties
+src.includes = plugin.xml,\
+ plugin.properties,\
+ about.html,\
+ build.xml,\
+ html/,\
+ toc.xml
generateSourceBundle=false
diff --git a/docs/org.eclipse.wst.xsl.doc/pom.xml b/docs/org.eclipse.wst.xsl.doc/pom.xml
new file mode 100644
index 0000000..69091dc
--- /dev/null
+++ b/docs/org.eclipse.wst.xsl.doc/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.sourceediting</groupId>
+ <artifactId>org.eclipse.webtools.sourceediting.xsl</artifactId>
+ <version>3.5.0-SNAPSHOT</version>
+ <relativePath>../../</relativePath>
+ </parent>
+
+ <groupId>org.eclipse.webtools.sourceediting</groupId>
+ <artifactId>org.eclipse.wst.xsl.doc</artifactId>
+ <version>1.0.100-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+</project>
diff --git a/docs/org.eclipse.wst.xsl.sdk.documentation/pom.xml b/docs/org.eclipse.wst.xsl.sdk.documentation/pom.xml
new file mode 100644
index 0000000..dc145ed
--- /dev/null
+++ b/docs/org.eclipse.wst.xsl.sdk.documentation/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.sourceediting</groupId>
+ <artifactId>org.eclipse.webtools.sourceediting.xsl</artifactId>
+ <version>3.5.0-SNAPSHOT</version>
+ <relativePath>../../</relativePath>
+ </parent>
+
+ <groupId>org.eclipse.webtools.sourceediting</groupId>
+ <artifactId>org.eclipse.wst.xsl.sdk.documentation</artifactId>
+ <version>1.0.100-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+</project>
diff --git a/features/org.eclipse.wst.xsl.feature/pom.xml b/features/org.eclipse.wst.xsl.feature/pom.xml
index f29756d..fc0ee98 100644
--- a/features/org.eclipse.wst.xsl.feature/pom.xml
+++ b/features/org.eclipse.wst.xsl.feature/pom.xml
@@ -1,18 +1,68 @@
<?xml version="1.0" encoding="UTF-8"?>
-<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/maven-v4_0_0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.eclipse.wst.xsl</groupId>
- <artifactId>org.eclipse.wst.xsl.feature</artifactId>
- <packaging>eclipse-feature</packaging>
- <version>1.3.0-SNAPSHOT</version>
- <name>XSLT FeaturePlugin</name>
+<!--
+ Copyright (c) 2010, 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:
+ David Carver - Initial implementation
+ Thanh Ha (Eclipse Foundation) - CBI Webtools implementation
+-->
- <parent>
- <groupId>org.eclipse.wst.xsl</groupId>
- <artifactId>org.eclipse.wst.xsl-parent</artifactId>
- <version>1.2.0-SNAPSHOT</version>
- <relativePath>../../development/athena/org.eclipse.wst.xsl.releng</relativePath>
- </parent>
+<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.sourceediting</groupId>
+ <artifactId>org.eclipse.webtools.sourceediting.xsl</artifactId>
+ <version>3.5.0-SNAPSHOT</version>
+ <relativePath>../../</relativePath>
+ </parent>
+ <groupId>org.eclipse.webtools.sourceediting</groupId>
+ <artifactId>org.eclipse.wst.xsl.feature</artifactId>
+ <version>1.3.300-SNAPSHOT</version>
+ <packaging>eclipse-feature</packaging>
+ <name>XSLT FeaturePlugin</name>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.tycho.extras</groupId>
+ <artifactId>tycho-source-feature-plugin</artifactId>
+ <version>${tycho-extras.version}</version>
+ <executions>
+ <execution>
+ <id>source-feature</id>
+ <phase>package</phase>
+ <goals>
+ <goal>source-feature</goal>
+ </goals>
+ <configuration>
+ <excludes>
+ <plugin id="org.apache.xalan"/>
+ <plugin id="org.apache.xml.serializer"/>
+ </excludes>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-p2-plugin</artifactId>
+ <version>${tycho.version}</version>
+ <executions>
+ <execution>
+ <id>attach-p2-metadata</id>
+ <phase>package</phase>
+ <goals>
+ <goal>p2-metadata</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
</project>
diff --git a/features/org.eclipse.wst.xsl_sdk.feature/pom.xml b/features/org.eclipse.wst.xsl_sdk.feature/pom.xml
new file mode 100644
index 0000000..cd2e463
--- /dev/null
+++ b/features/org.eclipse.wst.xsl_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.sourceediting</groupId>
+ <artifactId>org.eclipse.webtools.sourceediting.xsl</artifactId>
+ <version>3.5.0-SNAPSHOT</version>
+ <relativePath>../../</relativePath>
+ </parent>
+
+ <groupId>org.eclipse.webtools.sourceediting</groupId>
+ <artifactId>org.eclipse.wst.xsl_sdk.feature</artifactId>
+ <version>1.1.400-SNAPSHOT</version>
+ <packaging>eclipse-feature</packaging>
+</project>
diff --git a/pom.xml b/pom.xml
new file mode 100644
index 0000000..9d96361
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,49 @@
+<?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.sourceediting</groupId>
+ <artifactId>org.eclipse.webtools.sourceediting.xsl</artifactId>
+ <version>3.5.0-SNAPSHOT</version>
+ <packaging>pom</packaging>
+
+ <modules>
+ <module>bundles/org.eclipse.wst.xsl</module>
+ <module>bundles/org.eclipse.wst.xsl.core</module>
+ <module>bundles/org.eclipse.wst.xsl.debug.ui</module>
+ <module>bundles/org.eclipse.wst.xsl.exslt.core</module>
+ <module>bundles/org.eclipse.wst.xsl.exslt.ui</module>
+ <module>bundles/org.eclipse.wst.xsl.jaxp.debug</module>
+ <module>bundles/org.eclipse.wst.xsl.jaxp.debug.ui</module>
+ <module>bundles/org.eclipse.wst.xsl.jaxp.launching</module>
+ <module>bundles/org.eclipse.wst.xsl.launching</module>
+ <module>bundles/org.eclipse.wst.xsl.saxon</module>
+ <module>bundles/org.eclipse.wst.xsl.ui</module>
+ <module>bundles/org.eclipse.wst.xsl.xalan</module>
+
+ <module>docs/org.eclipse.wst.xsl.doc</module>
+ <module>docs/org.eclipse.wst.xsl.sdk.documentation</module>
+
+ <module>features/org.eclipse.wst.xsl.feature</module>
+ <module>features/org.eclipse.wst.xsl_sdk.feature</module>
+ </modules>
+</project>

Back to the top