Skip to content
This repository was archived by the owner on Dec 4, 2024. It is now read-only.

Commit c7be73e

Browse files
committed
Update to Parent pom 15
1 parent 96a68ac commit c7be73e

File tree

1 file changed

+18
-43
lines changed

1 file changed

+18
-43
lines changed

pom.xml

Lines changed: 18 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
1-
<?xml version="1.0"?>
2-
1+
<?xml version="1.0" encoding="UTF-8"?>
32
<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">
43
<modelVersion>4.0.0</modelVersion>
54

65
<parent>
7-
<artifactId>plexus-components</artifactId>
86
<groupId>org.codehaus.plexus</groupId>
9-
<version>10.0</version>
7+
<artifactId>plexus</artifactId>
8+
<version>15</version>
109
</parent>
1110

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

1817
<scm>
19-
<connection>scm:git:git@github.com:codehaus-plexus/plexus-cli.git</connection>
20-
<developerConnection>scm:git:git@github.com:codehaus-plexus/plexus-cli.git</developerConnection>
21-
<url>http://github.com/codehaus-plexus/plexus-cli</url>
18+
<connection>scm:git:https://github.com/codehaus-plexus/plexus-cli.git</connection>
19+
<developerConnection>scm:git:https://github.com/codehaus-plexus/plexus-cli.git</developerConnection>
2220
<tag>HEAD</tag>
21+
<url>https://github.com/codehaus-plexus/plexus-cli/tree/${project.scm.tag}/</url>
2322
</scm>
2423
<issueManagement>
2524
<system>github</system>
26-
<url>http://github.com/codehaus-plexus/plexus-cli/issues</url>
25+
<url>https://github.com/codehaus-plexus/plexus-cli/issues</url>
2726
</issueManagement>
2827
<distributionManagement>
2928
<site>
@@ -35,7 +34,7 @@
3534
<properties>
3635
<project.build.outputTimestamp>2020-01-20T18:52:37Z</project.build.outputTimestamp>
3736
</properties>
38-
37+
3938
<dependencies>
4039
<dependency>
4140
<groupId>org.codehaus.plexus</groupId>
@@ -45,61 +44,37 @@
4544
<dependency>
4645
<groupId>org.codehaus.plexus</groupId>
4746
<artifactId>plexus-utils</artifactId>
47+
<version>4.0.0</version>
48+
</dependency>
49+
<dependency>
50+
<groupId>org.codehaus.plexus</groupId>
51+
<artifactId>plexus-xml</artifactId>
52+
<version>3.0.0</version>
4853
</dependency>
4954
<dependency>
5055
<groupId>commons-cli</groupId>
5156
<artifactId>commons-cli</artifactId>
5257
<version>1.5.0</version>
53-
<exclusions>
54-
<exclusion>
55-
<artifactId>commons-lang</artifactId>
56-
<groupId>commons-lang</groupId>
57-
</exclusion>
58-
<exclusion>
59-
<artifactId>commons-logging</artifactId>
60-
<groupId>commons-logging</groupId>
61-
</exclusion>
62-
</exclusions>
6358
</dependency>
6459
</dependencies>
6560

6661
<build>
67-
<pluginManagement>
68-
<plugins>
69-
<plugin>
70-
<groupId>org.apache.maven.plugins</groupId>
71-
<artifactId>maven-checkstyle-plugin</artifactId>
72-
<version>3.3.0</version>
73-
<dependencies>
74-
<dependency>
75-
<groupId>com.puppycrawl.tools</groupId>
76-
<artifactId>checkstyle</artifactId>
77-
<version>9.3</version>
78-
</dependency>
79-
<dependency>
80-
<groupId>org.apache.maven.shared</groupId>
81-
<artifactId>maven-shared-resources</artifactId>
82-
<version>5</version>
83-
</dependency>
84-
</dependencies>
85-
</plugin>
86-
</plugins>
87-
</pluginManagement>
88-
8962
<plugins>
9063
<plugin>
9164
<groupId>org.apache.maven.plugins</groupId>
9265
<artifactId>maven-scm-publish-plugin</artifactId>
9366
<configuration>
94-
<content>${project.reporting.outputDirectory}</content><!-- mono-module doesn't require site:stage -->
67+
<!-- mono-module doesn't require site:stage -->
68+
<content>${project.reporting.outputDirectory}</content>
9569
</configuration>
9670
<executions>
9771
<execution>
72+
<!-- deploy site with maven-scm-publish-plugin -->
9873
<id>scm-publish</id>
99-
<phase>site-deploy</phase><!-- deploy site with maven-scm-publish-plugin -->
10074
<goals>
10175
<goal>publish-scm</goal>
10276
</goals>
77+
<phase>site-deploy</phase>
10378
</execution>
10479
</executions>
10580
</plugin>

0 commit comments

Comments
 (0)