Merge pull request #1318 from DataDog/landerson/jms-lib-java7

Fix JMS test library for Java 7
This commit is contained in:
Tyler Benson 2020-03-13 11:20:04 -07:00 committed by GitHub
commit 17d2fb287d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -27,7 +27,8 @@ dependencies {
testCompile group: 'org.apache.activemq', name: 'activemq-pool', version: '5.14.5'
testCompile group: 'org.apache.activemq', name: 'activemq-broker', version: '5.14.5'
testCompile group: 'javax.annotation', name: 'javax.annotation-api', version: '1.3.2' //required for Java 11+
// required for Java 11+ . Latest version that runs on Java 7
testCompile group: 'javax.annotation', name: 'javax.annotation-api', version: '1.2'
testCompile group: 'org.springframework', name: 'spring-jms', version: '4.3.21.RELEASE' // 4.x required for Java 7
latestDepTestCompile group: 'org.hornetq', name: 'hornetq-jms-client', version: '2.4.7.Final'