-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathget_jreleaser.java
102 lines (89 loc) · 3.97 KB
/
get_jreleaser.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
//JAVA 11+
import java.io.FileNotFoundException;
import java.io.IOException;
import java.net.URL;
import java.nio.file.Files;
import java.nio.file.Path;
import static java.nio.file.StandardCopyOption.REPLACE_EXISTING;
import static java.nio.file.StandardOpenOption.CREATE;
import static java.nio.file.StandardOpenOption.TRUNCATE_EXISTING;
import static java.nio.file.StandardOpenOption.WRITE;
class get_jreleaser {
public static void main(String... args) throws Exception {
// default version
var version = "latest";
if (args.length > 1) {
System.err.println("Usage: java get_jreleaser.java [VERSION]");
System.exit(1);
}
// grab the version if specified
if (args.length == 1) {
version = args[0];
}
// check
if (null == version || version.isEmpty()) {
System.out.printf("❌ Version '%s' is invalid%n", version);
System.exit(1);
}
var versionFile = Path.of("JRELEASER_VERSION");
var cachedVersion = "";
if (Files.exists(versionFile)) {
try {
cachedVersion = Files.readString(versionFile).trim();
} catch (IOException e) {
System.out.printf("☠️ JReleaser %s could not be resolved%n", version);
e.printStackTrace();
System.exit(1);
}
}
// resolve latest to a tagged release
if ("latest".equalsIgnoreCase(version)) {
var url = "https://jreleaser.org/releases/latest/download/VERSION";
try (var stream = new URL(url).openStream()) {
System.out.printf("✅ Located version marker%n");
Files.copy(stream, versionFile, REPLACE_EXISTING);
version = new String(Files.readAllBytes(versionFile)).trim();
System.out.printf("✅ JReleaser latest resolves to %s%n", version);
} catch (FileNotFoundException e) {
System.out.printf("❌ JReleaser %s not found%n", version);
e.printStackTrace();
System.exit(1);
} catch (IOException e) {
System.out.printf("☠️ JReleaser %s could not be downloaded/copied%n", version);
e.printStackTrace();
System.exit(1);
}
} else {
try {
Files.writeString(versionFile, version, CREATE, TRUNCATE_EXISTING, WRITE);
} catch (IOException e) {
System.out.printf("☠️ JReleaser %s could not be resolved%n", version);
e.printStackTrace();
System.exit(1);
}
}
var jreleaserJar = Path.of("jreleaser-cli.jar");
if (version.equals(cachedVersion) && Files.exists(jreleaserJar)) {
// assume jreleaserJar has the expected version for now
System.out.printf("✅ JReleaser %s already downloaded%n", version);
System.exit(0);
}
// setup the actual download
var tag = !"early-access".equals(version) ? "v" + version : version;
var url = "https://github.com/jreleaser/jreleaser/releases/download/" + tag + "/jreleaser-tool-provider-" + version + ".jar";
try (var stream = new URL(url).openStream()) {
System.out.printf("✅ Located JReleaser %s%n", version);
System.out.printf("⬇️ Downloading %s%n", url);
var size = Files.copy(stream, jreleaserJar, REPLACE_EXISTING);
System.out.printf("%s << copied %d bytes%n", jreleaserJar, size);
System.out.printf("✅ JReleaser installed successfully%n");
} catch (FileNotFoundException e) {
System.out.printf("❌ JReleaser %s not found%n", version);
System.exit(1);
} catch (IOException e) {
System.out.printf("☠️ JReleaser %s could not be downloaded/copied%n", version);
e.printStackTrace();
System.exit(1);
}
}
}