View Javadoc

1   package org.kuali.common.util.service;
2   
3   import java.io.File;
4   import java.util.List;
5   
6   public interface MavenService {
7   
8   	void execute(MavenContext context);
9   
10  	void execute(File workingDir, List<String> options, List<String> goals, List<String> phases);
11  
12  }