All Downloads are FREE. Search and download functionalities are using the official Maven repository.

tech.jhipster.lite.module.infrastructure.secondary.javadependency.gradle.GradleDependencyScope Maven / Gradle / Ivy

There is a newer version: 1.22.0
Show newest version
package tech.jhipster.lite.module.infrastructure.secondary.javadependency.gradle;

enum GradleDependencyScope {
  IMPLEMENTATION("implementation"),
  COMPILE_ONLY("compileOnly"),
  RUNTIME_ONLY("runtimeOnly"),
  TEST_IMPLEMENTATION("testImplementation");

  private final String command;

  GradleDependencyScope(String command) {
    this.command = command;
  }

  public String command() {
    return command;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy