public class VersionUtil extends Object
Version
s.
Note that this class can be used in two roles: first, as a static utility class for loading purposes, and second, as a singleton loader of per-module version information. In latter case one must sub-class to get proper per-module instance; and sub-class must reside in same Java package as matching "VERSION.txt" file.
Modifier and Type | Field and Description |
---|---|
static String |
VERSION_FILE |
Modifier | Constructor and Description |
---|---|
protected |
VersionUtil() |
Modifier and Type | Method and Description |
---|---|
static Version |
mavenVersionFor(ClassLoader classLoader,
String groupId,
String artifactId)
Will attempt to load the maven version for the given groupId and
artifactId.
|
static Version |
parseVersion(String versionStr)
Deprecated.
|
static Version |
parseVersion(String versionStr,
String groupId,
String artifactId) |
protected static int |
parseVersionPart(String partStr) |
Version |
version() |
static Version |
versionFor(Class<?> cls)
Helper method that will try to load version information for specified
class.
|
public static final String VERSION_FILE
public Version version()
public static Version versionFor(Class<?> cls)
Version.unknownVersion()
is
returned.public static Version mavenVersionFor(ClassLoader classLoader, String groupId, String artifactId)
classLoader
- the ClassLoader to load the pom.properties file fromgroupId
- the groupId of the libraryartifactId
- the artifactId of the library@Deprecated public static Version parseVersion(String versionStr)
public static Version parseVersion(String versionStr, String groupId, String artifactId)
protected static int parseVersionPart(String partStr)
Copyright © 2012-2013 FasterXML. All Rights Reserved.