com.arangodb.PackageVersion.in Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Core module for ArangoDB Java Driver
package com.arangodb;
/**
* Automatically generated from PackageVersion.java.in by replacer plugin.
*/
public final class PackageVersion {
public final static boolean SHADED = isShaded();
public final static String VERSION = "@project.version@" + (isShaded() ? "-shaded" : "");
private static boolean isShaded() {
try {
Class.forName("com.arangodb.shaded.fasterxml.jackson.core.JsonFactory");
return true;
} catch (ClassNotFoundException e) {
return false;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy