Skip to content

Commit 5fb64ce

Browse files
Enable spotless for code formatting - reformat
1 parent 69d648f commit 5fb64ce

35 files changed

+1583
-2285
lines changed

pom.xml

Lines changed: 37 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
12
<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">
23
<modelVersion>4.0.0</modelVersion>
34

@@ -16,9 +17,13 @@
1617
<url>https://www.mojohaus.org/exec-maven-plugin</url>
1718
<inceptionYear>2005</inceptionYear>
1819

19-
<prerequisites>
20-
<maven>${mavenVersion}</maven>
21-
</prerequisites>
20+
<licenses>
21+
<license>
22+
<name>Apache License 2</name>
23+
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
24+
<distribution>repo</distribution>
25+
</license>
26+
</licenses>
2227

2328
<developers>
2429
<developer>
@@ -105,21 +110,25 @@
105110
</contributor>
106111
</contributors>
107112

108-
<licenses>
109-
<license>
110-
<name>Apache License 2</name>
111-
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
112-
<distribution>repo</distribution>
113-
</license>
114-
</licenses>
113+
<prerequisites>
114+
<maven>${mavenVersion}</maven>
115+
</prerequisites>
115116

116117
<scm>
117118
<connection>scm:git:https://github.com/mojohaus/exec-maven-plugin.git</connection>
118119
<developerConnection>scm:git:ssh://[email protected]/mojohaus/exec-maven-plugin.git</developerConnection>
119-
<url>https://github.com/mojohaus/exec-maven-plugin/tree/master</url>
120120
<tag>HEAD</tag>
121+
<url>https://github.com/mojohaus/exec-maven-plugin/tree/master</url>
121122
</scm>
122123

124+
<properties>
125+
<mavenVersion>3.6.3</mavenVersion>
126+
<recommendedJavaBuildVersion>11</recommendedJavaBuildVersion>
127+
<slf4j.version>1.7.36</slf4j.version>
128+
<invoker.parallelThreads>1C</invoker.parallelThreads>
129+
<project.build.outputTimestamp>2022-07-15T02:43:45Z</project.build.outputTimestamp>
130+
</properties>
131+
123132
<dependencies>
124133
<dependency>
125134
<groupId>org.apache.maven</groupId>
@@ -176,7 +185,7 @@
176185
<artifactId>plexus-component-annotations</artifactId>
177186
<version>2.1.1</version>
178187
<optional>true</optional>
179-
</dependency>
188+
</dependency>
180189

181190
<dependency>
182191
<groupId>org.apache.commons</groupId>
@@ -227,14 +236,6 @@
227236
</dependency>
228237
</dependencies>
229238

230-
<properties>
231-
<mavenVersion>3.6.3</mavenVersion>
232-
<recommendedJavaBuildVersion>11</recommendedJavaBuildVersion>
233-
<slf4j.version>1.7.36</slf4j.version>
234-
<invoker.parallelThreads>1C</invoker.parallelThreads>
235-
<project.build.outputTimestamp>2022-07-15T02:43:45Z</project.build.outputTimestamp>
236-
</properties>
237-
238239
<build>
239240
<pluginManagement>
240241
<plugins>
@@ -254,13 +255,6 @@
254255
<plugin>
255256
<groupId>org.codehaus.mojo</groupId>
256257
<artifactId>animal-sniffer-maven-plugin</artifactId>
257-
<executions>
258-
<execution>
259-
<goals>
260-
<goal>check</goal>
261-
</goals>
262-
</execution>
263-
</executions>
264258
<configuration>
265259
<signature>
266260
<groupId>org.codehaus.mojo.signature</groupId>
@@ -271,6 +265,13 @@
271265
<ignore>java.lang.invoke.MethodHandle</ignore>
272266
</ignores>
273267
</configuration>
268+
<executions>
269+
<execution>
270+
<goals>
271+
<goal>check</goal>
272+
</goals>
273+
</execution>
274+
</executions>
274275
</plugin>
275276
<plugin>
276277
<groupId>org.codehaus.plexus</groupId>
@@ -290,10 +291,10 @@
290291
<executions>
291292
<execution>
292293
<id>copy-test-deps</id>
293-
<phase>generate-test-resources</phase>
294294
<goals>
295295
<goal>copy</goal>
296296
</goals>
297+
<phase>generate-test-resources</phase>
297298
<configuration>
298299
<artifactItems>
299300
<artifactItem>
@@ -412,14 +413,6 @@
412413
<plugin>
413414
<groupId>org.codehaus.mojo</groupId>
414415
<artifactId>mrm-maven-plugin</artifactId>
415-
<executions>
416-
<execution>
417-
<goals>
418-
<goal>start</goal>
419-
<goal>stop</goal>
420-
</goals>
421-
</execution>
422-
</executions>
423416
<configuration>
424417
<repositories>
425418
<mockRepo>
@@ -431,6 +424,14 @@
431424
<proxyRepo />
432425
</repositories>
433426
</configuration>
427+
<executions>
428+
<execution>
429+
<goals>
430+
<goal>start</goal>
431+
<goal>stop</goal>
432+
</goals>
433+
</execution>
434+
</executions>
434435
</plugin>
435436
<plugin>
436437
<artifactId>maven-enforcer-plugin</artifactId>

0 commit comments

Comments
 (0)