We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 279308d + 95cb682 commit ebc9ee9Copy full SHA for ebc9ee9
1 file changed
pom.xml
@@ -148,6 +148,26 @@
148
</gitDescribe>
149
</configuration>
150
</plugin>
151
+ <plugin>
152
+ <artifactId>maven-antrun-plugin</artifactId>
153
+ <version>1.8</version>
154
+ <executions>
155
+ <execution>
156
+ <id>clean-plugins</id>
157
+ <!-- here the phase you need -->
158
+ <phase>clean</phase>
159
+ <goals>
160
+ <goal>run</goal>
161
+ </goals>
162
+ <configuration>
163
+ <tasks>
164
+ <delete dir="plugins"></delete>
165
+ <delete dir="sqlplugins"></delete>
166
+ </tasks>
167
+ </configuration>
168
+ </execution>
169
+ </executions>
170
+ </plugin>
171
</plugins>
172
</build>
173
</project>
0 commit comments