Step 1. Add the JitPack repository to your build file
Add it in your root settings.gradle at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
Add it in your settings.gradle.kts at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url = uri("https://jitpack.io") }
}
}
Add to pom.xml
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
Add it in your build.sbt at the end of resolvers:
resolvers += "jitpack" at "https://jitpack.io"
Add it in your project.clj at the end of repositories:
:repositories [["jitpack" "https://jitpack.io"]]
Step 2. Add the dependency
dependencies {
implementation 'com.github.jbehave:jbehave-pom:jbehave-pom-4'
}
dependencies {
implementation("com.github.jbehave:jbehave-pom:jbehave-pom-4")
}
<dependency>
<groupId>com.github.jbehave</groupId>
<artifactId>jbehave-pom</artifactId>
<version>jbehave-pom-4</version>
</dependency>
libraryDependencies += "com.github.jbehave" % "jbehave-pom" % "jbehave-pom-4"
:dependencies [[com.github.jbehave/jbehave-pom "jbehave-pom-4"]]
JBehave is a BDD framework for Java and all JVM languages (Groovy, Ruby, Scala).
<img src="http://jbehave.org/reference/preview/images/jbehave-logo.png" alt="JBehave logo" align="right" />Canonical information for JBehave:
Please report issues, feature requests on JIRA or discuss them on the dev mailing list.
Keep an eye on the Travis CI server for JBehave builds.
JDK version required:
1.8 or above to build (tested with Oracle JDK on different platforms)
The target runtime version is still 1.5 or above.
Maven version required to build: 3.0 or above.
Configure IDE to use UTF-8 for all files Configure Maven by adding "-Dfile.encoding=UTF-8" to $MAVEN_OPTS
Maven is supported in Intellij IDEA out-of-the-box Maven is supported in Eclipse via m2e plugin, included out-of-the-box in some Eclipse distributions. Eclipse users may also want to load the ides/eclipse/lifecycle-mapping-metadata.xml or ignore the m2e lifecycle mappings manually.
See also:
See LICENSE.txt in the source root (BSD).