Package com.osacky.scan.tag
Class ScanApi
- java.lang.Object
-
- com.osacky.scan.tag.ScanApi
-
public class ScanApi extends java.lang.ObjectFor build and plugin authors to easily tag build scans.
-
-
Constructor Summary
Constructors Constructor Description ScanApi(org.gradle.api.Project project)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidlink(java.lang.String name, java.lang.String url)CallsBuildScanExtension.link(String, String)if available.voidtag(java.lang.String tag)CallsBuildScanExtension.tag(String)if available.voidvalue(java.lang.String name, java.lang.String value)CallsBuildScanExtension.value(String, String)if available.
-
-
-
Method Detail
-
tag
public void tag(java.lang.String tag)
CallsBuildScanExtension.tag(String)if available.- Parameters:
tag- a value to add as a Build scan tag
-
value
public void value(java.lang.String name, java.lang.String value)CallsBuildScanExtension.value(String, String)if available.- Parameters:
name- the key for the custom valuevalue- the data to add
-
link
public void link(java.lang.String name, java.lang.String url)CallsBuildScanExtension.link(String, String)if available.- Parameters:
name- the name of the URL link to be displayed in the UIurl- the URL to follow when the link is clicked
-
-