diff options
author | Jakob Heher <jakob.heher@iaik.tugraz.at> | 2022-02-17 18:57:38 +0100 |
---|---|---|
committer | Jakob Heher <jakob.heher@iaik.tugraz.at> | 2022-02-17 18:57:38 +0100 |
commit | 19253585bcd31ebceba9c5ae85068f5dcb15fb91 (patch) | |
tree | a97e024789595755471b815076c049a8750b3b17 /pdf-over-gui | |
parent | 338e1458388d30399860a9da54c8e9d86fcd37bc (diff) | |
download | pdf-over-19253585bcd31ebceba9c5ae85068f5dcb15fb91.tar.gz pdf-over-19253585bcd31ebceba9c5ae85068f5dcb15fb91.tar.bz2 pdf-over-19253585bcd31ebceba9c5ae85068f5dcb15fb91.zip |
fix maven warnings
Diffstat (limited to 'pdf-over-gui')
-rw-r--r-- | pdf-over-gui/pom.xml | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/pdf-over-gui/pom.xml b/pdf-over-gui/pom.xml index a125c0d5..9d5e50b4 100644 --- a/pdf-over-gui/pom.xml +++ b/pdf-over-gui/pom.xml @@ -309,7 +309,7 @@ <configuration> <headerType>gui</headerType> <dontWrapJar>true</dontWrapJar> - <jar>lib/${artifactId}-${version}.jar</jar> + <jar>lib/${project.artifactId}-${project.version}.jar</jar> <outfile>${staging.dir}/PDF-Over.exe</outfile> <errTitle>Error</errTitle> <classPath> @@ -323,11 +323,11 @@ </jre> <versionInfo> <fileVersion>${version.exe}</fileVersion> - <txtFileVersion>${version}</txtFileVersion> + <txtFileVersion>${project.version}</txtFileVersion> <fileDescription>PDF-Over PDF signer</fileDescription> <copyright>(C) 2012 A-SIT</copyright> <productVersion>${version.exe}</productVersion> - <txtProductVersion>${version}</txtProductVersion> + <txtProductVersion>${project.version}</txtProductVersion> <productName>PDF-Over</productName> <internalName>PDF-Over</internalName> <originalFilename>PDF-Over.exe</originalFilename> @@ -343,7 +343,7 @@ <configuration> <headerType>console</headerType> <dontWrapJar>true</dontWrapJar> - <jar>lib/${artifactId}-${version}.jar</jar> + <jar>lib/${project.artifactId}-${project.version}.jar</jar> <outfile>${staging.dir}/PDF-Over-cli.exe</outfile> <errTitle>Error</errTitle> <classPath> @@ -357,11 +357,11 @@ </jre> <versionInfo> <fileVersion>${version.exe}</fileVersion> - <txtFileVersion>${version}</txtFileVersion> + <txtFileVersion>${project.version}</txtFileVersion> <fileDescription>PDF-Over PDF signer CLI</fileDescription> <copyright>(C) 2012 A-SIT</copyright> <productVersion>${version.exe}</productVersion> - <txtProductVersion>${version}</txtProductVersion> + <txtProductVersion>${project.version}</txtProductVersion> <productName>PDF-Over</productName> <internalName>PDF-Over-cli</internalName> <originalFilename>PDF-Over-cli.exe</originalFilename> @@ -392,11 +392,11 @@ </jre> <versionInfo> <fileVersion>${version.exe}</fileVersion> - <txtFileVersion>${version}</txtFileVersion> + <txtFileVersion>${project.version}</txtFileVersion> <fileDescription>PDF-Over Uninstaller</fileDescription> <copyright>A-SIT (Secure Information Technology Center - Austria)</copyright> <productVersion>${version.exe}</productVersion> - <txtProductVersion>${version}</txtProductVersion> + <txtProductVersion>${project.version}</txtProductVersion> <productName>PDF-Over</productName> <internalName>Uninstaller</internalName> <originalFilename>Uninstaller.exe</originalFilename> |