MVN

se.comhem.cucumber.annotations : EnumToStringForCucumber

Maven & Gradle

Sep 02, 2014
1 stars

Enum to string for Cucumber · Processes an enum class annotated with @GenerateCucumberString, producing a new java source file which is also compiled. The generated class has a static String field, which is the concatenation of the enum values, with delimiter, suffix and prefix as specified in the annotation. These parameters (delimiter, suffix...) can be overridden. This field can be used in any annotation (but most useful in Cucumber annotations), as it's a compile time constant value.

<dependency>
    <groupId>se.comhem.cucumber.annotations</groupId>
    <artifactId>EnumToStringForCucumber</artifactId>
    <version>1.3</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of se.comhem.cucumber.annotations : EnumToStringForCucumber to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.3

All Versions

Choose a version of se.comhem.cucumber.annotations : EnumToStringForCucumber to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.3
EnumToStringForCucumber-1.3

How to add a dependency to Maven

Add the following se.comhem.cucumber.annotations : EnumToStringForCucumber maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>se.comhem.cucumber.annotations</groupId>
    <artifactId>EnumToStringForCucumber</artifactId>
    <version>1.3</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following se.comhem.cucumber.annotations : EnumToStringForCucumber gradle dependency to your build.gradle file:

implementation 'se.comhem.cucumber.annotations:EnumToStringForCucumber:1.3'

Gradle Kotlin DSL: Add the following se.comhem.cucumber.annotations : EnumToStringForCucumber gradle kotlin dependency to your build.gradle.kts file:

implementation("se.comhem.cucumber.annotations:EnumToStringForCucumber:1.3")

How to add a dependency to SBT Scala

SBT Scala: Add the following se.comhem.cucumber.annotations : EnumToStringForCucumber sbt scala dependency to your build.sbt file:

libraryDependencies += "se.comhem.cucumber.annotations" % "EnumToStringForCucumber" % "1.3"

Advertisement