Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicolas FAUVERGUE2018-06-27 15:41:06 +0000
committerNicolas FAUVERGUE2018-07-02 08:22:55 +0000
commit93d12bb72802f36f0e2f5a8855d4626cb434824f (patch)
treeb2a21cd12103db61232a00825170a51b38a009de /plugins/doc/org.eclipse.papyrus.infra.services.decoration.doc/pom.xml
parent93e5063f6098c0d296640c0b3df7abde03417ad5 (diff)
downloadorg.eclipse.papyrus-93d12bb72802f36f0e2f5a8855d4626cb434824f.tar.gz
org.eclipse.papyrus-93d12bb72802f36f0e2f5a8855d4626cb434824f.tar.xz
org.eclipse.papyrus-93d12bb72802f36f0e2f5a8855d4626cb434824f.zip
Bug 479970 - [Doc] Decoration Service framework shall provide
documentation and example https://bugs.eclipse.org/bugs/show_bug.cgi?id=479970 -Example for decoration service, Shape provider and GMF decorator. see https://wiki.eclipse.org/Manage_Decorators_On_Papyrus -add wizard to import project Change-Id: I5186cebaf00dd0f34fb195279b322f460dab46d6 Signed-off-by: Mickael ADAM <mickael.adam@ALL4TEC.net> Signed-off-by: Nicolas FAUVERGUE <nicolas.fauvergue@cea.fr>
Diffstat (limited to 'plugins/doc/org.eclipse.papyrus.infra.services.decoration.doc/pom.xml')
-rw-r--r--plugins/doc/org.eclipse.papyrus.infra.services.decoration.doc/pom.xml51
1 files changed, 51 insertions, 0 deletions
diff --git a/plugins/doc/org.eclipse.papyrus.infra.services.decoration.doc/pom.xml b/plugins/doc/org.eclipse.papyrus.infra.services.decoration.doc/pom.xml
new file mode 100644
index 00000000000..ec4a51ddbaf
--- /dev/null
+++ b/plugins/doc/org.eclipse.papyrus.infra.services.decoration.doc/pom.xml
@@ -0,0 +1,51 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project>
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <artifactId>org.eclipse.papyrus.plugins-doc</artifactId>
+ <groupId>org.eclipse.papyrus</groupId>
+ <version>0.0.1-SNAPSHOT</version>
+ </parent>
+ <artifactId>org.eclipse.papyrus.infra.services.decoration.doc</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.mylyn.docs</groupId>
+ <artifactId>org.eclipse.mylyn.wikitext.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</artifactId>
+ <version>${mylyn.wikitext.version}</version>
+ </dependency>
+ </dependencies>
+ </plugin>
+ </plugins>
+ </build>
+ <name>Papyrus Infra Service decoration doc</name>
+</project> \ No newline at end of file

Back to the top