Skip to content

Commit 1afe226

Browse files
committed
basic site configuration
1 parent a100311 commit 1afe226

File tree

2 files changed

+40
-0
lines changed

2 files changed

+40
-0
lines changed

pom.xml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,19 @@
2424
</site>
2525
</distributionManagement>
2626

27+
<reporting>
28+
<plugins>
29+
<plugin>
30+
<groupId>org.apache.maven.plugins</groupId>
31+
<artifactId>maven-javadoc-plugin</artifactId>
32+
<version>2.10.4</version>
33+
<configuration>
34+
...
35+
</configuration>
36+
</plugin>
37+
</plugins>
38+
</reporting>
39+
2740
<build>
2841
<plugins>
2942
<!-- other bits here -->

src/site/site.xml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<project xmlns="http://maven.apache.org/DECORATION/1.7.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
xsi:schemaLocation="http://maven.apache.org/DECORATION/1.7.0 http://maven.apache.org/xsd/decoration-1.7.0.xsd">
3+
4+
<bannerRight>
5+
<src>https://www.fossgalaxy.com/branding/logo.png</src>
6+
<alt>Group Logo</alt>
7+
<href>https://www.fossgalaxy.com</href>
8+
<width>120px</width>
9+
<title>A UnityCoders/FossGalaxy Project</title>
10+
</bannerRight>
11+
12+
<skin>
13+
<groupId>org.apache.maven.skins</groupId>
14+
<artifactId>maven-fluido-skin</artifactId>
15+
<version>1.5</version>
16+
</skin>
17+
18+
<body>
19+
<links>
20+
<item name="Home" href="https://www.fossgalaxy.com"/>
21+
<item name="Forums" href="https://community.fossgalaxy.com"/>
22+
</links>
23+
<menu ref="reports"/>
24+
<menu ref="modules"/>
25+
</body>
26+
27+
</project>

0 commit comments

Comments
 (0)