-
Notifications
You must be signed in to change notification settings - Fork 364
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change skin for mvn site report to use fluido (#731)
Close #734 * Change skin for mvn site report to use fluido, including custom OWASP image. * Remove 'https' changes from first line of pom per @kwwall request.
- Loading branch information
1 parent
49c5df7
commit d605ecc
Showing
3 changed files
with
40 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project name="${project.name}" xmlns="https://maven.apache.org/DECORATION/1.8.0" | ||
xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="https://maven.apache.org/DECORATION/1.8.0 https://maven.apache.org/xsd/decoration-1.8.0.xsd"> | ||
<bannerLeft> | ||
<src>/images/owasp.png</src> | ||
<href>https://owasp.org/www-project-enterprise-security-api/</href> | ||
</bannerLeft> | ||
<skin> | ||
<groupId>org.apache.maven.skins</groupId> | ||
<artifactId>maven-fluido-skin</artifactId> | ||
</skin> | ||
<custom> | ||
<fluidoSkin> | ||
<topBarEnabled>false</topBarEnabled> | ||
<sideBarEnabled>true</sideBarEnabled> | ||
</fluidoSkin> | ||
</custom> | ||
<body> | ||
<links> | ||
<item name="OWASP ESAPI" href="https://owasp.org/www-project-enterprise-security-api/" /> | ||
</links> | ||
<menu ref="reports" /> | ||
</body> | ||
</project> | ||
|