Skip to content

Commit

Permalink
clean goal added
Browse files Browse the repository at this point in the history
  • Loading branch information
AdamBien committed Dec 14, 2018
1 parent 68c5ef0 commit f88edd2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/airhacks/wad/watch/control/Builder.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
package com.airhacks.wad.watch.control;

import java.io.File;
import java.util.Collections;
import java.util.Arrays;
import java.util.List;
import java.util.Properties;
import org.apache.maven.shared.invoker.DefaultInvocationRequest;
Expand All @@ -21,7 +21,7 @@ public class Builder {

public Builder() {
this.invoker = new DefaultInvoker();
List<String> goals = Collections.singletonList("package");
List<String> goals = Arrays.asList("clean", "package");
Properties properties = new Properties();
properties.put("maven.test.skip", String.valueOf(true));
this.request = new DefaultInvocationRequest();
Expand Down

0 comments on commit f88edd2

Please sign in to comment.