com.mooltiverse.oss.nyx.version.MavenVersion Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java Show documentation
Show all versions of java Show documentation
com.mooltiverse.oss.nyx:java:3.0.6 All the Nyx Java artifacts
The newest version!
package com.mooltiverse.oss.nyx.version;
/**
* The implementation of a Maven compliant version.
*
* TODO: implement this class as per https://github.com/mooltiverse/nyx/issues/4. As of now this class is just a placeholder.
*/
abstract class MavenVersion extends Version implements Comparable {
/**
* Serial version UID to comply with {@link java.io.Serializable}
*/
private static final long serialVersionUID = 1L;
/**
* Default constructor hidden on purpose
*/
private MavenVersion() {
super();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy