Explicitly use project.version

This addresses a Maven warning: The expression ${version} is
deprecated. Please use ${project.version} instead.
pull/699/head
Andrew Gaul 2024-10-06 18:12:04 -07:00
rodzic 017050dbbd
commit 3e9bf34a8e
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -315,7 +315,7 @@
<artifactId>really-executable-jar-maven-plugin</artifactId>
<version>2.1.1</version>
<configuration>
<inputFile>target/s3proxy-${version}-jar-with-dependencies.jar</inputFile>
<inputFile>target/s3proxy-${project.version}-jar-with-dependencies.jar</inputFile>
<programFile>s3proxy</programFile>
</configuration>
<executions>