summaryrefslogtreecommitdiff
path: root/deps/rabbitmq_amqp1_0/test/system_SUITE_data/java-tests/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'deps/rabbitmq_amqp1_0/test/system_SUITE_data/java-tests/pom.xml')
-rw-r--r--deps/rabbitmq_amqp1_0/test/system_SUITE_data/java-tests/pom.xml58
1 files changed, 58 insertions, 0 deletions
diff --git a/deps/rabbitmq_amqp1_0/test/system_SUITE_data/java-tests/pom.xml b/deps/rabbitmq_amqp1_0/test/system_SUITE_data/java-tests/pom.xml
new file mode 100644
index 0000000000..d8f01408e6
--- /dev/null
+++ b/deps/rabbitmq_amqp1_0/test/system_SUITE_data/java-tests/pom.xml
@@ -0,0 +1,58 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>com.rabbitmq.amqp1_0.tests.proton</groupId>
+ <artifactId>rabbitmq-amqp1.0-java-tests</artifactId>
+ <packaging>jar</packaging>
+ <version>1.0-SNAPSHOT</version>
+ <name>rabbitmq-amqp1.0-java-tests</name>
+ <url>https://www.rabbitmq.com</url>
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>4.13.1</version>
+ <scope>test</scope>
+ </dependency>
+ <!-- <dependency> -->
+ <!-- <groupId>org.apache.qpid</groupId> -->
+ <!-- <artifactId>proton-j</artifactId> -->
+ <!-- <version>0.13.0</version> -->
+ <!-- <scope>test</scope> -->
+ <!-- </dependency> -->
+ <dependency>
+ <groupId>org.apache.qpid</groupId>
+ <artifactId>qpid-jms-client</artifactId>
+ <version>0.31.0</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>3.8.0</version>
+ <configuration>
+ <source>1.6</source>
+ <target>1.6</target>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <version>2.22.1</version>
+ <configuration>
+ <systemPropertyVariables>
+ <rmq_broker_uri>${rmq_broker_uri}</rmq_broker_uri>
+ </systemPropertyVariables>
+ <!--
+ needed because of bug in OpenJDK 8 u181 on Debian distros
+ see https://stackoverflow.com/questions/53010200/maven-surefire-could-not-find-forkedbooter-class
+ -->
+ <argLine>-Djdk.net.URLClassPath.disableClassPathURLCheck=true</argLine>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+</project>