Skip to content

Commit 7c9e681

Browse files
jorsolslawekjaranowski
authored andcommitted
[MSOURCES-131] - Update plugin (requires Maven 3.2.5+)
Signed-off-by: Jorge Solórzano <[email protected]>
1 parent 2ccf34b commit 7c9e681

File tree

1 file changed

+17
-34
lines changed

1 file changed

+17
-34
lines changed

pom.xml

+17-34
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ under the License.
2525
<parent>
2626
<artifactId>maven-plugins</artifactId>
2727
<groupId>org.apache.maven.plugins</groupId>
28-
<version>34</version>
29-
<relativePath>../../pom/maven/maven-plugins/pom.xml</relativePath>
28+
<version>36</version>
29+
<relativePath/>
3030
</parent>
3131

3232
<artifactId>maven-source-plugin</artifactId>
33-
<version>3.2.2-SNAPSHOT</version>
33+
<version>3.3.0-SNAPSHOT</version>
3434
<packaging>maven-plugin</packaging>
3535

3636
<name>Apache Maven Source Plugin</name>
@@ -69,7 +69,7 @@ under the License.
6969
</issueManagement>
7070
<ciManagement>
7171
<system>Jenkins</system>
72-
<url>https://ci-builds.apache.org/job/Maven/job/maven-box/job/maven-source-plugin/</url>
72+
<url>https://ci-maven.apache.org/job/Maven/job/maven-box/job/maven-source-plugin/</url>
7373
</ciManagement>
7474
<distributionManagement>
7575
<site>
@@ -79,8 +79,8 @@ under the License.
7979
</distributionManagement>
8080

8181
<properties>
82-
<javaVersion>7</javaVersion>
83-
<mavenVersion>3.0</mavenVersion>
82+
<javaVersion>8</javaVersion>
83+
<mavenVersion>3.2.5</mavenVersion>
8484
<project.build.outputTimestamp>2019-12-16T18:10:36Z</project.build.outputTimestamp>
8585
</properties>
8686

@@ -89,16 +89,25 @@ under the License.
8989
<groupId>org.apache.maven</groupId>
9090
<artifactId>maven-model</artifactId>
9191
<version>${mavenVersion}</version>
92+
<scope>provided</scope>
9293
</dependency>
9394
<dependency>
9495
<groupId>org.apache.maven</groupId>
9596
<artifactId>maven-plugin-api</artifactId>
9697
<version>${mavenVersion}</version>
98+
<scope>provided</scope>
99+
</dependency>
100+
<dependency>
101+
<groupId>org.apache.maven</groupId>
102+
<artifactId>maven-artifact</artifactId>
103+
<version>${mavenVersion}</version>
104+
<scope>provided</scope>
97105
</dependency>
98106
<dependency>
99107
<groupId>org.apache.maven</groupId>
100108
<artifactId>maven-core</artifactId>
101109
<version>${mavenVersion}</version>
110+
<scope>provided</scope>
102111
</dependency>
103112

104113
<!-- dependencies to annotations -->
@@ -113,21 +122,16 @@ under the License.
113122
<artifactId>maven-archiver</artifactId>
114123
<version>3.5.0</version>
115124
</dependency>
116-
<dependency>
117-
<groupId>org.codehaus.plexus</groupId>
118-
<artifactId>plexus-archiver</artifactId>
119-
<version>4.2.4</version>
120-
</dependency>
121125
<dependency>
122126
<groupId>org.codehaus.plexus</groupId>
123127
<artifactId>plexus-utils</artifactId>
124-
<version>3.3.0</version>
128+
<version>3.4.2</version>
125129
</dependency>
126130

127131
<dependency>
128132
<groupId>org.apache.maven.plugin-testing</groupId>
129133
<artifactId>maven-plugin-testing-harness</artifactId>
130-
<version>2.1</version>
134+
<version>3.3.0</version>
131135
<scope>test</scope>
132136
</dependency>
133137
<dependency>
@@ -156,27 +160,6 @@ under the License.
156160
</configuration>
157161
</plugin>
158162
</plugins>
159-
<pluginManagement>
160-
<plugins>
161-
<!-- Reproducible Builds plugins: to be removed once parent POM updated to 34 -->
162-
<plugin>
163-
<artifactId>maven-source-plugin</artifactId>
164-
<version>3.2.0</version><!-- not fully reproducible: see MSOURCES-123 -->
165-
</plugin>
166-
<plugin>
167-
<artifactId>maven-jar-plugin</artifactId>
168-
<version>3.2.0</version>
169-
</plugin>
170-
<plugin>
171-
<artifactId>maven-assembly-plugin</artifactId>
172-
<version>3.3.0</version>
173-
</plugin>
174-
<plugin>
175-
<artifactId>maven-release-plugin</artifactId>
176-
<version>3.0.0-M1</version>
177-
</plugin>
178-
</plugins>
179-
</pluginManagement>
180163
</build>
181164

182165
<profiles>

0 commit comments

Comments
 (0)