diff options
author | Jakob Heher <jakob.heher@iaik.tugraz.at> | 2022-04-29 12:38:39 +0200 |
---|---|---|
committer | Jakob Heher <jakob.heher@iaik.tugraz.at> | 2022-04-29 12:38:39 +0200 |
commit | c4511a534ce10104664d58c48c52ec0842a1056b (patch) | |
tree | 2ff737c058077b03ff53190b926b3f859ff9a371 /pdf-over-gui/pom.xml | |
parent | 918c3f0c22d43d173d3b3fea510bbdc19662a343 (diff) | |
download | pdf-over-c4511a534ce10104664d58c48c52ec0842a1056b.tar.gz pdf-over-c4511a534ce10104664d58c48c52ec0842a1056b.tar.bz2 pdf-over-c4511a534ce10104664d58c48c52ec0842a1056b.zip |
explicitly clean the build output directory (pdf-over-build)
Diffstat (limited to 'pdf-over-gui/pom.xml')
-rw-r--r-- | pdf-over-gui/pom.xml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/pdf-over-gui/pom.xml b/pdf-over-gui/pom.xml index 2f19b126..276a7d27 100644 --- a/pdf-over-gui/pom.xml +++ b/pdf-over-gui/pom.xml @@ -11,6 +11,7 @@ <properties> <izpack-standalone.version>4.3.5</izpack-standalone.version> <project.maindir>${project.parent.basedir}</project.maindir> + <project.build.output-dir>${project.maindir}/pdf-over-build</project.build.output-dir> <staging.dir>${project.build.directory}/staging/${target.name}</staging.dir> <swt.version>4.20</swt.version> </properties> @@ -128,6 +129,26 @@ </pluginManagement> <plugins> <plugin> + <artifactId>maven-clean-plugin</artifactId> + <version>3.2.0</version> + <executions> + <execution> + <id>auto-clean</id> + <phase>clean</phase> + <goals> + <goal>clean</goal> + </goals> + <configuration> + <filesets> + <fileset> + <directory>${project.build.output-dir}</directory> + </fileset> + </filesets> + </configuration> + </execution> + </executions> + </plugin> + <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.2</version> |