File tree Expand file tree Collapse file tree 1 file changed +13
-18
lines changed
Expand file tree Collapse file tree 1 file changed +13
-18
lines changed Original file line number Diff line number Diff line change 141141 </configuration >
142142 </plugin >
143143 <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 >
144+ <groupId >org.apache.maven.plugins</groupId >
145+ <artifactId >maven-clean-plugin</artifactId >
146+ <version >3.1.0</version >
147+ <configuration >
148+ <filesets >
149+ <fileset >
150+ <directory >${basedir} /plugins</directory >
151+ </fileset >
152+ <fileset >
153+ <directory >${basedir} /sqlplugins</directory >
154+ </fileset >
155+ </filesets >
156+ </configuration >
162157 </plugin >
163158 </plugins >
164159 </build >
You can’t perform that action at this time.
0 commit comments