Here you can find the source of extractVersion(Path pathToBinaries)
public static String extractVersion(Path pathToBinaries)
//package com.java2s; import java.nio.file.Path; public class Main { /** @return the version of the artifact out of path */ public static String extractVersion(Path pathToBinaries) { return pathToBinaries.getParent().getFileName().toString(); }/*from w w w. j a va 2 s .c om*/ }