Skip to content

Commit cc082ea

Browse files
[MDEP-837] Reformat code after parent 38
1 parent 803433b commit cc082ea

File tree

107 files changed

+6455
-8926
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

107 files changed

+6455
-8926
lines changed

pom.xml

Lines changed: 40 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
<?xml version='1.0' encoding='UTF-8'?>
2-
1+
<?xml version="1.0" encoding="UTF-8"?>
32
<!--
43
Licensed to the Apache Software Foundation (ASF) under one
54
or more contributor license agreements. See the NOTICE file
@@ -18,7 +17,6 @@ KIND, either express or implied. See the License for the
1817
specific language governing permissions and limitations
1918
under the License.
2019
-->
21-
2220
<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">
2321
<modelVersion>4.0.0</modelVersion>
2422

@@ -36,31 +34,6 @@ under the License.
3634
<name>Apache Maven Dependency Plugin</name>
3735
<description>Provides utility goals to work with dependencies like copying, unpacking, analyzing, resolving and many more.</description>
3836

39-
<prerequisites>
40-
<maven>${mavenVersion}</maven>
41-
</prerequisites>
42-
43-
<scm>
44-
<connection>scm:git:https://gitbox.apache.org/repos/asf/maven-dependency-plugin.git</connection>
45-
<developerConnection>scm:git:https://gitbox.apache.org/repos/asf/maven-dependency-plugin.git</developerConnection>
46-
<url>https://github.com/apache/maven-dependency-plugin/tree/${project.scm.tag}</url>
47-
<tag>HEAD</tag>
48-
</scm>
49-
<issueManagement>
50-
<system>JIRA</system>
51-
<url>https://issues.apache.org/jira/browse/MDEP</url>
52-
</issueManagement>
53-
<ciManagement>
54-
<system>Jenkins</system>
55-
<url>https://ci-maven.apache.org/job/Maven/job/maven-box/job/maven-dependency-plugin/</url>
56-
</ciManagement>
57-
<distributionManagement>
58-
<site>
59-
<id>apache.website</id>
60-
<url>scm:svn:https://svn.apache.org/repos/asf/maven/website/components/${maven.site.path}</url>
61-
</site>
62-
</distributionManagement>
63-
6437
<contributors>
6538
<contributor>
6639
<name>Bakito</name>
@@ -88,6 +61,31 @@ under the License.
8861
</contributor>
8962
</contributors>
9063

64+
<prerequisites>
65+
<maven>${mavenVersion}</maven>
66+
</prerequisites>
67+
68+
<scm>
69+
<connection>scm:git:https://gitbox.apache.org/repos/asf/maven-dependency-plugin.git</connection>
70+
<developerConnection>scm:git:https://gitbox.apache.org/repos/asf/maven-dependency-plugin.git</developerConnection>
71+
<tag>HEAD</tag>
72+
<url>https://github.com/apache/maven-dependency-plugin/tree/${project.scm.tag}</url>
73+
</scm>
74+
<issueManagement>
75+
<system>JIRA</system>
76+
<url>https://issues.apache.org/jira/browse/MDEP</url>
77+
</issueManagement>
78+
<ciManagement>
79+
<system>Jenkins</system>
80+
<url>https://ci-maven.apache.org/job/Maven/job/maven-box/job/maven-dependency-plugin/</url>
81+
</ciManagement>
82+
<distributionManagement>
83+
<site>
84+
<id>apache.website</id>
85+
<url>scm:svn:https://svn.apache.org/repos/asf/maven/website/components/${maven.site.path}</url>
86+
</site>
87+
</distributionManagement>
88+
9189
<properties>
9290
<mavenVersion>3.2.5</mavenVersion>
9391
<jettyVersion>9.4.49.v20220914</jettyVersion>
@@ -160,7 +158,7 @@ under the License.
160158
<version>${mavenVersion}</version>
161159
<scope>provided</scope>
162160
</dependency>
163-
161+
164162
<!-- reporting -->
165163
<dependency>
166164
<groupId>org.apache.maven.reporting</groupId>
@@ -235,7 +233,7 @@ under the License.
235233
<artifactId>maven-plugin-annotations</artifactId>
236234
<scope>provided</scope>
237235
</dependency>
238-
236+
239237
<dependency>
240238
<groupId>org.eclipse.aether</groupId>
241239
<artifactId>aether-api</artifactId>
@@ -252,10 +250,11 @@ under the License.
252250
<dependency>
253251
<groupId>org.sonatype.plexus</groupId>
254252
<artifactId>plexus-build-api</artifactId>
255-
<version>0.0.7</version><!-- stick with old GAV until https://github.com/eclipse-m2e/m2e-core/issues/944 is fixed -->
253+
<version>0.0.7</version>
254+
<!-- stick with old GAV until https://github.com/eclipse-m2e/m2e-core/issues/944 is fixed -->
256255
<scope>compile</scope>
257256
</dependency>
258-
257+
259258
<!-- test -->
260259
<dependency>
261260
<groupId>org.eclipse.aether</groupId>
@@ -428,14 +427,6 @@ under the License.
428427
<groupId>org.codehaus.mojo</groupId>
429428
<artifactId>mrm-maven-plugin</artifactId>
430429
<version>1.4.1</version>
431-
<executions>
432-
<execution>
433-
<goals>
434-
<goal>start</goal>
435-
<goal>stop</goal>
436-
</goals>
437-
</execution>
438-
</executions>
439430
<configuration>
440431
<propertyName>repository.proxy.url</propertyName>
441432
<repositories>
@@ -445,9 +436,17 @@ under the License.
445436
<localRepo>
446437
<source>${project.build.directory}/local-repo</source>
447438
</localRepo>
448-
<proxyRepo />
439+
<proxyRepo/>
449440
</repositories>
450441
</configuration>
442+
<executions>
443+
<execution>
444+
<goals>
445+
<goal>start</goal>
446+
<goal>stop</goal>
447+
</goals>
448+
</execution>
449+
</executions>
451450
</plugin>
452451
</plugins>
453452
</build>

0 commit comments

Comments
 (0)