Skip to content
This repository has been archived by the owner on Dec 23, 2023. It is now read-only.

Commit

Permalink
Update to Parent pom 15
Browse files Browse the repository at this point in the history
  • Loading branch information
slachiewicz committed Oct 3, 2023
1 parent 96a68ac commit 2c9bc86
Showing 1 changed file with 18 additions and 43 deletions.
61 changes: 18 additions & 43 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
<?xml version="1.0"?>

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<artifactId>plexus-components</artifactId>
<groupId>org.codehaus.plexus</groupId>
<version>10.0</version>
<artifactId>plexus</artifactId>
<version>15</version>
</parent>

<artifactId>plexus-cli</artifactId>
Expand All @@ -16,14 +15,14 @@
<description>Easily create CLIs with Plexus components</description>

<scm>
<connection>scm:git:[email protected]:codehaus-plexus/plexus-cli.git</connection>
<developerConnection>scm:git:[email protected]:codehaus-plexus/plexus-cli.git</developerConnection>
<url>http://github.com/codehaus-plexus/plexus-cli</url>
<connection>scm:git:https://github.com/codehaus-plexus/plexus-cli.git</connection>
<developerConnection>scm:git:https://github.com/codehaus-plexus/plexus-cli.git</developerConnection>
<tag>HEAD</tag>
<url>https://github.com/codehaus-plexus/plexus-cli/tree/${project.scm.tag}/</url>
</scm>
<issueManagement>
<system>github</system>
<url>http://github.com/codehaus-plexus/plexus-cli/issues</url>
<url>https://github.com/codehaus-plexus/plexus-cli/issues</url>
</issueManagement>
<distributionManagement>
<site>
Expand All @@ -35,7 +34,7 @@
<properties>
<project.build.outputTimestamp>2020-01-20T18:52:37Z</project.build.outputTimestamp>
</properties>

<dependencies>
<dependency>
<groupId>org.codehaus.plexus</groupId>
Expand All @@ -45,61 +44,37 @@
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-utils</artifactId>
<version>4.0.0</version>
</dependency>
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-xml</artifactId>
<version>3.0.0</version>
</dependency>
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
<version>1.5.0</version>
<exclusions>
<exclusion>
<artifactId>commons-lang</artifactId>
<groupId>commons-lang</groupId>
</exclusion>
<exclusion>
<artifactId>commons-logging</artifactId>
<groupId>commons-logging</groupId>
</exclusion>
</exclusions>
</dependency>
</dependencies>

<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>3.3.0</version>
<dependencies>
<dependency>
<groupId>com.puppycrawl.tools</groupId>
<artifactId>checkstyle</artifactId>
<version>9.3</version>
</dependency>
<dependency>
<groupId>org.apache.maven.shared</groupId>
<artifactId>maven-shared-resources</artifactId>
<version>5</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</pluginManagement>

<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-scm-publish-plugin</artifactId>
<configuration>
<content>${project.reporting.outputDirectory}</content><!-- mono-module doesn't require site:stage -->
<!-- mono-module doesn't require site:stage -->
<content>${project.reporting.outputDirectory}</content>
</configuration>
<executions>
<execution>
<!-- deploy site with maven-scm-publish-plugin -->
<id>scm-publish</id>
<phase>site-deploy</phase><!-- deploy site with maven-scm-publish-plugin -->
<goals>
<goal>publish-scm</goal>
</goals>
<phase>site-deploy</phase>
</execution>
</executions>
</plugin>
Expand Down

0 comments on commit 2c9bc86

Please sign in to comment.