Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.gitignore3
-rw-r--r--features/org.eclipse.jst.jsf.doc.feature/pom.xml27
-rw-r--r--plugins/org.eclipse.jst.jsf.doc.dev/build.properties10
-rw-r--r--plugins/org.eclipse.jst.jsf.doc.dev/pom.xml27
-rw-r--r--plugins/org.eclipse.jst.jsf.doc.user/build.properties13
-rw-r--r--plugins/org.eclipse.jst.jsf.doc.user/pom.xml27
-rw-r--r--pom.xml34
7 files changed, 141 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index 092357e..96b729c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,4 @@
bin
+
+# maven
+target/
diff --git a/features/org.eclipse.jst.jsf.doc.feature/pom.xml b/features/org.eclipse.jst.jsf.doc.feature/pom.xml
new file mode 100644
index 0000000..f6375dc
--- /dev/null
+++ b/features/org.eclipse.jst.jsf.doc.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.jsf</groupId>
+ <artifactId>org.eclipse.webtools.jsf.docs</artifactId>
+ <version>3.5.0-SNAPSHOT</version>
+ <relativePath>../../</relativePath>
+ </parent>
+
+ <groupId>org.eclipse.webtools.jsf</groupId>
+ <artifactId>org.eclipse.jst.jsf.doc.feature</artifactId>
+ <version>2.3.0-SNAPSHOT</version>
+ <packaging>eclipse-feature</packaging>
+</project>
diff --git a/plugins/org.eclipse.jst.jsf.doc.dev/build.properties b/plugins/org.eclipse.jst.jsf.doc.dev/build.properties
index b5fc44e..3055c85 100644
--- a/plugins/org.eclipse.jst.jsf.doc.dev/build.properties
+++ b/plugins/org.eclipse.jst.jsf.doc.dev/build.properties
@@ -19,3 +19,13 @@ bin.includes = META-INF/,\
about.html,\
topics_ExtPoint_Reference.xml,\
javadoctoc.xml
+src.includes = about.html,\
+ plugin.properties,\
+ plugin.xml,\
+ html/,\
+ toc.xml,\
+ tocprogrammersguide.xml,\
+ tocreference.xml,\
+ toctutorials.xml,\
+ topics_ExtPoint_Reference.xml,\
+ javadoctoc.xml
diff --git a/plugins/org.eclipse.jst.jsf.doc.dev/pom.xml b/plugins/org.eclipse.jst.jsf.doc.dev/pom.xml
new file mode 100644
index 0000000..5a1c215
--- /dev/null
+++ b/plugins/org.eclipse.jst.jsf.doc.dev/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.jsf</groupId>
+ <artifactId>org.eclipse.webtools.jsf.docs</artifactId>
+ <version>3.5.0-SNAPSHOT</version>
+ <relativePath>../../</relativePath>
+ </parent>
+
+ <groupId>org.eclipse.webtools.jsf</groupId>
+ <artifactId>org.eclipse.jst.jsf.doc.dev</artifactId>
+ <version>1.4.0-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+</project>
diff --git a/plugins/org.eclipse.jst.jsf.doc.user/build.properties b/plugins/org.eclipse.jst.jsf.doc.user/build.properties
index a2d50e9..5c48764 100644
--- a/plugins/org.eclipse.jst.jsf.doc.user/build.properties
+++ b/plugins/org.eclipse.jst.jsf.doc.user/build.properties
@@ -17,3 +17,16 @@ bin.includes = plugin.xml,\
images/,\
plugin.properties,\
about.html
+src.includes = about.html,\
+ plugin.properties,\
+ plugin.xml,\
+ book.css,\
+ build.xml,\
+ facesconfig_ui_contexts.xml,\
+ html/,\
+ images/,\
+ toc.xml,\
+ tocconcepts.xml,\
+ tocgettingstarted.xml,\
+ tocreference.xml,\
+ toctasks.xml
diff --git a/plugins/org.eclipse.jst.jsf.doc.user/pom.xml b/plugins/org.eclipse.jst.jsf.doc.user/pom.xml
new file mode 100644
index 0000000..82f315e
--- /dev/null
+++ b/plugins/org.eclipse.jst.jsf.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.jsf</groupId>
+ <artifactId>org.eclipse.webtools.jsf.docs</artifactId>
+ <version>3.5.0-SNAPSHOT</version>
+ <relativePath>../../</relativePath>
+ </parent>
+
+ <groupId>org.eclipse.webtools.jsf</groupId>
+ <artifactId>org.eclipse.jst.jsf.doc.user</artifactId>
+ <version>1.4.0-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+</project>
diff --git a/pom.xml b/pom.xml
new file mode 100644
index 0000000..561bbed
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,34 @@
+<?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.jsf</groupId>
+ <artifactId>org.eclipse.webtools.jsf.docs</artifactId>
+ <version>3.5.0-SNAPSHOT</version>
+ <packaging>pom</packaging>
+
+ <modules>
+ <module>features/org.eclipse.jst.jsf.doc.feature</module>
+ <module>plugins/org.eclipse.jst.jsf.doc.dev</module>
+ <module>plugins/org.eclipse.jst.jsf.doc.user</module>
+ </modules>
+</project>

Back to the top