Skip to content

Commit

Permalink
updated mvn site
Browse files Browse the repository at this point in the history
  • Loading branch information
phasenraum2010 committed Feb 4, 2016
1 parent 99e8f4e commit ddad0bc
Show file tree
Hide file tree
Showing 4 changed files with 64 additions and 7 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ JSF with Java EE 7 Version of Spring Petclinic

Running on OpenShift: http://javaee7petclinic-port80guru.rhcloud.com/

Blog: http://thomas-woehlke.blogspot.de/2014/02/java-ee-7-petclinic.html

## install JBoss Wildfly ##

install JBoss Wildfly 8.2.1.Final from http://wildfly.org/downloads/ to e.g. /Users/tw/srv/wildfly-8.2.1.Final/
Expand Down
15 changes: 14 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>org.woehlke</groupId>
<artifactId>javaee7-petclinic</artifactId>
<packaging>war</packaging>
<version>1.0</version>
<version>1.3-SNAPSHOT</version>
<name>javaee7-petclinic</name>

<url>http://www.thomas-woehlke.de/p/javaee7-petclinic</url>
Expand Down Expand Up @@ -634,6 +634,19 @@
<outputDirectory>target/site</outputDirectory>
<generateReports>true</generateReports>
</configuration>
<dependencies>
<dependency>
<groupId>lt.velykis.maven.skins</groupId>
<artifactId>reflow-velocity-tools</artifactId>
<version>1.1.1</version>
</dependency>
<!-- Reflow skin requires Velocity >= 1.7 -->
<dependency>
<groupId>org.apache.velocity</groupId>
<artifactId>velocity</artifactId>
<version>1.7</version>
</dependency>
</dependencies>
</plugin>

<!-- The JBoss AS plugin deploys your war to a local JBoss AS container -->
Expand Down
4 changes: 3 additions & 1 deletion src/site/apt/index.apt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ JavaEE7 Petclinic

Github: {{https://github.com/phasenraum2010/javaee7-petclinic}}

OpenShift: {{http://wildfly8-javaee7petclinic.rhcloud.com/}}
OpenShift: {{http://javaee7petclinic-port80guru.rhcloud.com/}}

Blog: {{http://thomas-woehlke.blogspot.de/2014/02/java-ee-7-petclinic.html}}

* Motivation

Expand Down
50 changes: 45 additions & 5 deletions src/site/site.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,15 @@
xsi:schemaLocation="http://maven.apache.org/DECORATION/1.0.0
http://maven.apache.org/xsd/decoration-1.0.0.xsd">
<skin>
<groupId>org.apache.maven.skins</groupId>
<artifactId>maven-classic-skin</artifactId>
<version>1.1</version>
<groupId>lt.velykis.maven.skins</groupId>
<artifactId>reflow-maven-skin</artifactId>
<version>1.1.1</version>
</skin>
<!-- http://andriusvelykis.github.io/reflow-maven-skin/skin/ -->
<bannerLeft>
<name>JEE6 Petclinic</name>
<name>Java EE 7 Petclinic</name>
<src>/images/phasenraum_logo.gif</src>
<href>http://www.thomas-woehlke.de/p/jee6-petclinic/</href>
<href>http://www.thomas-woehlke.de/p/javaee7-petclinic/</href>
</bannerLeft>
<body>
<menu ref="parent"/>
Expand All @@ -23,4 +24,43 @@
<logo name="Maven" href="http://maven.apache.org/"
img="http://maven.apache.org/images/logos/maven-feather.png"/>
</poweredBy>
<custom>
<reflowSkin>
<theme>bootswatch-spacelab</theme>
<highlightJs>true</highlightJs>
<brand>
<name>Java EE 7 Petclinic</name>
<href>https://github.com/phasenraum2010/javaee7-petclinic</href>
</brand>
<slogan>The Java EE 7 Migration of Spring Petclinic</slogan>
<titleTemplate>%2$s | %1$s</titleTemplate>
<toc>top</toc>
<topNav>Download|reports</topNav>
<bottomNav>
<column>Main|Download</column>
<column>Documentation</column>
<column>reports|modules</column>
</bottomNav>
<bottomDescription>
The Java EE 7 Migration of Spring Petclinic
</bottomDescription>
<pages>
<index project="project-id">
<shortTitle>Welcome</shortTitle>
<breadcrumbs>true</breadcrumbs>
<toc>true</toc>
<sections>
<carousel />
<body />
<sidebar />
<thumbs>2</thumbs>
<columns>3</columns>
</sections>
</index>
<developer-info>
<toc>sidebar</toc>
</developer-info>
</pages>
</reflowSkin>
</custom>
</project>

0 comments on commit ddad0bc

Please sign in to comment.