Skip to content

Commit

Permalink
[pom] Replaces the maven property with project property.
Browse files Browse the repository at this point in the history
  • Loading branch information
LinMingQiang committed Aug 8, 2024
1 parent 265937e commit c03b607
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
4 changes: 0 additions & 4 deletions .mvn/readme.txt

This file was deleted.

7 changes: 4 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -816,6 +816,7 @@ under the License.
<artifactId>spotless-maven-plugin</artifactId>
<version>${spotless.version}</version>
<configuration>
<baseDir>${project.basedir}</baseDir>
<java>
<googleJavaFormat>
<version>1.7</version>
Expand All @@ -829,18 +830,18 @@ under the License.

<licenseHeader>
<!-- replace it with ${project.rootDirectory} after maven 4.0.0, see MNG-7038 -->
<file>${maven.multiModuleProjectDirectory}/copyright.txt</file>
<file>./copyright.txt</file>
<delimiter>${spotless.delimiter}</delimiter>
</licenseHeader>
</java>
<scala>
<scalafmt>
<version>3.4.3</version>
<file>${maven.multiModuleProjectDirectory}/.scalafmt.conf</file>
<file>./.scalafmt.conf</file>
</scalafmt>

<licenseHeader>
<file>${maven.multiModuleProjectDirectory}/copyright.txt</file>
<file>./copyright.txt</file>
<delimiter>${spotless.delimiter}</delimiter>
</licenseHeader>
</scala>
Expand Down

0 comments on commit c03b607

Please sign in to comment.