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

io.github.chains_project.maven_lockfile.data.MetaData Maven / Gradle / Ivy

Go to download

This plugin is a state-of-the-art solution that can be used to validate the integrity of a maven repository. It does this by generating a lock file that contains the checksums of all the artifacts in the repository. The lock file can then be used to validate the integrity of the repository. This guards the supply chain against malicious actors that might tamper with the artifacts in the repository.

There is a newer version: 5.3.5
Show newest version
package io.github.chains_project.maven_lockfile.data;

public class MetaData {

    private final Environment environment;
    private final Config config;

    public MetaData(Environment environment, Config config) {
        this.environment = environment;
        this.config = config;
    }

    /**
     * @return the config
     */
    public Config getConfig() {
        return config;
    }

    /**
     * @return the environment
     */
    public Environment getEnvironment() {
        return environment;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy