Interface UrlArtifactRepository

All Known Subinterfaces:
IvyArtifactRepository, MavenArtifactRepository

public interface UrlArtifactRepository
A repository that supports resolving artifacts from a URL.
Since:
6.0
  • Method Summary

    Modifier and Type
    Method
    Description
    Specifies whether to continue checking other repositories if this repository is disabled due to connection or communication errors.
    The base URL of this repository.
    boolean
    Specifies whether it is acceptable to communicate with a repository over an insecure HTTP connection.
    void
    setAllowInsecureProtocol(boolean allowInsecureProtocol)
    Specifies whether it is acceptable to communicate with a repository over an insecure HTTP connection.
    void
    Sets the base URL of this repository.
    void
    setUrl(URI url)
    Sets the base URL of this repository.
  • Method Details

    • getUrl

      URI getUrl()
      The base URL of this repository.
      Returns:
      The URL.
    • setUrl

      void setUrl(URI url)
      Sets the base URL of this repository.
      Parameters:
      url - The base URL.
    • setUrl

      void setUrl(Object url)
      Sets the base URL of this repository.
      Parameters:
      url - The base URL.
    • isAllowInsecureProtocol

      boolean isAllowInsecureProtocol()
      Specifies whether it is acceptable to communicate with a repository over an insecure HTTP connection.

      For security purposes this intentionally requires a user to opt-in to using insecure protocols on case by case basis.

      Gradle intentionally does not offer a global system/gradle property that allows a universal disable of this check.

      Allowing communication over insecure protocols allows for a man-in-the-middle to impersonate the intended server, and gives an attacker the ability to serve malicious executable code onto the system.

      See also: Want to take over the Java ecosystem? All you need is a MITM!

    • setAllowInsecureProtocol

      void setAllowInsecureProtocol(boolean allowInsecureProtocol)
      Specifies whether it is acceptable to communicate with a repository over an insecure HTTP connection.
      See Also:
    • getAllowInsecureContinueWhenDisabled

      Property<Boolean> getAllowInsecureContinueWhenDisabled()
      Specifies whether to continue checking other repositories if this repository is disabled due to connection or communication errors.

      The conventional value for this property is false, which means to not continue to check other repositories after this one.

      Returns:
      a property that control the behavior to continue or not
      Since:
      9.3.0
      See Also: