diff --git a/pom.xml b/pom.xml index 7076276cad7b554533ac62724cb80fb6cdd68f18..9dbfd319a4394535c78433ff6e437c02e763120c 100644 --- a/pom.xml +++ b/pom.xml @@ -24,6 +24,10 @@ </properties> <distributionManagement> + <site> + <id>teetime.sf.net</id> + <url>scp://shell.sourceforge.net/home/project-web/teetime/htdocs</url> + </site> <snapshotRepository> <id>teetime-deployment</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> @@ -264,7 +268,11 @@ <artifactId>maven-site-plugin</artifactId> <version>3.3</version> <dependencies> - + <dependency><!-- add support for ssh/scp --> + <groupId>org.apache.maven.wagon</groupId> + <artifactId>wagon-ssh</artifactId> + <version>1.0</version> + </dependency> <dependency> <groupId>lt.velykis.maven.skins</groupId> <artifactId>reflow-velocity-tools</artifactId> @@ -295,17 +303,17 @@ </reportSet> </reportSets> </plugin> - + <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.1</version> <configuration> -<!-- <stylesheetfile>${basedir}/src/main/javadoc/stylesheet.css</stylesheetfile> --> -<!-- <show>public</show> --> + <!-- <stylesheetfile>${basedir}/src/main/javadoc/stylesheet.css</stylesheetfile> --> + <!-- <show>public</show> --> </configuration> </plugin> - + <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>findbugs-maven-plugin</artifactId> diff --git a/src/site/apt/tutorial/index.apt b/src/site/apt/tutorial/index.apt new file mode 100644 index 0000000000000000000000000000000000000000..352c99d807cb11f4be044514e2ac24a03a5500f4 --- /dev/null +++ b/src/site/apt/tutorial/index.apt @@ -0,0 +1,3 @@ +Tutorial + + In the following links you can find tutorial to write your own analysis. \ No newline at end of file diff --git a/src/site/site.xml b/src/site/site.xml index 5a0501bbe7d5e255dd594fdb8d7fac5ea40a46b9..56403c40ba0b3fee51c45e1ce64d4d8a12b86010 100644 --- a/src/site/site.xml +++ b/src/site/site.xml @@ -6,12 +6,15 @@ <version>1.1.1</version> </skin> <body> + <menu name="Tutorial"> + <item name="Starting" href="tutorial/index.html"/> + </menu> <menu name="Documentation"> <item name="JavaDoc" href="apidocs/index.html" /> <item name="Dependencies" href="dependencies.html"/> </menu> <menu name="About"> - <item name="How to get it" href="dependency-info.html"/> + <item name="Dependency Information" href="dependency-info.html"/> <item name="License" href="license.html"/> <item name="Team" href="team-list.html"/> </menu>