-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathbuild.gradle
45 lines (39 loc) · 1.5 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
plugins {
id 'org.springframework.boot' version '2.1.5.RELEASE'
id 'java'
}
apply plugin: 'io.spring.dependency-management'
group = 'com.aaddemo'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '12'
// sourceCompatibility = '1.8'
repositories {
mavenCentral()
}
ext {
set('azureVersion', '2.1.2')
}
dependencies {
compile 'com.nimbusds:oauth2-oidc-sdk:5.64.4'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-data-jdbc'
implementation 'org.springframework.security:spring-security-oauth2-client'
implementation 'org.springframework.security:spring-security-oauth2-jose'
implementation 'com.microsoft.azure:azure-active-directory-spring-boot-starter'
implementation 'com.microsoft.azure:azure-keyvault-secrets-spring-boot-starter'
implementation 'com.microsoft.azure:azure-spring-boot-starter'
implementation 'com.microsoft.azure:azure-client-authentication'
implementation 'javax.xml.bind:jaxb-api:2.3.1'
implementation 'com.sun.xml.bind:jaxb-core:2.3.0'
implementation 'com.sun.xml.bind:jaxb-impl:2.3.2'
implementation 'javax.activation:activation:1.1.1'
runtimeOnly 'com.microsoft.sqlserver:mssql-jdbc'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.springframework.security:spring-security-test'
}
dependencyManagement {
imports {
mavenBom "com.microsoft.azure:azure-spring-boot-bom:${azureVersion}"
}
}