Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrancois Le Fevre - CEA2015-08-03 14:11:06 +0000
committerBenoit Maggi2015-08-06 11:42:01 +0000
commit12f1208421389252ea096710456f86700583c3cf (patch)
treeed36ac570de91b90672d0eb093ca0a9951007e99
parentc8f3fc67198d0bb6e25f2f14648f74f29a4556b6 (diff)
downloadorg.eclipse.papyrus-sysml-12f1208421389252ea096710456f86700583c3cf.tar.gz
org.eclipse.papyrus-sysml-12f1208421389252ea096710456f86700583c3cf.tar.xz
org.eclipse.papyrus-sysml-12f1208421389252ea096710456f86700583c3cf.zip
Bug 474148 - [SysML 1.4] make a prototype for web site to incorporate
the screenshot taken by rcptt Change-Id: I7fa5f38e10cde3b92b80a10e16c7c0684ae14a26 Signed-off-by: Francois Le Fevre - CEA <francois.le-fevre@cea.fr>
-rw-r--r--pom.xml30
-rw-r--r--src/site/pdf/user-guide.pdf.xml1
-rw-r--r--src/site/resources/images/.gitignore1
-rw-r--r--src/site/xdoc/user/user-createsysmlproject.xml18
4 files changed, 47 insertions, 3 deletions
diff --git a/pom.xml b/pom.xml
index d757de76..8fecee0b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -247,7 +247,7 @@
<os>win32</os>
<ws>win32</ws>
<arch>x86_64</arch>
- </environment>
+ </environment>
<environment>
<os>linux</os>
<ws>gtk</ws>
@@ -257,7 +257,7 @@
<os>linux</os>
<ws>gtk</ws>
<arch>x86_64</arch>
- </environment>
+ </environment>
<environment>
<os>macosx</os>
<ws>cocoa</ws>
@@ -367,6 +367,29 @@
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-resources-plugin</artifactId>
+ <version>2.7</version>
+ <executions>
+ <execution>
+ <id>copy-resources</id>
+ <phase>pre-site</phase>
+ <goals>
+ <goal>copy-resources</goal>
+ </goals>
+ <configuration>
+ <outputDirectory>src/site/resources/images/rcptt-screenshots/</outputDirectory>
+ <resources>
+ <resource>
+ <directory>${user.home}/Documents/rcptt-screenshots/</directory>
+ <filtering>false</filtering>
+ </resource>
+ </resources>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.3</version>
<configuration>
@@ -453,7 +476,8 @@
</reporting>
</profile>
-
+
+ <!-- Have to be activated with profile documentation -->
<profile>
<id>documentation-pdf</id>
<activation>
diff --git a/src/site/pdf/user-guide.pdf.xml b/src/site/pdf/user-guide.pdf.xml
index cd2b533f..96ff1523 100644
--- a/src/site/pdf/user-guide.pdf.xml
+++ b/src/site/pdf/user-guide.pdf.xml
@@ -11,6 +11,7 @@
<toc name="Table of Contents">
<item name="Introduction" ref="index.html"/>
<item name="User" ref="user/home.html"/>
+ <item name="Project creation" ref="user/user-createsysmlproject.html"/>
</toc>
<cover>
diff --git a/src/site/resources/images/.gitignore b/src/site/resources/images/.gitignore
new file mode 100644
index 00000000..fd60c6fc
--- /dev/null
+++ b/src/site/resources/images/.gitignore
@@ -0,0 +1 @@
+/rcptt-screenshots/
diff --git a/src/site/xdoc/user/user-createsysmlproject.xml b/src/site/xdoc/user/user-createsysmlproject.xml
new file mode 100644
index 00000000..5fb473a8
--- /dev/null
+++ b/src/site/xdoc/user/user-createsysmlproject.xml
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<document xmlns="http://maven.apache.org/XDOC/2.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/XDOC/2.0 http://maven.apache.org/xsd/xdoc-2.0.xsd">
+
+ <properties>
+ <title>SysML - User</title>
+ </properties>
+
+ <body>
+ <section name="Create">
+ <p>section dedicated for </p>
+ <img src="../images/rcptt-screenshots/projectcreation-selectsysml14project.png.png" alt="creation menu"/>
+ </section>
+
+ </body>
+
+</document> \ No newline at end of file

Back to the top