Class PluginLinksConfiguration
- java.lang.Object
-
- org.spongepowered.gradle.plugin.config.PluginLinksConfiguration
-
public class PluginLinksConfiguration extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description PluginLinksConfiguration(org.gradle.api.model.ObjectFactory factory)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.gradle.api.provider.Property<java.net.URL>
getHomepage()
org.gradle.api.provider.Property<java.net.URL>
getIssues()
org.gradle.api.provider.Property<java.net.URL>
getSource()
void
homepage(java.lang.String homepage)
void
issues(java.lang.String issues)
void
source(java.lang.String source)
-
-
-
Method Detail
-
getHomepage
@Input @Optional public org.gradle.api.provider.Property<java.net.URL> getHomepage()
-
homepage
public void homepage(java.lang.String homepage) throws java.net.MalformedURLException
- Throws:
java.net.MalformedURLException
-
getSource
@Input @Optional public org.gradle.api.provider.Property<java.net.URL> getSource()
-
source
public void source(java.lang.String source) throws java.net.MalformedURLException
- Throws:
java.net.MalformedURLException
-
getIssues
@Input @Optional public org.gradle.api.provider.Property<java.net.URL> getIssues()
-
issues
public void issues(java.lang.String issues) throws java.net.MalformedURLException
- Throws:
java.net.MalformedURLException
-
-