summaryrefslogtreecommitdiff
path: root/pdf-over-install-helper
diff options
context:
space:
mode:
authorAndreas Abraham <aabraham@iaik.tugraz.at>2018-03-23 16:15:11 +0100
committerAndreas Abraham <aabraham@iaik.tugraz.at>2018-03-23 16:15:11 +0100
commit804499501e428044734030d14bffaa62f8002984 (patch)
tree7fa6f575b32c68870878551c206f10afcf0b5124 /pdf-over-install-helper
parent823751ad89497eddc5ed2e76d3be63dcc0c357b8 (diff)
downloadpdf-over-804499501e428044734030d14bffaa62f8002984.tar.gz
pdf-over-804499501e428044734030d14bffaa62f8002984.tar.bz2
pdf-over-804499501e428044734030d14bffaa62f8002984.zip
Code cleanup, Mac script changed
Diffstat (limited to 'pdf-over-install-helper')
-rw-r--r--pdf-over-install-helper/pom.xml39
1 files changed, 24 insertions, 15 deletions
diff --git a/pdf-over-install-helper/pom.xml b/pdf-over-install-helper/pom.xml
index 5114e61e..80c9cde3 100644
--- a/pdf-over-install-helper/pom.xml
+++ b/pdf-over-install-helper/pom.xml
@@ -1,4 +1,5 @@
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
@@ -6,6 +7,7 @@
<artifactId>pdf-over</artifactId>
<version>4.1.17-SNAPSHOT</version>
</parent>
+<!-- <groupId>at.a-sit</groupId> -->
<artifactId>pdf-over-install-helper</artifactId>
<version>1.0.0</version>
@@ -13,6 +15,7 @@
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
+<!-- <version>2.4</version> -->
</dependency>
</dependencies>
@@ -35,25 +38,31 @@
</configuration>
</plugin>
<plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-dependency-plugin</artifactId>
- <executions>
- <execution>
- <id>copy-dependencies</id>
- <phase>prepare-package</phase>
- <goals>
- <goal>copy-dependencies</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-dependency-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>copy-dependencies</id>
+ <phase>prepare-package</phase>
+ <goals>
+ <goal>copy-dependencies</goal>
+ </goals>
+ <configuration>
+ <outputDirectory>
+ ${project.build.directory}
+ </outputDirectory>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
+ <addMavenDescriptor>false</addMavenDescriptor>
<manifest>
- <addClasspath>true</addClasspath>
+ <addClasspath>true</addClasspath>
<mainClass>at.asit.helper.Main</mainClass>
</manifest>
</archive>