|
|
|
|
@ -42,14 +42,6 @@ public class Path { |
|
|
|
|
return root().getAbsolutePath(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public static String cachePath() { |
|
|
|
|
return cache().getAbsolutePath(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public static String filesPath() { |
|
|
|
|
return files().getAbsolutePath(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public static File so() { |
|
|
|
|
return check(new File(files() + File.separator + "so")); |
|
|
|
|
} |
|
|
|
|
@ -58,6 +50,10 @@ public class Path { |
|
|
|
|
return check(new File(cache() + File.separator + "js")); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public static File py() { |
|
|
|
|
return check(new File(cache() + File.separator + "py")); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public static File jar() { |
|
|
|
|
return check(new File(cache() + File.separator + "jar")); |
|
|
|
|
} |
|
|
|
|
@ -70,6 +66,10 @@ public class Path { |
|
|
|
|
return check(new File(cache() + File.separator + "exo")); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public static File jpa() { |
|
|
|
|
return check(new File(cache() + File.separator + "jpa")); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public static File thunder() { |
|
|
|
|
return check(new File(cache() + File.separator + "thunder")); |
|
|
|
|
} |
|
|
|
|
|