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 | |
parent | 338e1458388d30399860a9da54c8e9d86fcd37bc (diff) | |
download | pdf-over-19253585bcd31ebceba9c5ae85068f5dcb15fb91.tar.gz pdf-over-19253585bcd31ebceba9c5ae85068f5dcb15fb91.tar.bz2 pdf-over-19253585bcd31ebceba9c5ae85068f5dcb15fb91.zip |
fix maven warnings
-rw-r--r-- | pdf-over-commons/pom.xml | 6 | ||||
-rw-r--r-- | pdf-over-gui/pom.xml | 16 | ||||
-rw-r--r-- | pom.xml | 2 |
3 files changed, 9 insertions, 15 deletions
diff --git a/pdf-over-commons/pom.xml b/pdf-over-commons/pom.xml index 74f20352..d62f6257 100644 --- a/pdf-over-commons/pom.xml +++ b/pdf-over-commons/pom.xml @@ -22,12 +22,6 @@ <version>4.20</version> <scope>compile</scope> </dependency> - <dependency> - <groupId>org.eclipse.swt</groupId> - <artifactId>org.eclipse.swt.win32.win32.x86_64</artifactId> - <version>4.20</version> - <scope>compile</scope> - </dependency> </dependencies> 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> @@ -73,7 +73,7 @@ <developerConnection>scm:git:https://gitlab.iaik.tugraz.at/egiz/pdf-over.git</developerConnection> <url>http://git.egiz.gv.at/pdf-over</url> <tag>pdf-over-4.1.19</tag> - </scm> + </scm> <issueManagement> <system>JIRA</system> |