Skip to content
Snippets Groups Projects
Commit 2118477a authored by Nelson Tavares de Sousa's avatar Nelson Tavares de Sousa
Browse files

the site plugin is works recursive in the apt directory. The names and

the structure will be applied for the generated pages.
parent d770d7de
No related branches found
No related tags found
No related merge requests found
...@@ -24,6 +24,10 @@ ...@@ -24,6 +24,10 @@
</properties> </properties>
<distributionManagement> <distributionManagement>
<site>
<id>teetime.sf.net</id>
<url>scp://shell.sourceforge.net/home/project-web/teetime/htdocs</url>
</site>
<snapshotRepository> <snapshotRepository>
<id>teetime-deployment</id> <id>teetime-deployment</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url> <url>https://oss.sonatype.org/content/repositories/snapshots</url>
...@@ -264,7 +268,11 @@ ...@@ -264,7 +268,11 @@
<artifactId>maven-site-plugin</artifactId> <artifactId>maven-site-plugin</artifactId>
<version>3.3</version> <version>3.3</version>
<dependencies> <dependencies>
<dependency><!-- add support for ssh/scp -->
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ssh</artifactId>
<version>1.0</version>
</dependency>
<dependency> <dependency>
<groupId>lt.velykis.maven.skins</groupId> <groupId>lt.velykis.maven.skins</groupId>
<artifactId>reflow-velocity-tools</artifactId> <artifactId>reflow-velocity-tools</artifactId>
...@@ -295,17 +303,17 @@ ...@@ -295,17 +303,17 @@
</reportSet> </reportSet>
</reportSets> </reportSets>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId> <artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.1</version> <version>2.10.1</version>
<configuration> <configuration>
<!-- <stylesheetfile>${basedir}/src/main/javadoc/stylesheet.css</stylesheetfile> --> <!-- <stylesheetfile>${basedir}/src/main/javadoc/stylesheet.css</stylesheetfile> -->
<!-- <show>public</show> --> <!-- <show>public</show> -->
</configuration> </configuration>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.codehaus.mojo</groupId> <groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId> <artifactId>findbugs-maven-plugin</artifactId>
......
Tutorial
In the following links you can find tutorial to write your own analysis.
\ No newline at end of file
...@@ -6,12 +6,15 @@ ...@@ -6,12 +6,15 @@
<version>1.1.1</version> <version>1.1.1</version>
</skin> </skin>
<body> <body>
<menu name="Tutorial">
<item name="Starting" href="tutorial/index.html"/>
</menu>
<menu name="Documentation"> <menu name="Documentation">
<item name="JavaDoc" href="apidocs/index.html" /> <item name="JavaDoc" href="apidocs/index.html" />
<item name="Dependencies" href="dependencies.html"/> <item name="Dependencies" href="dependencies.html"/>
</menu> </menu>
<menu name="About"> <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="License" href="license.html"/>
<item name="Team" href="team-list.html"/> <item name="Team" href="team-list.html"/>
</menu> </menu>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment