Skip to content

Commit

Permalink
CLDR-18201 build: maven settings to use release instead of source/tar…
Browse files Browse the repository at this point in the history
…get (#4263)
  • Loading branch information
srl295 authored Jan 7, 2025
1 parent 9bbbc77 commit be5ec66
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions tools/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<!-- Note: see https://github.com/unicode-org/icu/packages/1954682/versions
for the icu4j.version tag to use. In general we should just use the latest
SNAPSHOT for the ICU version that we want, so this should only need updating
Expand All @@ -36,6 +34,8 @@
<jjwt.version>0.11.5</jjwt.version>
<spotless.version>2.43.0</spotless.version>
<google-java-style.version>1.22.0</google-java-style.version>
<!-- Note: java-release (applied in the compiler plugin) replaces maven.compiler.source and maven.compiler.target -->
<java-release>11</java-release>
</properties>

<modules>
Expand Down Expand Up @@ -239,6 +239,9 @@
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
<configuration>
<release>${java-release}</release>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
Expand Down

0 comments on commit be5ec66

Please sign in to comment.