Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update gradle file dependencies. #1244

Merged
merged 44 commits into from
Mar 23, 2020
Merged
Changes from 9 commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
5c27621
SonarQube fixes
rene-ye Jan 20, 2020
427911c
Fix resource leak in AE
rene-ye Jan 21, 2020
d69c79d
Addressing comments
rene-ye Jan 23, 2020
698df7d
throw exception if 3rd resultset is empty
rene-ye Jan 23, 2020
1970467
updated to use junit 5
lilgreenbird Jan 23, 2020
bd4781c
Merge remote-tracking branch 'upstream/dev' into aetestfix
lilgreenbird Jan 23, 2020
765eba2
null check
lilgreenbird Jan 23, 2020
709e01e
fixed typo
lilgreenbird Jan 23, 2020
f552b11
added connection string to error msg
lilgreenbird Jan 27, 2020
c56726e
Merge remote-tracking branch 'upstream/dev' into aetestfix
lilgreenbird Jan 28, 2020
f9572a3
add reqExternalSetup back to XA
lilgreenbird Jan 28, 2020
a9077bf
Merge branch 'dev' of https://github.com/Microsoft/mssql-jdbc into sonar
rene-ye Jan 29, 2020
a8c883a
Hide the BouncyCastle call
rene-ye Jan 29, 2020
c9f392a
Make temp class non public
rene-ye Jan 29, 2020
5053086
updated fail error string to only include enclave properties
lilgreenbird Jan 30, 2020
e305a09
added check for sql linux
lilgreenbird Jan 30, 2020
92489bb
updated linux check to be compat for all servers
lilgreenbird Jan 30, 2020
74397d5
add progress for multiple servers
lilgreenbird Jan 30, 2020
1300312
Merge branch 'dev' of https://github.com/Microsoft/mssql-jdbc into sonar
rene-ye Jan 30, 2020
be33e82
Update gradle profile
rene-ye Jan 30, 2020
a7577ba
update bouncy version
rene-ye Jan 30, 2020
3e8fdec
fix dependency name
rene-ye Jan 31, 2020
59b73cf
Merge remote-tracking branch 'upstream/dev' into aetestfix
lilgreenbird Jan 31, 2020
365aadb
add adal4j and keyvault
rene-ye Jan 31, 2020
043f07b
Add adal4j to test compile
rene-ye Jan 31, 2020
e7988cc
remove static modifiers
rene-ye Jan 31, 2020
78bda24
Revert "remove static modifiers"
rene-ye Jan 31, 2020
0b3ec1e
Merge branch 'dev' of https://github.com/Microsoft/mssql-jdbc into sonar
rene-ye Jan 31, 2020
a3f55b3
Update junit and add params
rene-ye Jan 31, 2020
d3ea658
split test to exclude for reqExternSetup
lilgreenbird Jan 31, 2020
9461b2e
null checks
lilgreenbird Jan 31, 2020
001e202
merged
lilgreenbird Jan 31, 2020
508da7f
Merge branch 'aetestfix' of https://github.com/lilgreenbird/mssql-jdb…
rene-ye Jan 31, 2020
7ef13f4
add h2 driver
rene-ye Jan 31, 2020
c97b863
Fix AEv2 tests exclude for reqExternalSetup and cleanup (#1247)
lilgreenbird Feb 5, 2020
abf05cb
Merge branch 'dev' of https://github.com/Microsoft/mssql-jdbc into sonar
rene-ye Feb 5, 2020
b88aebe
changes for skipping
rene-ye Feb 5, 2020
a292364
Remove untested dependencies
rene-ye Feb 5, 2020
155acc4
Revert "Remove untested dependencies"
rene-ye Feb 5, 2020
54b5a19
Fix | Add null check for getObject() with LocalTime and LocalDate (#1…
peterbae Feb 8, 2020
672b7d6
added all AKV tests to use reqExternalSetup tag so they will be skipp…
lilgreenbird Feb 10, 2020
18ce8f5
Merge branch 'dev' of https://github.com/Microsoft/mssql-jdbc into sonar
rene-ye Feb 14, 2020
b37f0bd
Merge branch 'dev' into sonar
rene-ye Mar 11, 2020
c845cd4
Merge branch 'dev' into sonar
rene-ye Mar 23, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,11 @@ 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-jdk15:1.46'
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',
Expand All @@ -127,5 +129,7 @@ dependencies {
'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-jdk15:1.46'
}