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

Fixes the issue that the '--version' option not return the expected version value of ion-java. #57

Merged
merged 1 commit into from
Aug 14, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/com/amazon/ion/benchmark/VersionInfo.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
class VersionInfo {

private static final String MANIFEST_FILE = "META-INF/MANIFEST.MF";
private static final String ION_JAVA_PROPERTIES_FILE = "META-INF/maven/com.amazon.ion/ion-java/pom.properties";
private static final String ION_JAVA_PROPERTIES_VERSION_KEY = "version";
private static final String ION_JAVA_PROPERTIES_FILE = "ion-java.properties";
private static final String ION_JAVA_PROPERTIES_VERSION_KEY = "build.version";
private static final String ION_JAVA_PROJECT_VERSION_ATTRIBUTE = "Ion-Java-Project-Version";
private static final String CLI_BUILD_TIME_ATTRIBUTE = "Ion-Java-Benchmark-Build-Time";
private static final String CLI_PROJECT_VERSION_ATTRIBUTE = "Ion-Java-Benchmark-Project-Version";
Expand Down
Loading