Tabnine Logo
Option
Code IndexAdd Tabnine to your IDE (free)

How to use
Option
in
org.gradle.api.tasks.options

Best Java code snippets using org.gradle.api.tasks.options.Option (Showing top 20 results out of 315)

origin: gradle.plugin.io.sitoolkit.cv/sit-cv-gradle-plugin

@Option(option = "cvArgs", description = "Project directory path to generate report")
public void setCvArgs(String cvArgs) {
  this.cvArgs = cvArgs;
}
origin: etiennestuder/gradle-credentials-plugin

@Option(option = "key", description = "The credentials key.")
@org.gradle.api.tasks.options.Option(option = "key", description = "The credentials key.")
public void setKey(String key) {
  this.key = key;
}
origin: com.ca.apim.gateway/gateway-export-plugin

@Option(option = "outputType", description = "The output type of the configuration files. Either 'yaml' or 'json'.")
public void setOutputType(String format) {
  JsonTools.INSTANCE.setOutputType(format);
}
origin: gradle.plugin.tui.sse.mde4cpp/MDE4CPPGeneratePlugin

/**
 * @param modelFilePath - model path
 */
@Option(option = "model", description = "Configure the path to the model used by generator.")
public void setModelFilePath(String modelFilePath)
{
  File file = new File(modelFilePath);
  if (file.exists())
  {
    setModelFilePath(file);
  }
}
 
origin: gradle-clojure/gradle-clojure

@Option(option = "handler", description = "Qualified name of nREPL handler function.")
public void setHandler(String handler) {
 this.handler.set(handler);
}
origin: gradle.plugin.tui.sse.mde4cpp/MDE4CPPGeneratePlugin

/**
 * @param structureOnly - indicates, that the generator UML4COO should be used for a UML model
 */
@Option(option = "structureOnly", description = "Indicates, that the generator UML4CPP should be used for a UML model.")
public void setStructureOnlyAsOption(boolean structureOnly)
{
  if (structureOnly)
  {
    setStructureOnly(structureOnly);
  }
}
 
origin: etiennestuder/gradle-credentials-plugin

@Option(option = "key", description = "The credentials key.")
@org.gradle.api.tasks.options.Option(option = "key", description = "The credentials key.")
public void setKey(String key) {
  this.key = key;
}
origin: io.github.gradle-clojure/gradle-clojure-plugin

@Option(option = "middleware", description = "Qualified names of nREPL middleware functions.")
public void setMiddleware(List<String> middleware) {
 if (middleware != null) {
  this.userMiddleware.set(middleware);
 }
}
origin: palantir/gradle-baseline

@Option(option = "fix", description = "Whether to apply the suggested fix to versions.props")
public final void setShouldFix(boolean shouldFix) {
  this.shouldFix.set(shouldFix);
}
origin: etiennestuder/gradle-credentials-plugin

@Option(option = "value", description = "The credentials value.")
@org.gradle.api.tasks.options.Option(option = "value", description = "The credentials value.")
public void setValue(String value) {
  this.value = value;
}
origin: gradle-clojure/gradle-clojure

@Option(option = "middleware", description = "Qualified names of nREPL middleware functions.")
public void setMiddleware(List<String> middleware) {
 if (middleware != null) {
  this.userMiddleware.set(middleware);
 }
}
origin: io.github.gradle-clojure/gradle-clojure-plugin

@Option(option = "port", description = "Port the nREPL server should listen on.")
public void setPort(String port) {
 setPort(Integer.parseInt(port));
}
origin: palantir/gradle-baseline

@Option(option = "fix", description = "Whether to apply the suggested fix to versions.props")
public final void setShouldFix(boolean shouldFix) {
  this.shouldFix.set(shouldFix);
}
origin: io.github.gradle-clojure/gradle-clojure-plugin

@Option(option = "handler", description = "Qualified name of nREPL handler function.")
public void setHandler(String handler) {
 this.handler.set(handler);
}
origin: palantir/gradle-baseline

@Option(option = "fix", description = "Whether to apply the suggested fix to versions.props")
public final void setShouldFix(boolean shouldFix) {
  this.shouldFix.set(shouldFix);
}
origin: gradle-clojure/gradle-clojure

@Option(option = "port", description = "Port the nREPL server should listen on.")
public void setPort(String port) {
 setPort(Integer.parseInt(port));
}
origin: gradle.plugin.com.google.cloud.tools/jib-gradle-plugin

/**
 * The target image can be overridden with the {@code --image} command line option.
 *
 * @param targetImage the name of the 'to' image.
 */
@Option(option = "image", description = "The image reference for the target image")
public void setTargetImage(String targetImage) {
 Preconditions.checkNotNull(jibExtension).getTo().setImage(targetImage);
}
origin: gradle.plugin.com.google.cloud.tools/jib-gradle-plugin

/**
 * The target image can be overridden with the {@code --image} command line option.
 *
 * @param targetImage the name of the 'to' image.
 */
@Option(option = "image", description = "The image reference for the target image")
public void setTargetImage(String targetImage) {
 Preconditions.checkNotNull(jibExtension).getTo().setImage(targetImage);
}
origin: gradle.plugin.com.google.cloud.tools/jib-gradle-plugin

/**
 * The target image can be overridden with the {@code --image} command line option.
 *
 * @param targetImage the name of the 'to' image.
 */
@Option(option = "image", description = "The image reference for the target image")
public void setTargetImage(String targetImage) {
 Preconditions.checkNotNull(jibExtension).getTo().setImage(targetImage);
}
origin: prezi/pride

@Option(option = "configuration", description = "The configuration to generate the report for.")
public void setConfiguration(String configurationName) {
  this.configurations = Collections.singleton(getProject().getConfigurations().getByName(configurationName));
}
org.gradle.api.tasks.optionsOption

Most used methods

  • <init>

Popular in Java

  • Updating database using SQL prepared statement
  • onRequestPermissionsResult (Fragment)
  • requestLocationUpdates (LocationManager)
  • getSupportFragmentManager (FragmentActivity)
  • RandomAccessFile (java.io)
    Allows reading from and writing to a file in a random-access manner. This is different from the uni-
  • Format (java.text)
    The base class for all formats. This is an abstract base class which specifies the protocol for clas
  • Iterator (java.util)
    An iterator over a sequence of objects, such as a collection.If a collection has been changed since
  • ResourceBundle (java.util)
    ResourceBundle is an abstract class which is the superclass of classes which provide Locale-specifi
  • Vector (java.util)
    Vector is an implementation of List, backed by an array and synchronized. All optional operations in
  • Notification (javax.management)
  • From CI to AI: The AI layer in your organization
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now