Issue #3247 Generate jetty-maven-plugin website
Signed-off-by: olivier lamy <oliver.lamy@gmail.com>
This commit is contained in:
parent
a6c626a891
commit
9e634feed2
|
@ -244,16 +244,42 @@
|
||||||
<reportSets>
|
<reportSets>
|
||||||
<reportSet>
|
<reportSet>
|
||||||
<reports>
|
<reports>
|
||||||
<report>project-team</report>
|
<report>team</report>
|
||||||
<report>mailing-list</report>
|
<report>mailing-lists</report>
|
||||||
<report>cim</report>
|
<report>ci-management</report>
|
||||||
<report>issue-tracking</report>
|
<report>issue-management</report>
|
||||||
<report>license</report>
|
<report>licenses</report>
|
||||||
<report>scm</report>
|
<report>scm</report>
|
||||||
</reports>
|
</reports>
|
||||||
</reportSet>
|
</reportSet>
|
||||||
</reportSets>
|
</reportSets>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-plugin-plugin</artifactId>
|
||||||
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
</reporting>
|
</reporting>
|
||||||
|
<profiles>
|
||||||
|
<profile>
|
||||||
|
<id>site-jar</id>
|
||||||
|
<build>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-site-plugin</artifactId>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>site-jar</id>
|
||||||
|
<goals>
|
||||||
|
<goal>jar</goal>
|
||||||
|
</goals>
|
||||||
|
<phase>package</phase>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
</profile>
|
||||||
|
</profiles>
|
||||||
</project>
|
</project>
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
Eclipse Jetty Maven Plugin
|
||||||
|
========================
|
||||||
|
|
||||||
|
Bla Bla bla Bla Bla bla Bla Bla bla
|
|
@ -0,0 +1,44 @@
|
||||||
|
<?xml version="1.0" encoding="ISO-8859-1"?>
|
||||||
|
|
||||||
|
<project xmlns="http://maven.apache.org/DECORATION/1.0.0"
|
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
|
xsi:schemaLocation="http://maven.apache.org/DECORATION/1.0.0 http://maven.apache.org/xsd/decoration-1.0.0.xsd">
|
||||||
|
|
||||||
|
<bannerLeft>
|
||||||
|
<name>${project.name}</name>
|
||||||
|
<src>https://www.eclipse.org/jetty/images/jetty-logo-80x22.png</src>
|
||||||
|
<href>https://eclipse.org/jetty/</href>
|
||||||
|
</bannerLeft>
|
||||||
|
<bannerRight>
|
||||||
|
<src>https://www.eclipse.org/eclipse.org-common/themes/solstice/public/images/logo/eclipse-426x100.png</src>
|
||||||
|
</bannerRight>
|
||||||
|
|
||||||
|
<skin>
|
||||||
|
<groupId>org.apache.maven.skins</groupId>
|
||||||
|
<artifactId>maven-fluido-skin</artifactId>
|
||||||
|
<version>1.7</version>
|
||||||
|
</skin>
|
||||||
|
|
||||||
|
<custom>
|
||||||
|
<fluidoSkin>
|
||||||
|
<topBarEnabled>true</topBarEnabled>
|
||||||
|
<sideBarEnabled>true</sideBarEnabled>
|
||||||
|
<googleSearch>
|
||||||
|
<sitesearch>${project.url}</sitesearch>
|
||||||
|
</googleSearch>
|
||||||
|
<gitHub>
|
||||||
|
<projectId>eclipse/jetty.project</projectId>
|
||||||
|
<ribbonOrientation>right</ribbonOrientation>
|
||||||
|
<ribbonColor>gray</ribbonColor>
|
||||||
|
</gitHub>
|
||||||
|
</fluidoSkin>
|
||||||
|
</custom>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<menu name="Overview">
|
||||||
|
<item name="Introduction" href="index.html"/>
|
||||||
|
</menu>
|
||||||
|
<menu ref="reports" inherit="bottom"/>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</project>
|
Loading…
Reference in New Issue