Commit 84c2c43b215e9ebb11e678c4e94e3cbff270b2f3
1 parent
0b616d80
Exists in
master
[pom.xml] auto-clean when mvn package, so are not duplicated.
Showing
1 changed file
with
13 additions
and
1 deletions
Show diff stats
pom.xml
... | ... | @@ -132,7 +132,19 @@ |
132 | 132 | </configuration> |
133 | 133 | </execution> |
134 | 134 | </executions> |
135 | - | |
135 | + </plugin> | |
136 | + <plugin> | |
137 | + <artifactId>maven-clean-plugin</artifactId> | |
138 | + <version>2.5</version> | |
139 | + <executions> | |
140 | + <execution> | |
141 | + <id>auto-clean</id> | |
142 | + <phase>initialize</phase> | |
143 | + <goals> | |
144 | + <goal>clean</goal> | |
145 | + </goals> | |
146 | + </execution> | |
147 | + </executions> | |
136 | 148 | </plugin> |
137 | 149 | </plugins> |
138 | 150 | <pluginManagement> | ... | ... |