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

com.instaclustr.version.VersionModule Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
package com.instaclustr.version;

import com.google.inject.AbstractModule;

public class VersionModule extends AbstractModule {
    private final Version version;

    public VersionModule(final String[] version) {
        this(Version.parse(version));
    }

    public VersionModule(final Version version) {
        this.version = version;
    }

    @Override
    protected void configure() {
        bind(Version.class).toInstance(this.version);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy