MVN

org.apache.qpid : proton-tests

Maven & Gradle

Dec 08, 2016

proton-tests · The Proton python system tests execute against the Java or C implementation, using Maven (via this pom) and CMake/CTest respectively. To run the tests against proton-j, execute: mvn test Example of advanced usage (all of the -D flags are optional): mvn test \ -Dproton.pythontest.pattern='proton_tests.transport.ClientTransportTest.*' \ -Dproton.pythontest.invocations=20 \ -Dproton.pythontest.always_colorize=true

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

Latest Version

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

  • Latest Stable: 0.16.0

All Versions

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

Version Vulnerabilities Updated
0.16.x
proton-tests-0.16.0
0.15.x
proton-tests-0.15.0
0.14.x
proton-tests-0.14.0
0.13.x
proton-tests-0.13.1
proton-tests-0.13.0
0.12.x
proton-tests-0.12.2
proton-tests-0.12.1
proton-tests-0.12.0
0.11.x
proton-tests-0.11.1
proton-tests-0.11.0
0.10
proton-tests-0.10
0.9.x
proton-tests-0.9.1
0.9
proton-tests-0.9
0.8
proton-tests-0.8
0.7
proton-tests-0.7
0.6
proton-tests-0.6
0.5
proton-tests-0.5

How to add a dependency to Maven

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

<dependency>
    <groupId>org.apache.qpid</groupId>
    <artifactId>proton-tests</artifactId>
    <version>0.16.0</version>
</dependency>

How to add a dependency to Gradle

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

implementation 'org.apache.qpid:proton-tests:0.16.0'

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

implementation("org.apache.qpid:proton-tests:0.16.0")

How to add a dependency to SBT Scala

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

libraryDependencies += "org.apache.qpid" % "proton-tests" % "0.16.0"

Advertisement