Skip to content

Commit

Permalink
pom.mxl and site.xml cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
hboutemy committed May 28, 2023
1 parent 62f50bc commit c083299
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 81 deletions.
85 changes: 4 additions & 81 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,17 @@ limitations under the License.

<name>Plexus XML Utilities</name>
<description>A collection of various utility classes to ease working with XML.</description>
<url>https://codehaus-plexus.github.io/plexus-xml/</url>

<scm>
<connection>scm:git:https://github.com/codehaus-plexus/plexus-xml.git</connection>
<developerConnection>${project.scm.connection}</developerConnection>
<tag>master</tag>
<url>https://github.com/codehaus-plexus/plexus-xml/tree/master/</url>
<url>https://github.com/codehaus-plexus/plexus-xml/tree/${project.scm.tag}/</url>
</scm>
<issueManagement>
<system>github</system>
<url>http://github.com/codehaus-plexus/plexus-xml/issues</url>
<url>https://github.com/codehaus-plexus/plexus-xml/issues</url>
</issueManagement>
<distributionManagement>
<site>
Expand All @@ -48,6 +49,7 @@ limitations under the License.

<properties>
<project.build.outputTimestamp>2023-05-22T15:08:30Z</project.build.outputTimestamp>
<javaVersion>8</javaVersion>
</properties>

<dependencies>
Expand Down Expand Up @@ -79,64 +81,14 @@ limitations under the License.
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.3.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.3.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<executions>
<execution>
<id>enforce-maven</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireMavenVersion>
<version>3.2.5</version>
<message>This project requires at least Maven 3.2.5</message>
</requireMavenVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<executions>
<execution>
<id>default-compile</id>
<goals>
<goal>compile</goal>
</goals>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-scm-publish-plugin</artifactId>
Expand Down Expand Up @@ -175,33 +127,4 @@ limitations under the License.
</plugin>
</plugins>
</build>

<profiles>
<profile>
<id>jdk9+</id>
<activation>
<jdk>[9,)</jdk>
</activation>
<build>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<executions>
<execution>
<id>compile-java-9</id>
<goals>
<goal>compile</goal>
</goals>
<configuration>
<release>8</release>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>
</profile>
</profiles>
</project>
5 changes: 5 additions & 0 deletions src/site/site.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@
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">
<body>
<breadcrumbs>
<item name="Plexus" href="https://codehaus-plexus.github.io/"/>
<item name="XML" href="https://codehaus-plexus.github.io/plexus-xml/"/>
</breadcrumbs>

<menu name="Overview">
<item name="Introduction" href="index.html"/>
<item name="JavaDocs" href="apidocs/index.html"/>
Expand Down

0 comments on commit c083299

Please sign in to comment.