Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrancois Le Fevre - CEA2015-03-02 13:09:43 +0000
committerFrancois Le Fevre - CEA2015-03-18 08:30:04 +0000
commit5d2bdc64a2025503e67fcd77b8842eafe3224bc9 (patch)
tree89434a29c42031e4b841957bccd98d94409af01a /plugins/doc/org.eclipse.papyrus.uml.profile.assistants.doc/pom.xml
parenta361a9abe2128a152d46f491010fbb94d228b9cc (diff)
downloadorg.eclipse.papyrus-5d2bdc64a2025503e67fcd77b8842eafe3224bc9.tar.gz
org.eclipse.papyrus-5d2bdc64a2025503e67fcd77b8842eafe3224bc9.tar.xz
org.eclipse.papyrus-5d2bdc64a2025503e67fcd77b8842eafe3224bc9.zip
Bug 460946: [Releng] Integrate mediawiki/markdown doc generation in the
build - prototype setup for nattable documentation - application to all doc plugins - migration of org.eclipse.papyrus.infra.doc - ensuring binaries contain the generated documentation - typo in the resource definition - correction onf file path to toc due to renaming resource to eclipse-eclipse-help - correction of help path prefix path - application of conventions - correction on image names >actions linked to review by B. Maggi - nattable relinked doc - reconfigure layers.documentation - no indentation on relgen/top main pom Change-Id: I5fb7177965b6567811aaf32121406e707afb86c4 Signed-off-by: Francois Le Fevre - CEA <francois.le-fevre@cea.fr>
Diffstat (limited to 'plugins/doc/org.eclipse.papyrus.uml.profile.assistants.doc/pom.xml')
-rw-r--r--plugins/doc/org.eclipse.papyrus.uml.profile.assistants.doc/pom.xml34
1 files changed, 34 insertions, 0 deletions
diff --git a/plugins/doc/org.eclipse.papyrus.uml.profile.assistants.doc/pom.xml b/plugins/doc/org.eclipse.papyrus.uml.profile.assistants.doc/pom.xml
index f97756bff53..c55f70be75e 100644
--- a/plugins/doc/org.eclipse.papyrus.uml.profile.assistants.doc/pom.xml
+++ b/plugins/doc/org.eclipse.papyrus.uml.profile.assistants.doc/pom.xml
@@ -11,4 +11,38 @@
<groupId>org.eclipse.papyrus</groupId>
<version>1.1.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.mylyn.docs</groupId>
+ <artifactId>org.eclipse.mylyn.wikitext.core.maven</artifactId>
+ <configuration>
+ <sourceFolder>resource</sourceFolder>
+ <outputFolder>${project.build.directory}/generated-eclipse-help</outputFolder>
+ <!-- copyrightNotice>${help.copyrightNotice}</copyrightNotice> <title>${help.documentTitle}</title -->
+ <multipleOutputFiles>false</multipleOutputFiles>
+ <navigationImages>true</navigationImages>
+ <formatOutput>true</formatOutput>
+ <htmlFilenameFormat>$1.html</htmlFilenameFormat>
+ <xmlFilenameFormat>$1-toc.xml</xmlFilenameFormat>
+ <helpPrefix>target/generated-eclipse-help</helpPrefix>
+ <!-- stylesheetUrls> <param>styles/main.css</param> </stylesheetUrls -->
+ </configuration>
+ <executions>
+ <execution>
+ <goals>
+ <goal>eclipse-help</goal>
+ </goals>
+ </execution>
+ </executions>
+ <dependencies>
+ <dependency>
+ <groupId>org.eclipse.mylyn.docs</groupId>
+ <artifactId>org.eclipse.mylyn.wikitext.mediawiki.core</artifactId>
+ <version>${mylyn.wikitext.version}</version>
+ </dependency>
+ </dependencies>
+ </plugin>
+ </plugins>
+ </build>
</project> \ No newline at end of file

Back to the top