Skip to content

Commit

Permalink
Update gradle file dependencies. (#1244)
Browse files Browse the repository at this point in the history
* SonarQube fixes

* Fix resource leak in AE

* Addressing comments

* throw exception if 3rd resultset is empty

* updated to use junit 5

* null check

* fixed typo

* added connection string to error msg

* add reqExternalSetup back to XA

* Hide the BouncyCastle call

* Make temp class non public

* updated fail error string to only include enclave properties

* added check for sql linux

* updated linux check to be compat for all servers

* add progress for multiple servers

* Update gradle profile

* update bouncy version

* fix dependency name

* add adal4j and keyvault

* Add adal4j to test compile

* remove static modifiers

* Revert "remove static modifiers"

This reverts commit e7988cc.

* Update junit and add params

* split test to exclude for reqExternSetup

* null checks

* add h2 driver

* Fix AEv2 tests exclude for reqExternalSetup and cleanup (#1247)

* changes for skipping

* Remove untested dependencies

* Revert "Remove untested dependencies"

This reverts commit a292364.

* Fix | Add null check for getObject() with LocalTime and LocalDate (#1250)

* added all AKV tests to use reqExternalSetup tag so they will be skipped by default (#1254)

* skip AKV test properly

* removed enclave properties string to failed errors as enclave tests could be skipped

Co-authored-by: rene-ye <[email protected]>
Co-authored-by: lilgreenbird <[email protected]>
Co-authored-by: Peter Bae <[email protected]>
  • Loading branch information
4 people authored Mar 23, 2020
1 parent 6906f48 commit 0d4e97f
Showing 1 changed file with 14 additions and 5 deletions.
19 changes: 14 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -112,20 +112,29 @@ dependencies {
'org.osgi:org.osgi.compendium:5.0.0'
compileOnly 'com.microsoft.azure:azure-keyvault:1.2.2',
'com.microsoft.azure:azure-keyvault-webkey:1.2.1',
'com.microsoft.rest:client-runtime:1.6.15',
'com.microsoft.rest:client-runtime:1.7.0',
'com.microsoft.azure:adal4j:1.6.4',
'org.antlr:antlr4-runtime:4.7.2'
'org.antlr:antlr4-runtime:4.7.2',
'com.google.code.gson:gson:2.8.6',
'org.bouncycastle:bcprov-jdk15on:1.64'
testCompile 'org.junit.platform:junit-platform-console:1.5.2',
'org.junit.platform:junit-platform-commons:1.5.2',
'org.junit.platform:junit-platform-engine:1.5.2',
'org.junit.platform:junit-platform-launcher:1.5.2',
'org.junit.platform:junit-platform-runner:1.5.2',
'org.junit.platform:junit-platform-surefire-provider:1.3.2',
'org.junit.jupiter:junit-jupiter-api:5.5.2',
'org.junit.jupiter:junit-jupiter-engine:5.5.2',
'org.junit.jupiter:junit-jupiter-api:5.6.0',
'org.junit.jupiter:junit-jupiter-engine:5.6.0',
'org.junit.jupiter:junit-jupiter-params:5.6.0',
'com.zaxxer:HikariCP:3.4.1',
'org.apache.commons:commons-dbcp2:2.6.0',
'org.slf4j:slf4j-nop:1.7.29',
'org.antlr:antlr4-runtime:4.7.2',
'org.eclipse.gemini.blueprint:gemini-blueprint-mock:2.1.0.RELEASE'
'org.eclipse.gemini.blueprint:gemini-blueprint-mock:2.1.0.RELEASE',
'com.google.code.gson:gson:2.8.6',
'org.bouncycastle:bcprov-jdk15on:1.64',
'com.microsoft.azure:adal4j:1.6.4',
'com.microsoft.azure:azure-keyvault:1.2.2',
'com.microsoft.azure:azure-keyvault-webkey:1.2.1',
'com.h2database:h2:1.4.200'
}

0 comments on commit 0d4e97f

Please sign in to comment.