MVN

org.apache.taverna.engine : taverna-reference-testhelpers

Maven & Gradle

Jun 06, 2016

Apache Taverna Reference Test Helpers · In order to properly test OSGi-loaded t2ference modules we need a module that is entire external to t2reference and to the test cases. If the test implementations are included in either the api, core implementations or test modules they will be loaded by the root classloader of the test runner - by putting them in an independent artifact we allow them to be loaded through various SPI discovery mechanisms as they would be in a 'real' environment.

<dependency>
    <groupId>org.apache.taverna.engine</groupId>
    <artifactId>taverna-reference-testhelpers</artifactId>
    <version>3.1.0-incubating</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of org.apache.taverna.engine : taverna-reference-testhelpers to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 3.1.0-incubating

All Versions

Choose a version of org.apache.taverna.engine : taverna-reference-testhelpers to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
3.1.x
taverna-reference-testhelpers-3.1.0-incubating

How to add a dependency to Maven

Add the following org.apache.taverna.engine : taverna-reference-testhelpers maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>org.apache.taverna.engine</groupId>
    <artifactId>taverna-reference-testhelpers</artifactId>
    <version>3.1.0-incubating</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following org.apache.taverna.engine : taverna-reference-testhelpers gradle dependency to your build.gradle file:

implementation 'org.apache.taverna.engine:taverna-reference-testhelpers:3.1.0-incubating'

Gradle Kotlin DSL: Add the following org.apache.taverna.engine : taverna-reference-testhelpers gradle kotlin dependency to your build.gradle.kts file:

implementation("org.apache.taverna.engine:taverna-reference-testhelpers:3.1.0-incubating")

How to add a dependency to SBT Scala

SBT Scala: Add the following org.apache.taverna.engine : taverna-reference-testhelpers sbt scala dependency to your build.sbt file:

libraryDependencies += "org.apache.taverna.engine" % "taverna-reference-testhelpers" % "3.1.0-incubating"