Skip to content

Commit

Permalink
Enable spotless for code formatting - reformat
Browse files Browse the repository at this point in the history
  • Loading branch information
slawekjaranowski committed Nov 12, 2023
1 parent 69d648f commit 5fb64ce
Show file tree
Hide file tree
Showing 35 changed files with 1,583 additions and 2,285 deletions.
73 changes: 37 additions & 36 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<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">
<modelVersion>4.0.0</modelVersion>

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

<prerequisites>
<maven>${mavenVersion}</maven>
</prerequisites>
<licenses>
<license>
<name>Apache License 2</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>

<developers>
<developer>
Expand Down Expand Up @@ -105,21 +110,25 @@
</contributor>
</contributors>

<licenses>
<license>
<name>Apache License 2</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<prerequisites>
<maven>${mavenVersion}</maven>
</prerequisites>

<scm>
<connection>scm:git:https://github.com/mojohaus/exec-maven-plugin.git</connection>
<developerConnection>scm:git:ssh://[email protected]/mojohaus/exec-maven-plugin.git</developerConnection>
<url>https://github.com/mojohaus/exec-maven-plugin/tree/master</url>
<tag>HEAD</tag>
<url>https://github.com/mojohaus/exec-maven-plugin/tree/master</url>
</scm>

<properties>
<mavenVersion>3.6.3</mavenVersion>
<recommendedJavaBuildVersion>11</recommendedJavaBuildVersion>
<slf4j.version>1.7.36</slf4j.version>
<invoker.parallelThreads>1C</invoker.parallelThreads>
<project.build.outputTimestamp>2022-07-15T02:43:45Z</project.build.outputTimestamp>
</properties>

<dependencies>
<dependency>
<groupId>org.apache.maven</groupId>
Expand Down Expand Up @@ -176,7 +185,7 @@
<artifactId>plexus-component-annotations</artifactId>
<version>2.1.1</version>
<optional>true</optional>
</dependency>
</dependency>

<dependency>
<groupId>org.apache.commons</groupId>
Expand Down Expand Up @@ -227,14 +236,6 @@
</dependency>
</dependencies>

<properties>
<mavenVersion>3.6.3</mavenVersion>
<recommendedJavaBuildVersion>11</recommendedJavaBuildVersion>
<slf4j.version>1.7.36</slf4j.version>
<invoker.parallelThreads>1C</invoker.parallelThreads>
<project.build.outputTimestamp>2022-07-15T02:43:45Z</project.build.outputTimestamp>
</properties>

<build>
<pluginManagement>
<plugins>
Expand All @@ -254,13 +255,6 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>animal-sniffer-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
<configuration>
<signature>
<groupId>org.codehaus.mojo.signature</groupId>
Expand All @@ -271,6 +265,13 @@
<ignore>java.lang.invoke.MethodHandle</ignore>
</ignores>
</configuration>
<executions>
<execution>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.plexus</groupId>
Expand All @@ -290,10 +291,10 @@
<executions>
<execution>
<id>copy-test-deps</id>
<phase>generate-test-resources</phase>
<goals>
<goal>copy</goal>
</goals>
<phase>generate-test-resources</phase>
<configuration>
<artifactItems>
<artifactItem>
Expand Down Expand Up @@ -412,14 +413,6 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>mrm-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>start</goal>
<goal>stop</goal>
</goals>
</execution>
</executions>
<configuration>
<repositories>
<mockRepo>
Expand All @@ -431,6 +424,14 @@
<proxyRepo />
</repositories>
</configuration>
<executions>
<execution>
<goals>
<goal>start</goal>
<goal>stop</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-enforcer-plugin</artifactId>
Expand Down
Loading

0 comments on commit 5fb64ce

Please sign in to comment.