Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 22 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@
<version>4.0.2-SNAPSHOT</version>

<name>GlassFishBuild Maven Plugin</name>
<description>
GlassFish Build Maven Plugin contains goals that help with Eclipse GlassFish build.
</description>
<url>https://github.com/eclipse-ee4j/glassfish-build-maven-plugin</url>

<issueManagement>
Expand Down Expand Up @@ -62,10 +65,10 @@
</licenses>

<scm>
<connection>scm:git:git://github.com/eclipse-ee4j/glassfish-build-maven-plugin.git</connection>
<developerConnection>scm:git:git://github.com/eclipse-ee4j/glassfish-build-maven-plugin.git</developerConnection>
<url>https://github.com/eclipse-ee4j/glassfish-build-maven-plugin</url>
<tag>HEAD</tag>
<connection>scm:git:git://github.com/eclipse-ee4j/glassfish-build-maven-plugin.git</connection>
<developerConnection>scm:git:git://github.com/eclipse-ee4j/glassfish-build-maven-plugin.git</developerConnection>
<url>https://github.com/eclipse-ee4j/glassfish-build-maven-plugin</url>
<tag>HEAD</tag>
</scm>

<prerequisites>
Expand Down Expand Up @@ -168,6 +171,11 @@
<artifactId>maven-surefire-plugin</artifactId>
<version>3.5.3</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.21.0</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
Expand Down Expand Up @@ -289,4 +297,14 @@
<scope>test</scope>
</dependency>
</dependencies>

<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-report-plugin</artifactId>
<version>3.15.1</version>
</plugin>
</plugins>
</reporting>
</project>
14 changes: 14 additions & 0 deletions src/site/site.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<project>
<skin>
<groupId>org.apache.maven.skins</groupId>
<artifactId>maven-fluido-skin</artifactId>
<version>2.1.0</version>
</skin>
<body>
<menu name="Overview">
<item name="Introduction" href="index.html"/>
<item name="Goals" href="plugin-info.html"/>
</menu>
</body>
</project>