Skip to content

Commit

Permalink
Keep artifacts on cleaning
Browse files Browse the repository at this point in the history
  • Loading branch information
kinhong committed Feb 22, 2019
1 parent 926a112 commit 14835f9
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
19 changes: 19 additions & 0 deletions app/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,25 @@
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>3.1.0</version>
<configuration>
<excludeDefaultDirectories>true</excludeDefaultDirectories>
<filesets>
<fileset>
<directory>target</directory>
<includes>
<include>**</include>
</includes>
<excludes>
<exclude>package/**</exclude>
</excludes>
</fileset>
</filesets>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<name>OpenLabeler</name>

<properties>
<revision>1.0.0</revision>
<revision>0.0.0</revision>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<mainClass>com.easymobo.openlabeler.OpenLabeler</mainClass>
</properties>
Expand Down

0 comments on commit 14835f9

Please sign in to comment.