Skip to content

Commit

Permalink
Fixes the issue that the '--version' option not return the expected v…
Browse files Browse the repository at this point in the history
…ersion value of ion-java. (#57)
  • Loading branch information
linlin-s authored Aug 14, 2023
1 parent ac1e17a commit 3e7f8ca
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit 3e7f8ca

Please sign in to comment.