![JAR search and dependency download from the Maven repository](/logo.png)
io.github.chains_project.maven_lockfile.data.MetaData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of maven-lockfile Show documentation
Show all versions of maven-lockfile Show documentation
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.
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