File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 149149 </configuration >
150150 </plugin >
151151 <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 >
152+ <groupId >org.apache.maven.plugins</groupId >
153+ <artifactId >maven-clean-plugin</artifactId >
154+ <version >3.1.0</version >
155+ <configuration >
156+ <filesets >
157+ <fileset >
158+ <directory >${basedir} /plugins</directory >
159+ </fileset >
160+ <fileset >
161+ <directory >${basedir} /sqlplugins</directory >
162+ </fileset >
163+ </filesets >
164+ </configuration >
170165 </plugin >
171166 </plugins >
172167 </build >
You can’t perform that action at this time.
0 commit comments