File tree 5 files changed +10
-5
lines changed
main/java/org/apache/maven/plugins/clean
test/java/org/apache/maven/plugins/clean
5 files changed +10
-5
lines changed Original file line number Diff line number Diff line change 20
20
21
21
import java .io .File ;
22
22
import java .io .IOException ;
23
+
23
24
import org .apache .maven .execution .MavenSession ;
24
25
import org .apache .maven .plugin .AbstractMojo ;
25
26
import org .apache .maven .plugin .MojoExecutionException ;
Original file line number Diff line number Diff line change 18
18
*/
19
19
package org .apache .maven .plugins .clean ;
20
20
21
- import static org .apache .maven .plugins .clean .CleanMojo .FAST_MODE_BACKGROUND ;
22
- import static org .apache .maven .plugins .clean .CleanMojo .FAST_MODE_DEFER ;
23
-
24
21
import java .io .File ;
25
22
import java .io .IOException ;
26
23
import java .lang .reflect .InvocationHandler ;
31
28
import java .nio .file .StandardCopyOption ;
32
29
import java .util .ArrayDeque ;
33
30
import java .util .Deque ;
31
+
34
32
import org .apache .maven .execution .ExecutionListener ;
35
33
import org .apache .maven .execution .MavenSession ;
36
34
import org .apache .maven .plugin .logging .Log ;
37
35
import org .apache .maven .shared .utils .Os ;
38
36
import org .eclipse .aether .SessionData ;
39
37
38
+ import static org .apache .maven .plugins .clean .CleanMojo .FAST_MODE_BACKGROUND ;
39
+ import static org .apache .maven .plugins .clean .CleanMojo .FAST_MODE_DEFER ;
40
+
40
41
/**
41
42
* Cleans directories.
42
43
*
Original file line number Diff line number Diff line change 20
20
21
21
import java .io .File ;
22
22
import java .util .Arrays ;
23
+
23
24
import org .apache .maven .shared .utils .io .DirectoryScanner ;
24
25
import org .apache .maven .shared .utils .io .SelectorUtils ;
25
26
Original file line number Diff line number Diff line change 18
18
*/
19
19
package org .apache .maven .plugins .clean ;
20
20
21
- import static org .apache .commons .io .FileUtils .copyDirectory ;
22
-
23
21
import java .io .File ;
24
22
import java .io .RandomAccessFile ;
25
23
import java .nio .channels .FileChannel ;
26
24
import java .nio .channels .FileLock ;
25
+
27
26
import org .apache .maven .plugin .MojoExecutionException ;
28
27
import org .apache .maven .plugin .testing .AbstractMojoTestCase ;
29
28
29
+ import static org .apache .commons .io .FileUtils .copyDirectory ;
30
+
30
31
/**
31
32
* Test the clean mojo.
32
33
*
Original file line number Diff line number Diff line change 19
19
package org .apache .maven .plugins .clean ;
20
20
21
21
import java .io .File ;
22
+
22
23
import org .codehaus .plexus .util .cli .CommandLineUtils ;
23
24
import org .codehaus .plexus .util .cli .Commandline ;
24
25
You can’t perform that action at this time.
0 commit comments