Skip to content

Commit 5d9553b

Browse files
author
Greg Gibeling
committed
Reduce build requirements
1 parent c75bca3 commit 5d9553b

1 file changed

Lines changed: 25 additions & 1 deletion

File tree

pom.xml

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@
3030
</basepom.test.add.opens>
3131

3232
<argLine />
33+
34+
<project.build.jdk.version>17</project.build.jdk.version>
35+
<dep.commons-lang3.version>3.18.0</dep.commons-lang3.version>
3336
</properties>
3437

3538
<dependencyManagement>
@@ -144,7 +147,6 @@
144147
<dependency>
145148
<groupId>org.apache.commons</groupId>
146149
<artifactId>commons-lang3</artifactId>
147-
<version>3.18.0</version>
148150
</dependency>
149151
<dependency>
150152
<groupId>commons-net</groupId>
@@ -353,6 +355,28 @@
353355
</annotationProcessorPaths>
354356
</configuration>
355357
</plugin>
358+
359+
<plugin>
360+
<groupId>com.diffplug.spotless</groupId>
361+
<artifactId>spotless-maven-plugin</artifactId>
362+
<executions>
363+
<execution>
364+
<id>apply</id>
365+
<phase>none</phase>
366+
</execution>
367+
<execution>
368+
<id>check</id>
369+
<phase>none</phase>
370+
</execution>
371+
</executions>
372+
</plugin>
373+
<plugin>
374+
<groupId>org.apache.maven.plugins</groupId>
375+
<artifactId>maven-checkstyle-plugin</artifactId>
376+
<configuration>
377+
<skip>true</skip>
378+
</configuration>
379+
</plugin>
356380
</plugins>
357381
</build>
358382

0 commit comments

Comments
 (0)