Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMikaël Barbero2014-01-22 18:45:04 +0000
committerMikaël Barbero2014-01-22 19:06:27 +0000
commit1a9a5420f3eed2404bf2bc400d1558e1cce01780 (patch)
treebd802f5b0350d2f40e7f241ffcf4a09dc74410cd /plugins
parentd1a652543f75ab9ccf47b84a56b6766b19865b54 (diff)
downloadorg.eclipse.emf.compare-1a9a5420f3eed2404bf2bc400d1558e1cce01780.tar.gz
org.eclipse.emf.compare-1a9a5420f3eed2404bf2bc400d1558e1cce01780.tar.xz
org.eclipse.emf.compare-1a9a5420f3eed2404bf2bc400d1558e1cce01780.zip
Get ride of the need of the PLACEHOLDER file in the help folder
Diffstat (limited to 'plugins')
-rw-r--r--plugins/org.eclipse.emf.compare.doc/build.properties10
-rw-r--r--plugins/org.eclipse.emf.compare.doc/help/PLACEHOLDER0
-rw-r--r--plugins/org.eclipse.emf.compare.doc/plugin.xml5
-rw-r--r--plugins/org.eclipse.emf.compare.doc/pom.xml31
4 files changed, 34 insertions, 12 deletions
diff --git a/plugins/org.eclipse.emf.compare.doc/build.properties b/plugins/org.eclipse.emf.compare.doc/build.properties
index 72f3ca9be..74cfcbb68 100644
--- a/plugins/org.eclipse.emf.compare.doc/build.properties
+++ b/plugins/org.eclipse.emf.compare.doc/build.properties
@@ -8,8 +8,8 @@
# Contributors:
# Obeo - initial API and implementation
#################################################################################
-src.includes = help/,\
- plugin.xml
-bin.includes = help/,\
- plugin.xml,\
- META-INF/
+bin.includes = META-INF/,\
+ plugin.properties,\
+ about.html
+src.includes = src/,\
+ about.html
diff --git a/plugins/org.eclipse.emf.compare.doc/help/PLACEHOLDER b/plugins/org.eclipse.emf.compare.doc/help/PLACEHOLDER
deleted file mode 100644
index e69de29bb..000000000
--- a/plugins/org.eclipse.emf.compare.doc/help/PLACEHOLDER
+++ /dev/null
diff --git a/plugins/org.eclipse.emf.compare.doc/plugin.xml b/plugins/org.eclipse.emf.compare.doc/plugin.xml
deleted file mode 100644
index 034b0ea6d..000000000
--- a/plugins/org.eclipse.emf.compare.doc/plugin.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-<?xml version='1.0' encoding='UTF-8' ?>
-<?eclipse version="3.2"?>
-
-<plugin>
-</plugin> \ No newline at end of file
diff --git a/plugins/org.eclipse.emf.compare.doc/pom.xml b/plugins/org.eclipse.emf.compare.doc/pom.xml
index 56034b108..45744e455 100644
--- a/plugins/org.eclipse.emf.compare.doc/pom.xml
+++ b/plugins/org.eclipse.emf.compare.doc/pom.xml
@@ -25,12 +25,39 @@
<packaging>eclipse-plugin</packaging>
<build>
- <plugins>
+ <plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
- <artifactId>tycho-source-plugin</artifactId>
+ <artifactId>tycho-packaging-plugin</artifactId>
+ <configuration>
+ <!--
+ As the the help folder and the plugin.xml will be generated @ build time
+ by the o.e.e.c.gendoc WikitexToHTML tool, we can not use the build.properties
+ file to specify its inclusion, it would lead to warnings during the PDE build
+ in the Eclipse workspace. We better include it with the following directive.
+ -->
+ <additionalFileSets>
+ <fileSet>
+ <directory>${project.basedir}/help</directory>
+ <prefix>help/</prefix>
+ <includes>
+ <include>**/*</include>
+ </includes>
+ </fileSet>
+ <fileSet>
+ <directory>${project.basedir}</directory>
+ <includes>
+ <include>plugin.xml</include>
+ </includes>
+ </fileSet>
+ </additionalFileSets>
+ </configuration>
</plugin>
<plugin>
+ <!--
+ Run the org.e.e.c.gendoc WikitTextToHTML tool to generate Eclipse help and
+ website HTML documentation.
+ -->
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.2.1</version>

Back to the top