Repository: juddi Updated Branches: refs/heads/bug/JUDDI-975 [created] 8dbf6fa47
JUDDI-975 resolves issues mvn site Project: http://git-wip-us.apache.org/repos/asf/juddi/repo Commit: http://git-wip-us.apache.org/repos/asf/juddi/commit/8dbf6fa4 Tree: http://git-wip-us.apache.org/repos/asf/juddi/tree/8dbf6fa4 Diff: http://git-wip-us.apache.org/repos/asf/juddi/diff/8dbf6fa4 Branch: refs/heads/bug/JUDDI-975 Commit: 8dbf6fa47058e84f36ecab1775e31fc09005cbde Parents: 716e5fe Author: Alex O'Ree <[email protected]> Authored: Sat Sep 23 11:35:38 2017 -0400 Committer: Alex O'Ree <[email protected]> Committed: Sat Sep 23 11:35:38 2017 -0400 ---------------------------------------------------------------------- juddi-gui/pom.xml | 20 ++------------------ pom.xml | 12 +++++++++++- src/site/site.xml | 42 +++++++++++++++++++++++++++++------------- 3 files changed, 42 insertions(+), 32 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/juddi/blob/8dbf6fa4/juddi-gui/pom.xml ---------------------------------------------------------------------- diff --git a/juddi-gui/pom.xml b/juddi-gui/pom.xml index 268110e..ab8b04b 100644 --- a/juddi-gui/pom.xml +++ b/juddi-gui/pom.xml @@ -86,7 +86,7 @@ language governing permissions and * limitations under the License. * */ --> <executions> <execution> <id>copy</id> - <phase>compile</phase> + <phase>package</phase> <goals> <goal>copy</goal> </goals> @@ -106,23 +106,7 @@ language governing permissions and * limitations under the License. * */ --> </executions> </plugin> - <!-- precompile the jsp files for speed and error catching at build time --> - <plugin> - <groupId>org.apache.sling</groupId> - <artifactId>maven-jspc-plugin</artifactId> - <executions> - <execution> - <id>compile-jsp</id> - <goals> - <goal>jspc</goal> - </goals> - </execution> - </executions> - <configuration> - <sourceDirectory>${project.build.directory}/juddi-gui</sourceDirectory> - <outputDirectory>${project.build.directory}/juddi-gui-precompiled</outputDirectory> - </configuration> - </plugin> + </plugins> http://git-wip-us.apache.org/repos/asf/juddi/blob/8dbf6fa4/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index a2b1559..062de3d 100644 --- a/pom.xml +++ b/pom.xml @@ -243,7 +243,7 @@ under the License. <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> - <version>3.5.1</version> + <version>3.6</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> @@ -365,6 +365,16 @@ under the License. </reportSet> </reportSets> </plugin> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>findbugs-maven-plugin</artifactId> + <version>3.0.5</version> + <configuration> + <xmlOutput>true</xmlOutput> + <!-- Optional directory to put findbugs xdoc xml report --> + <xmlOutputDirectory>target/site</xmlOutputDirectory> + </configuration> + </plugin> </plugins> </reporting> <modules> http://git-wip-us.apache.org/repos/asf/juddi/blob/8dbf6fa4/src/site/site.xml ---------------------------------------------------------------------- diff --git a/src/site/site.xml b/src/site/site.xml index e5c3393..dc158c2 100644 --- a/src/site/site.xml +++ b/src/site/site.xml @@ -28,14 +28,30 @@ <bannerRight> <src>images/juddi.gif</src> </bannerRight> - <skin> - <groupId>org.apache.juddi</groupId> - <artifactId>juddi-site-style</artifactId> - <version>1.0</version> - </skin> + <skin> + <groupId>org.apache.maven.skins</groupId> + <artifactId>maven-fluido-skin</artifactId> + <version>1.6</version> + </skin> <publishDate format="dd MMM yyyy" position="right"/> - + <custom> + <fluidoSkin> + <googleSearch> + <sitesearch/> + </googleSearch> + <sourceLineNumbersEnabled>true</sourceLineNumbersEnabled> + <gitHub> + <projectId>apache/maven-skins</projectId> + <ribbonOrientation>right</ribbonOrientation> + <ribbonColor>black</ribbonColor> + </gitHub> + <topBarEnabled>false</topBarEnabled> + <sideBarEnabled>true</sideBarEnabled> + </fluidoSkin> + </custom> + + <body> <breadcrumbs> <item name="Apache" href="http://www.apache.org/"/> @@ -47,7 +63,7 @@ <item name="Releases" href="releases.html"/> <item name="Source Code" href="source-repository.html"/> </item> - <item name="Participation" href="participate.html" description="Participation"/> + <item name="Participation" href="participate.html" /> <item name="Documentation"> <item name="jUDDI Docs" href="docs.html"/> <item name="Wiki" href="http://wiki.apache.org/juddi"/> @@ -66,14 +82,14 @@ <item name="Project Summary" href="project-summary.html"/> </item> <item name="Subprojects"> - <item name="Apache Scout" href="http://juddi.apache.org/scout/" description="Apache Scout"/> + <item name="Apache Scout" href="http://juddi.apache.org/scout/" /> </item> <item name="Misc"> - <item name="Who We Are" href="who.html" description="Who We Are"/> - <item name="Committer Notes" href="committers.html" description="Committer Notes"/> - <item name="Sponsors" href="thanks.html" description="Thank you"/> - <item name="Legal" href="legal.html" description="Legal Stuff"/> - <item name="License" href="license.html" description="Apache 2.0 License"/> + <item name="Who We Are" href="who.html"/> + <item name="Committer Notes" href="committers.html" /> + <item name="Sponsors" href="thanks.html"/> + <item name="Legal" href="legal.html" /> + <item name="License" href="license.html" /> </item> </menu> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
