com.gradle.maven.extension.api.scan.PublishedBuildScan Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-enterprise-maven-extension Show documentation
Show all versions of gradle-enterprise-maven-extension Show documentation
Maven extension for Gradle Enterprise installations that provides Build Insights, Build Caching, Predictive Test Selection, and Test Distribution for Maven builds. Alternatively, Build Insights can be captured and viewed for free at scans.gradle.com and Build Caching can be used for free locally. See https://gradle.com for more information on Gradle Enterprise.
package com.gradle.maven.extension.api.scan;
import java.net.URI;
/**
* A reference to a published build scan.
*
* @since 1.2
*/
public interface PublishedBuildScan {
/**
* The ID of the build scan.
*
* Example: "bzoxfqz2pcmk4".
*
* @return the ID of the build scan
*/
String getBuildScanId();
/**
* The complete address of the build scan.
*
* Example: "https://my-server/s/bzoxfqz2pcmk4".
*
* @return the complete address of the build scan.
*/
URI getBuildScanUri();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy