-
Notifications
You must be signed in to change notification settings - Fork 212
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add polaris-version
artifact
#591
Conversation
Utility artifact that provides static resources containing the version and NOTICE + LICENSE* files, which can be directly served by Quarkus as static web resources, for example `http://127.0.0.1:19120/apache-polaris/NOTICE.txt`. Utility class that provides above mentioned resources programmatically, plus information for release-builds like the Git tag, Git commit ID, build system. Fixes apache#557
val versionProperties by | ||
tasks.registering(Sync::class) { | ||
destinationDir = project.layout.buildDirectory.dir("version").get().asFile | ||
from(project.layout.files("src/main/version")) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It probably doesn't matter much, but isn't src/main/resources
a more common name?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure, usually. But this should limit the replacement to that particular file - hence the separate folder.
try (InputStream in = resourceUrl.openConnection().getInputStream()) { | ||
return new String(in.readAllBytes(), UTF_8); | ||
} catch (IOException e) { | ||
throw new RuntimeException("Failed to load resource " + fullResource + " resource", e); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: word "resource" is repeated.
static { | ||
loadManifest("MANIFEST.MF"); | ||
} | ||
|
||
static void loadManifest(String manifestFile) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Using a HashMap is probably safe here but the below variant makes it clear that the map is read-only:
static { | |
loadManifest("MANIFEST.MF"); | |
} | |
static void loadManifest(String manifestFile) { | |
static { | |
BUILD_INFO = Map.of(loadManifest("MANIFEST.MF")); | |
} | |
static Map<String, String> loadManifest(String manifestFile) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure, but that would break the fake-manifest test
* information} is available, when Polaris has been built with the Gradle {@code -Prelease} | ||
* project property.. | ||
* | ||
* <p>Example value: {@code 1.0.0-incubating-SNAPSHOT} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmm is this example accurate? A release build wouldn't have the -SNAPSHOT
suffix.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It could, if SNAPSHOT releases are published. Anyway, added more examples.
* build-time Git information} is available, when Polaris has been built with the Gradle {@code | ||
* -Prelease} project property. | ||
* | ||
* <p>Example value: {@code 21.0.5} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this example accurate?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
copy-paste-magic
Utility artifact that provides static resources containing the version and NOTICE + LICENSE* files, which can be directly served by Quarkus as static web resources, for example
http://127.0.0.1:19120/apache-polaris/NOTICE.txt
.Utility class that provides above mentioned resources programmatically, plus information for release-builds like the Git tag, Git commit ID, build system.
Fixes #557