Skip to content

Commit

Permalink
Merge pull request #36 from ebarboni/mavensite
Browse files Browse the repository at this point in the history
better rendering for site
  • Loading branch information
ebarboni committed Jul 27, 2023
2 parents 8f80806 + 3edb8e3 commit 4b077ef
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 1 deletion.
6 changes: 5 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ under the License.
<packaging>jar</packaging>

<name>Apache NetBeans NBPackage</name>
<url>https://netbeans.apache.org</url>
<url>https://bits.netbeans.org/nbpackage/</url>
<description>Apache NetBeans packaging utility.</description>

<scm>
Expand Down Expand Up @@ -213,6 +213,7 @@ under the License.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>4.0.0-M9</version>
<configuration>
<topSiteURL>${project.distributionManagement.site.url}</topSiteURL>
</configuration>
Expand All @@ -237,5 +238,8 @@ under the License.
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<junit.jupiter.version>5.9.3</junit.jupiter.version>
<skin.groupId>org.apache.maven.skins</skin.groupId>
<skin.artifactId>maven-fluido-skin</skin.artifactId>
<skin.version>2.0.0-M6</skin.version>
</properties>
</project>
42 changes: 42 additions & 0 deletions src/site/site.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
<?xml version="1.0" encoding="ISO-8859-1"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->
<project xmlns="http://maven.apache.org/DECORATION/1.8.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/DECORATION/1.8.0 https://maven.apache.org/xsd/decoration-1.8.0.xsd" combine.self="override">
<skin>
<groupId>${skin.groupId}</groupId>
<artifactId>${skin.artifactId}</artifactId>
<version>${skin.version}</version>
</skin>
<publishDate position="none"/>
<version position="none"/>
<body>
<menu>
<item name="Apache NetBeans home" href="https://netbeans.apache.org "/>
</menu>
<menu ref="reports" />
</body>
<custom>
<fluidoSkin>
<skipGenerationDate>true</skipGenerationDate>
<gitHub>
<projectId>apache/netbeans-nbpackage</projectId>
<ribbonOrientation>right</ribbonOrientation>
<ribbonColor>black</ribbonColor>
</gitHub>
</fluidoSkin>
</custom>
</project>

0 comments on commit 4b077ef

Please sign in to comment.