We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d95f04c commit 95cb682Copy full SHA for 95cb682
pom.xml
@@ -140,6 +140,26 @@
140
</gitDescribe>
141
</configuration>
142
</plugin>
143
+ <plugin>
144
+ <artifactId>maven-antrun-plugin</artifactId>
145
+ <version>1.8</version>
146
+ <executions>
147
+ <execution>
148
+ <id>clean-plugins</id>
149
+ <!-- here the phase you need -->
150
+ <phase>clean</phase>
151
+ <goals>
152
+ <goal>run</goal>
153
+ </goals>
154
+ <configuration>
155
+ <tasks>
156
+ <delete dir="plugins"></delete>
157
+ <delete dir="sqlplugins"></delete>
158
+ </tasks>
159
+ </configuration>
160
+ </execution>
161
+ </executions>
162
+ </plugin>
163
</plugins>
164
</build>
165
</project>
0 commit comments