有个时候多人多team协作开发过程中,会存在临时修改的二方包,同样版本需要重新拉取的情况。发现大部分人包括自己长久以来也是采用最原始的方法,一层层找到对应的目录删除对应的文件。某天实在是受不了了,写了个小工具分享下,小代码解决小问题。
外部依赖:fastjson,commons-io,commons-lang3,不要嘲笑,有工具干嘛不用呢,非得造轮子吗。
import com.alibaba.fastjson.JSON;
import org.apache.commons.io.FileUtils;
import org.apache.commons.io.IOUtils;
import org.apache.commons.lang3.StringUtils;
import java.io.File;
import java.io.IOException;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.HashMap;
import java.util.Map;
/**
* @author tjw
*/
public class MavenLocalRepoCleaner {
/**
* coordinateJson
* {
* "groupId1":"artifactId1:version1,artifactId2:version2...",
* "groupId2":"artifactId:version,..."
* }
*/
public static void main(String[] args) {
String coordinateJson="{"
+ "\"top.xbynet.xxx\":\"\""
+ "}";
Map<String,String> coordinateMap=JSON.parseObject(coordinateJson,HashMap.class);
Path m2Repo= Paths.get(System.getProperty("user.home"),".m2","repository");
coordinateMap.entrySet().stream().forEach(v->{
String groupId=v.getKey();
groupId = groupId.replace('.', File.separatorChar);
if(StringUtils.isBlank(v.getValue())){
Path dir = Paths.get(m2Repo.toString(), groupId);
try {
FileUtils.deleteDirectory(dir.toFile());
} catch (IOException e) {
e.printStackTrace();
}
}else {
String[] artfactIdVers = v.getValue().split(",");
for (String str : artfactIdVers) {
String ver = "";
if (str.contains(":")) {
ver = str.split(":")[1];
}
String artfactId = str.split(":")[0];
Path dir = Paths.get(m2Repo.toString(), groupId, artfactId, ver);
try {
FileUtils.deleteDirectory(dir.toFile());
} catch (IOException e) {
e.printStackTrace();
}
}
}
});
}
}
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。