MVN

org.apache.qpid : tests

Maven & Gradle

Feb 21, 2013

The Proton system tests execute against either the Java or the C implementations, based on the chosen profile. To execute, run either "mvn test -P proton-j" or "mvn test -P proton-jni". To reduce the set of Python tests run, set system property proton.pythontest.pattern, for example: mvn test -Dproton.pythontest.pattern='proton_tests.transport.TransportTest.*' The proton-jni profile looks for the JNI jar and native libraries under directory <basedir>/build/proton-c. To override this, run Maven like so: "mvn test -P proton-jni -Dproton-c-build-dir=/path/to/build/dir".

<dependency>
    <groupId>org.apache.qpid</groupId>
    <artifactId>tests</artifactId>
    <version>0.4</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of org.apache.qpid : tests to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 0.4

All Versions

Choose a version of org.apache.qpid : tests to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
0.4
tests-0.4

How to add a dependency to Maven

Add the following org.apache.qpid : tests maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>org.apache.qpid</groupId>
    <artifactId>tests</artifactId>
    <version>0.4</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following org.apache.qpid : tests gradle dependency to your build.gradle file:

implementation 'org.apache.qpid:tests:0.4'

Gradle Kotlin DSL: Add the following org.apache.qpid : tests gradle kotlin dependency to your build.gradle.kts file:

implementation("org.apache.qpid:tests:0.4")

How to add a dependency to SBT Scala

SBT Scala: Add the following org.apache.qpid : tests sbt scala dependency to your build.sbt file:

libraryDependencies += "org.apache.qpid" % "tests" % "0.4"