forked from jitpack/gradle-simple
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
61 lines (54 loc) · 2.14 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
plugins {
id 'org.springframework.boot' version '2.7.18'
id 'io.spring.dependency-management' version '1.1.0'
id 'java'
}
group = 'org.bahmni.sms'
version = '1.2.0-SNAPSHOT'
sourceCompatibility = '11.0.18'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
task bootRunLocal {
bootRun.configure {
systemProperty "spring.profiles.active", 'local'
}
}
bootRunLocal.finalizedBy bootRun
dependencies {
implementation group: 'io.springfox', name: 'springfox-boot-starter', version: '3.0.0'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-webflux'
implementation 'org.springframework.boot:spring-boot-starter-validation'
implementation 'org.springframework:spring-expression:5.3.39'
implementation 'org.springframework:spring-web:5.3.39'
implementation 'org.springframework.security:spring-security-core:5.7.12'
implementation 'io.jsonwebtoken:jjwt-api:0.11.2'
runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.11.2'
runtimeOnly 'io.jsonwebtoken:jjwt-jackson:0.11.2'
implementation 'com.google.guava:guava:32.0.0-android'
implementation 'org.apache.httpcomponents:httpclient:4.5.12'
implementation 'org.json:json:20231013'
implementation 'org.apache.httpcomponents:httpclient:4.5.13'
implementation 'io.netty:netty-codec-http:4.1.108.Final'
implementation 'ch.qos.logback:logback-core:1.2.13'
implementation 'org.yaml:snakeyaml:2.0'
implementation 'org.apache.tomcat.embed:tomcat-embed-websocket:9.0.90'
implementation 'org.apache.tomcat.embed:tomcat-embed-core:9.0.90'
implementation 'ch.qos.logback:logback-classic:1.2.13'
implementation 'io.github.classgraph:classgraph:4.8.112'
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
}
test {
useJUnitPlatform()
}