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

aQute.bnd.maven.support.CachedPom Maven / Gradle / Ivy

There is a newer version: 7.0.0
Show newest version
package aQute.bnd.maven.support;

import java.io.File;
import java.net.URI;

public class CachedPom extends Pom {
	final MavenEntry maven;

	CachedPom(MavenEntry mavenEntry, URI repo) throws Exception {
		super(mavenEntry.maven, mavenEntry.getPomFile(), repo);
		this.maven = mavenEntry;
	}

	@Override
	public File getArtifact() throws Exception {
		return maven.getArtifact();
	}

	public MavenEntry getMavenEntry() {
		return maven;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy