All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.truelicense.maven.plugin.generation.VersionTool Maven / Gradle / Ivy

Go to download

The TrueLicense Maven Plugin generates source files from Apache Velocity template files or obfuscates constant string values in class files.

There is a newer version: 3.2.0
Show newest version
/*
 * Copyright (C) 2005-2017 Schlichtherle IT Services.
 * All rights reserved. Use is subject to license terms.
 */

package net.truelicense.maven.plugin.generation;

import org.apache.maven.artifact.versioning.ArtifactVersion;
import org.apache.maven.artifact.versioning.DefaultArtifactVersion;

/**
 * An immutable Velocity tool which provides access to Maven artifact meta data.
 *
 * @author Christian Schlichtherle
 */
public final class VersionTool {

    public ArtifactVersion parse(String version) {
        return new DefaultArtifactVersion(version);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy