Skip to content
Commits on Source (2)
......@@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>fr.gaellalire.vestige</groupId>
<artifactId>vestige.spi.resolver</artifactId>
<version>3.1-SNAPSHOT</version>
<version>3.1</version>
<packaging>jar</packaging>
<name>Vestige :: SPI :: Resolver</name>
<build>
......@@ -231,7 +231,7 @@
<scm>
<connection>scm:git:git@gaellalire.fr:gaellalire/vestige.spi.resolver.git</connection>
<developerConnection>scm:git:git@gaellalire.fr:gaellalire/vestige.spi.resolver.git</developerConnection>
<tag>HEAD</tag>
<tag>vestige.spi.resolver-3.1</tag>
</scm>
<reporting>
<plugins>
......
......@@ -45,7 +45,8 @@ public interface ResolvedClassLoaderConfiguration {
AttachedClassLoader verifiedAttach(String verificationMetadata) throws ResolverException, InterruptedException;
/**
* @param verificationMetadata verification metadata you can get with {@link #createVerificationMetadata(String)}.
* @param verificationMetadata verification metadata you can get with {@link #createVerificationMetadata(String)} on the {@link ResolvedClassLoaderConfiguration} which has no
* dependency exclusion.
* @since 3.0
*/
PartiallyVerifiedAttachment partiallyVerifiedAttach(String verificationMetadata) throws ResolverException, InterruptedException;
......
......@@ -37,4 +37,9 @@ public interface VestigeJarEntry {
Certificate[] getCertificates();
/**
* @since 3.1
*/
VestigeJar getVestigeJar();
}