Skip to content
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

Merged
merged 2 commits into from
Dec 26, 2024
Merged

Add polaris-version artifact #591

merged 2 commits into from
Dec 26, 2024

Conversation

snazy
Copy link
Member

@snazy snazy commented Dec 26, 2024

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

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"))
Copy link
Contributor

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?

Copy link
Member Author

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);
Copy link
Contributor

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.

Comment on lines +191 to +195
static {
loadManifest("MANIFEST.MF");
}

static void loadManifest(String manifestFile) {
Copy link
Contributor

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:

Suggested change
static {
loadManifest("MANIFEST.MF");
}
static void loadManifest(String manifestFile) {
static {
BUILD_INFO = Map.of(loadManifest("MANIFEST.MF"));
}
static Map<String, String> loadManifest(String manifestFile) {

Copy link
Member Author

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}
Copy link
Contributor

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.

Copy link
Member Author

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}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this example accurate?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

copy-paste-magic

@snazy snazy requested a review from adutra December 26, 2024 18:51
@snazy snazy merged commit 5faadbd into apache:main Dec 26, 2024
5 checks passed
@snazy snazy deleted the version-artifact branch December 26, 2024 19:20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Add NOTICE + LICENSE* as static resources to distributables
2 participants