|
1 |
| -<?xml version="1.0"?> |
2 |
| - |
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
3 | 2 | <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">
|
4 | 3 | <modelVersion>4.0.0</modelVersion>
|
5 | 4 |
|
6 | 5 | <parent>
|
7 |
| - <artifactId>plexus-components</artifactId> |
8 | 6 | <groupId>org.codehaus.plexus</groupId>
|
9 |
| - <version>10.0</version> |
| 7 | + <artifactId>plexus</artifactId> |
| 8 | + <version>15</version> |
10 | 9 | </parent>
|
11 | 10 |
|
12 | 11 | <artifactId>plexus-cli</artifactId>
|
|
16 | 15 | <description>Easily create CLIs with Plexus components</description>
|
17 | 16 |
|
18 | 17 | <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> |
22 | 20 | <tag>HEAD</tag>
|
| 21 | + <url>https://github.com/codehaus-plexus/plexus-cli/tree/${project.scm.tag}/</url> |
23 | 22 | </scm>
|
24 | 23 | <issueManagement>
|
25 | 24 | <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> |
27 | 26 | </issueManagement>
|
28 | 27 | <distributionManagement>
|
29 | 28 | <site>
|
|
35 | 34 | <properties>
|
36 | 35 | <project.build.outputTimestamp>2020-01-20T18:52:37Z</project.build.outputTimestamp>
|
37 | 36 | </properties>
|
38 |
| - |
| 37 | + |
39 | 38 | <dependencies>
|
40 | 39 | <dependency>
|
41 | 40 | <groupId>org.codehaus.plexus</groupId>
|
|
45 | 44 | <dependency>
|
46 | 45 | <groupId>org.codehaus.plexus</groupId>
|
47 | 46 | <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> |
48 | 53 | </dependency>
|
49 | 54 | <dependency>
|
50 | 55 | <groupId>commons-cli</groupId>
|
51 | 56 | <artifactId>commons-cli</artifactId>
|
52 | 57 | <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> |
63 | 58 | </dependency>
|
64 | 59 | </dependencies>
|
65 | 60 |
|
66 | 61 | <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 |
| - |
89 | 62 | <plugins>
|
90 | 63 | <plugin>
|
91 | 64 | <groupId>org.apache.maven.plugins</groupId>
|
92 | 65 | <artifactId>maven-scm-publish-plugin</artifactId>
|
93 | 66 | <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> |
95 | 69 | </configuration>
|
96 | 70 | <executions>
|
97 | 71 | <execution>
|
| 72 | + <!-- deploy site with maven-scm-publish-plugin --> |
98 | 73 | <id>scm-publish</id>
|
99 |
| - <phase>site-deploy</phase><!-- deploy site with maven-scm-publish-plugin --> |
100 | 74 | <goals>
|
101 | 75 | <goal>publish-scm</goal>
|
102 | 76 | </goals>
|
| 77 | + <phase>site-deploy</phase> |
103 | 78 | </execution>
|
104 | 79 | </executions>
|
105 | 80 | </plugin>
|
|
0 commit comments