diff options
author | Andreas Abraham <aabraham@iaik.tugraz.at> | 2018-03-21 16:35:44 +0100 |
---|---|---|
committer | Andreas Abraham <aabraham@iaik.tugraz.at> | 2018-03-21 16:35:44 +0100 |
commit | 823751ad89497eddc5ed2e76d3be63dcc0c357b8 (patch) | |
tree | 907530cb817a4ba085225583d3aec1d769980b2d /pdf-over-install-helper/pom.xml | |
parent | 6c0b2c9ed89f39f2d0606c113173645476de69b6 (diff) | |
download | pdf-over-823751ad89497eddc5ed2e76d3be63dcc0c357b8.tar.gz pdf-over-823751ad89497eddc5ed2e76d3be63dcc0c357b8.tar.bz2 pdf-over-823751ad89497eddc5ed2e76d3be63dcc0c357b8.zip |
postinstall scripts changed, error message
Diffstat (limited to 'pdf-over-install-helper/pom.xml')
-rw-r--r-- | pdf-over-install-helper/pom.xml | 27 |
1 files changed, 14 insertions, 13 deletions
diff --git a/pdf-over-install-helper/pom.xml b/pdf-over-install-helper/pom.xml index 9ca9eedb..5114e61e 100644 --- a/pdf-over-install-helper/pom.xml +++ b/pdf-over-install-helper/pom.xml @@ -6,7 +6,6 @@ <artifactId>pdf-over</artifactId>
<version>4.1.17-SNAPSHOT</version>
</parent>
-
<artifactId>pdf-over-install-helper</artifactId>
<version>1.0.0</version>
@@ -35,26 +34,28 @@ <debuglevel>lines,vars,source</debuglevel>
</configuration>
</plugin>
-<!-- <plugin> -->
-<!-- <artifactId>maven-release-plugin</artifactId> -->
-<!-- <version>2.4.2</version> -->
-<!-- <dependencies> -->
-<!-- <dependency> -->
-<!-- <groupId>org.apache.maven.scm</groupId> -->
-<!-- <artifactId>maven-scm-provider-gitexe</artifactId> -->
-<!-- <version>1.8.1</version> -->
-<!-- </dependency> -->
-<!-- </dependencies> -->
-<!-- </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-jar-plugin</artifactId>
<configuration>
<archive>
<manifest>
+ <addClasspath>true</addClasspath>
<mainClass>at.asit.helper.Main</mainClass>
</manifest>
- <addMavenDescriptor>false</addMavenDescriptor>
</archive>
</configuration>
</plugin>
|