Skip to content

Commit

Permalink
Tidy up some common things
Browse files Browse the repository at this point in the history
  • Loading branch information
cstamas committed Oct 21, 2023
1 parent 83b5d62 commit e3d0620
Showing 1 changed file with 14 additions and 5 deletions.
19 changes: 14 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -86,14 +86,17 @@
Compiler defaults: Java 8 byte code.
-->
<maven.compiler.release>8</maven.compiler.release>
<maven.compiler.source>${maven.compiler.release}</maven.compiler.source>
<maven.compiler.target>${maven.compiler.release}</maven.compiler.target>
<!--
Build time: latest Maven and LTS Java.
-->
<requireBuildtimeMavenVersion.version>[3.9.1,)</requireBuildtimeMavenVersion.version>
<requireBuildtimeMavenVersion.version>[3.9.4,)</requireBuildtimeMavenVersion.version>
<requireBuildtimeJavaVersion.version>[17.0.7,)</requireBuildtimeJavaVersion.version>

<!--
Some notable versions.
-->
<version.sisu>0.9.0.M2</version.sisu>

<!--
Deployment configuration.
-->
Expand Down Expand Up @@ -178,6 +181,10 @@
<version>3.11.0</version>
<configuration>
<release>${maven.compiler.release}</release>
<proc>none</proc>
<compilerArgs>
<arg>-Xlint:deprecation</arg>
</compilerArgs>
</configuration>
</plugin>

Expand Down Expand Up @@ -373,7 +380,7 @@
<plugin>
<groupId>org.eclipse.sisu</groupId>
<artifactId>sisu-maven-plugin</artifactId>
<version>0.9.0.M2</version>
<version>${version.sisu}</version>
</plugin>

<plugin>
Expand Down Expand Up @@ -475,7 +482,9 @@
<artifactId>spotless-maven-plugin</artifactId>
<configuration>
<java>
<palantirJavaFormat />
<palantirJavaFormat>
<version>2.38.0</version>
</palantirJavaFormat>
<removeUnusedImports />
</java>
<pom>
Expand Down

0 comments on commit e3d0620

Please sign in to comment.