Skip to content

Commit f7a4613

Browse files
committedFeb 13, 2023
[MCOMPILER-526] Reformat
# Conflicts: # src/test/java/org/apache/maven/plugin/compiler/CompilerMojoTestCase.java
1 parent cc78aee commit f7a4613

File tree

260 files changed

+3660
-4991
lines changed

Some content is hidden

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

260 files changed

+3660
-4991
lines changed
 

‎pom.xml

+24-26
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

@@ -37,15 +35,21 @@ under the License.
3735
<description>The Compiler Plugin is used to compile the sources of your project.</description>
3836
<inceptionYear>2001</inceptionYear>
3937

38+
<contributors>
39+
<contributor>
40+
<name>Jan Sievers</name>
41+
</contributor>
42+
</contributors>
43+
4044
<prerequisites>
4145
<maven>${mavenVersion}</maven>
4246
</prerequisites>
4347

4448
<scm>
4549
<connection>scm:git:https://github.com/apache/maven-compiler-plugin.git</connection>
4650
<developerConnection>scm:git:https://github.com/apache/maven-compiler-plugin.git</developerConnection>
47-
<url>https://github.com/apache/maven-compiler-plugin/tree/${project.scm.tag}</url>
4851
<tag>maven-compiler-plugin-3.10.0</tag>
52+
<url>https://github.com/apache/maven-compiler-plugin/tree/${project.scm.tag}</url>
4953
</scm>
5054
<issueManagement>
5155
<system>JIRA</system>
@@ -80,25 +84,6 @@ under the License.
8084
<invoker.junitPackageName>org.apache.maven.plugins.compiler.its</invoker.junitPackageName>
8185
</properties>
8286

83-
<contributors>
84-
<contributor>
85-
<name>Jan Sievers</name>
86-
</contributor>
87-
</contributors>
88-
89-
<repositories>
90-
<repository>
91-
<id>plexus.snapshots</id>
92-
<url>https://oss.sonatype.org/content/repositories/plexus-snapshots</url>
93-
<releases>
94-
<enabled>false</enabled>
95-
</releases>
96-
<snapshots>
97-
<enabled>true</enabled>
98-
</snapshots>
99-
</repository>
100-
</repositories>
101-
10287
<dependencyManagement>
10388
<dependencies>
10489
<dependency>
@@ -145,16 +130,16 @@ under the License.
145130
<version>1.1</version>
146131
<exclusions>
147132
<exclusion>
148-
<artifactId>maven-core</artifactId>
149133
<groupId>org.apache.maven</groupId>
134+
<artifactId>maven-core</artifactId>
150135
</exclusion>
151136
<exclusion>
152-
<artifactId>maven-plugin-api</artifactId>
153137
<groupId>org.apache.maven</groupId>
138+
<artifactId>maven-plugin-api</artifactId>
154139
</exclusion>
155140
<exclusion>
156-
<artifactId>maven-shared-utils</artifactId>
157141
<groupId>org.apache.maven.shared</groupId>
142+
<artifactId>maven-shared-utils</artifactId>
158143
</exclusion>
159144
</exclusions>
160145
</dependency>
@@ -209,6 +194,19 @@ under the License.
209194
</dependency>
210195
</dependencies>
211196

197+
<repositories>
198+
<repository>
199+
<releases>
200+
<enabled>false</enabled>
201+
</releases>
202+
<snapshots>
203+
<enabled>true</enabled>
204+
</snapshots>
205+
<id>plexus.snapshots</id>
206+
<url>https://oss.sonatype.org/content/repositories/plexus-snapshots</url>
207+
</repository>
208+
</repositories>
209+
212210
<build>
213211
<plugins>
214212
<plugin>
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,21 @@
1-
/*
2-
* Licensed to the Apache Software Foundation (ASF) under one
3-
* or more contributor license agreements. See the NOTICE file
4-
* distributed with this work for additional information
5-
* regarding copyright ownership. The ASF licenses this file
6-
* to you under the Apache License, Version 2.0 (the
7-
* "License"); you may not use this file except in compliance
8-
* with the License. You may obtain a copy of the License at
9-
*
10-
* http://www.apache.org/licenses/LICENSE-2.0
11-
*
12-
* Unless required by applicable law or agreed to in writing,
13-
* software distributed under the License is distributed on an
14-
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15-
* KIND, either express or implied. See the License for the
16-
* specific language governing permissions and limitations
17-
* under the License.
18-
*/
19-
20-
public class MyClass
21-
{
22-
23-
}
1+
/*
2+
* Licensed to the Apache Software Foundation (ASF) under one
3+
* or more contributor license agreements. See the NOTICE file
4+
* distributed with this work for additional information
5+
* regarding copyright ownership. The ASF licenses this file
6+
* to you under the Apache License, Version 2.0 (the
7+
* "License"); you may not use this file except in compliance
8+
* with the License. You may obtain a copy of the License at
9+
*
10+
* http://www.apache.org/licenses/LICENSE-2.0
11+
*
12+
* Unless required by applicable law or agreed to in writing,
13+
* software distributed under the License is distributed on an
14+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15+
* KIND, either express or implied. See the License for the
16+
* specific language governing permissions and limitations
17+
* under the License.
18+
*/
19+
package foo;
20+
21+
public class MyClass {}

0 commit comments

Comments
 (0)