本文整理了Java中org.gradle.api.tasks.Nested.<init>()
方法的一些代码示例,展示了Nested.<init>()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Nested.<init>()
方法的具体详情如下:
包路径:org.gradle.api.tasks.Nested
类名称:Nested
方法名:<init>
暂无
代码示例来源:origin: uber/okbuck
@Nested public OkBuckExtension okBuckExtension;
@Nested public KotlinExtension kotlinExtension;
@Nested public ScalaExtension scalaExtension;
代码示例来源:origin: blox/blox
@Nested private List<SwaggerFilter> filters = new ArrayList<>();
代码示例来源:origin: gradle.plugin.com.fizzed/rocker-gradle-plugin
/**
* @return the config
*/
@Nested
public RockerConfiguration getRockerProjectConfig() {
return rockerProjectConfig;
}
代码示例来源:origin: org.gosu-lang.gosu/gradle-gosu-plugin
/**
* Returns the gosudoc generation options.
* @return the gosudoc options
*/
@Nested
public GosuDocOptions getGosuDocOptions() {
return _gosuDocOptions;
}
代码示例来源:origin: com.android.tools.build/gradle-core
@SuppressWarnings("unused")
@Nested
public ExternalNativeJsonGenerator getExternalNativeJsonGenerator() {
return generator;
}
代码示例来源:origin: org.gosu-lang.gosu/gradle-gosu-plugin
/**
* @return options for running the Gosu compiler in a separate process. These options only take effect
* if {@code fork} is set to {@code true}.
*/
@Nested
public ForkOptions getForkOptions() {
return forkOptions;
}
代码示例来源:origin: org.gosu-lang.gosu/gradle-gosu-plugin
/**
* @return Gosu-specific compilation options.
*/
@Nested
public GosuCompileOptions getGosuOptions() {
return _gosuCompileOptions;
}
代码示例来源:origin: gradle.plugin.com.github.gradle-guides/gradle-site-plugin
/**
* Returns the custom data to be used in the generated web page.
*
* @return The custom data.
*/
@Nested
public CustomData getCustomData() {
return customData;
}
代码示例来源:origin: org.gosu-lang.gosu/gradle-gosu-plugin
/**
* @return Options for running the gosudoc generator in a separate process.
*/
@Nested
public ForkOptions getForkOptions() {
return forkOptions;
}
代码示例来源:origin: gradle.plugin.com.google.cloud.tools/jib-gradle-plugin
/**
* This will call the property {@code "jib"} so that it is the same name as the extension. This
* way, the user would see error messages for missing configuration with the prefix {@code jib.}.
*
* @return the {@link JibExtension}.
*/
@Nested
@Nullable
public JibExtension getJib() {
return jibExtension;
}
代码示例来源:origin: gradle.plugin.com.google.cloud.tools/jib-gradle-plugin
@Nested
@Optional
public AuthParameters getAuth() {
// System properties are handled in ConfigurationPropertyValidator
return auth;
}
代码示例来源:origin: com.android.tools.build/gradle-core
@Nested
@Optional
public SigningConfig getSigningConfig() {
return signingConfig;
}
代码示例来源:origin: com.android.tools.build/gradle-core
@Nested
@Optional
public CoreSigningConfig getSigningConfig() {
return signingConfig;
}
代码示例来源:origin: gradle.plugin.com.google.cloud.tools/jib-gradle-plugin
@Nested
@Optional
public ExtraDirectoryParameters getExtraDirectory() {
return extraDirectory;
}
代码示例来源:origin: gradle.plugin.com.google.cloud.tools/jib-gradle-plugin
@Nested
@Optional
public AuthParameters getAuth() {
// System properties are handled in ConfigurationPropertyValidator
return auth;
}
代码示例来源:origin: com.android.tools.build/gradle-core
@Nested
@Optional
public SigningConfig getSigningConfig() {
return signingConfig;
}
代码示例来源:origin: gradle.plugin.com.google.cloud.tools/jib-gradle-plugin
@Nested
@Optional
public BaseImageParameters getFrom() {
return from;
}
代码示例来源:origin: gradle.plugin.com.google.cloud.tools/jib-gradle-plugin
@Nested
@Optional
public TargetImageParameters getTo() {
return to;
}
代码示例来源:origin: gradle.plugin.com.github.spotbugs/gradlePlugin
/**
* A filter specifying baseline bugs to exclude from being reported.
*
* @return filter specifying baseline bugs to exclude from being reported
*/
@Incubating
@Nested
@Optional
public TextResource getExcludeBugsFilterConfig() {
return excludeBugsFilterConfig;
}
代码示例来源:origin: gradle.plugin.com.github.spotbugs/spotbugs-gradle-plugin
/**
* A filter specifying baseline bugs to exclude from being reported.
*
* @return filter specifying baseline bugs to exclude from being reported
*/
@Incubating
@Nested
@Optional
public TextResource getExcludeBugsFilterConfig() {
return excludeBugsFilterConfig;
}
内容来源于网络,如有侵权,请联系作者删除!