Skip to content

Commit 968a069

Browse files
committed
Reformat using spotless:apply
1 parent 4315308 commit 968a069

File tree

102 files changed

+7336
-11134
lines changed

Some content is hidden

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

102 files changed

+7336
-11134
lines changed

pom.xml

+41-42
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
32
<!--
43
Copyright The Codehaus Foundation.
54
@@ -15,7 +14,6 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1514
See the License for the specific language governing permissions and
1615
limitations under the License.
1716
-->
18-
1917
<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">
2018
<modelVersion>4.0.0</modelVersion>
2119

@@ -30,8 +28,7 @@ limitations under the License.
3028

3129
<name>Plexus Common Utilities</name>
3230
<description>A collection of various utility classes to ease working with strings, files, command lines and
33-
more.
34-
</description>
31+
more.</description>
3532

3633
<scm>
3734
<connection>scm:git:https://github.com/codehaus-plexus/plexus-utils.git</connection>
@@ -71,14 +68,14 @@ limitations under the License.
7168

7269
<repositories>
7370
<repository>
74-
<id>oss.snapshots</id>
75-
<url>https://oss.sonatype.org/content/repositories/plexus-snapshots/</url>
76-
<snapshots>
77-
<enabled>true</enabled>
78-
</snapshots>
7971
<releases>
8072
<enabled>false</enabled>
8173
</releases>
74+
<snapshots>
75+
<enabled>true</enabled>
76+
</snapshots>
77+
<id>oss.snapshots</id>
78+
<url>https://oss.sonatype.org/content/repositories/plexus-snapshots/</url>
8279
</repository>
8380
</repositories>
8481

@@ -112,15 +109,17 @@ limitations under the License.
112109
<groupId>org.apache.maven.plugins</groupId>
113110
<artifactId>maven-scm-publish-plugin</artifactId>
114111
<configuration>
115-
<content>${project.reporting.outputDirectory}</content><!-- mono-module doesn't require site:stage -->
112+
<content>${project.reporting.outputDirectory}</content>
113+
<!-- mono-module doesn't require site:stage -->
116114
</configuration>
117115
<executions>
118116
<execution>
119117
<id>scm-publish</id>
120-
<phase>site-deploy</phase><!-- deploy site with maven-scm-publish-plugin -->
118+
<!-- deploy site with maven-scm-publish-plugin -->
121119
<goals>
122120
<goal>publish-scm</goal>
123121
</goals>
122+
<phase>site-deploy</phase>
124123
</execution>
125124
</executions>
126125
</plugin>
@@ -180,8 +179,8 @@ limitations under the License.
180179
<release>9</release>
181180
<compileSourceRoots>
182181
<compileSourceRoot>${project.basedir}/src/main/java9</compileSourceRoot>
183-
</compileSourceRoots>
184-
<multiReleaseOutput>true</multiReleaseOutput>
182+
</compileSourceRoots>
183+
<multiReleaseOutput>true</multiReleaseOutput>
185184
</configuration>
186185
</execution>
187186
</executions>
@@ -210,8 +209,8 @@ limitations under the License.
210209
<release>10</release>
211210
<compileSourceRoots>
212211
<compileSourceRoot>${project.basedir}/src/main/java10</compileSourceRoot>
213-
</compileSourceRoots>
214-
<multiReleaseOutput>true</multiReleaseOutput>
212+
</compileSourceRoots>
213+
<multiReleaseOutput>true</multiReleaseOutput>
215214
</configuration>
216215
</execution>
217216
</executions>
@@ -221,35 +220,35 @@ limitations under the License.
221220
</build>
222221
</profile>
223222
<profile>
224-
<id>jdk11+</id>
225-
<activation>
226-
<jdk>[11,)</jdk>
227-
</activation>
228-
<build>
229-
<pluginManagement>
230-
<plugins>
231-
<plugin>
232-
<artifactId>maven-compiler-plugin</artifactId>
233-
<executions>
234-
<execution>
235-
<id>compile-java-11</id>
236-
<goals>
237-
<goal>compile</goal>
238-
</goals>
239-
<configuration>
240-
<release>11</release>
241-
<compileSourceRoots>
242-
<compileSourceRoot>${project.basedir}/src/main/java11</compileSourceRoot>
223+
<id>jdk11+</id>
224+
<activation>
225+
<jdk>[11,)</jdk>
226+
</activation>
227+
<build>
228+
<pluginManagement>
229+
<plugins>
230+
<plugin>
231+
<artifactId>maven-compiler-plugin</artifactId>
232+
<executions>
233+
<execution>
234+
<id>compile-java-11</id>
235+
<goals>
236+
<goal>compile</goal>
237+
</goals>
238+
<configuration>
239+
<release>11</release>
240+
<compileSourceRoots>
241+
<compileSourceRoot>${project.basedir}/src/main/java11</compileSourceRoot>
243242
</compileSourceRoots>
244243
<multiReleaseOutput>true</multiReleaseOutput>
245-
</configuration>
246-
</execution>
247-
</executions>
248-
</plugin>
249-
</plugins>
250-
</pluginManagement>
251-
</build>
252-
</profile>
244+
</configuration>
245+
</execution>
246+
</executions>
247+
</plugin>
248+
</plugins>
249+
</pluginManagement>
250+
</build>
251+
</profile>
253252
<profile>
254253
<id>plexus-release</id>
255254
<build>

0 commit comments

Comments
 (0)