Skip to content

Commit 0ef60eb

Browse files
committed
Restore default clean execution and remove verbose flags
1 parent 624c505 commit 0ef60eb

1 file changed

Lines changed: 19 additions & 2 deletions

File tree

java-manta-client/pom.xml

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,25 @@
174174
<plugin>
175175
<artifactId>maven-clean-plugin</artifactId>
176176
<executions>
177+
<!--
178+
We need to add the default clean phase since we're specifying executions.
179+
-->
180+
<execution>
181+
<id>default-clean</id>
182+
<phase>clean</phase>
183+
<goals>
184+
<goal>clean</goal>
185+
</goals>
186+
<configuration>
187+
<excludeDefaultDirectories>true</excludeDefaultDirectories>
188+
<filesets>
189+
<fileset>
190+
<directory>src</directory>
191+
</fileset>
192+
</filesets>
193+
</configuration>
194+
</execution>
195+
177196
<!--
178197
Remove src after use. This is for tidyness but not correctness.
179198
SOMETHING in maven allows the sources jar to be built during the package phase
@@ -188,7 +207,6 @@
188207
</goals>
189208
<configuration>
190209
<excludeDefaultDirectories>true</excludeDefaultDirectories>
191-
<verbose>true</verbose>
192210
<filesets>
193211
<fileset>
194212
<directory>src</directory>
@@ -209,7 +227,6 @@
209227
</goals>
210228
<configuration>
211229
<excludeDefaultDirectories>true</excludeDefaultDirectories>
212-
<verbose>true</verbose>
213230
<filesets>
214231
<fileset>
215232
<directory>src</directory>

0 commit comments

Comments
 (0)