Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build-jar.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ if git submodule status | grep \( > /dev/null ; then
version=$(git describe --tags --match 'v*' --dirty | cut -c2-)
echo "Version = $version" > src/Version.properties
mkdir -p build
find src -name "*.java" | xargs javac --release 11 -d build
find src -name "*.java" | xargs javac --release 21 -d build
if [[ "$OSTYPE" == "darwin"* ]]; then
find src -type f -not -name "*.java" -exec rsync -R {} build \;
else
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -191,9 +191,9 @@
</plugins>
</reporting>
<properties>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<maven.compiler.release>11</maven.compiler.release>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
<maven.compiler.release>21</maven.compiler.release>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>
Loading