-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
79 lines (61 loc) · 2.38 KB
/
build.gradle
File metadata and controls
79 lines (61 loc) · 2.38 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
plugins {
id 'org.springframework.boot' version '2.7.9'
id 'io.spring.dependency-management' version '1.1.0'
id 'java'
}
group = 'com.mafia.statistics'
version = '1.0.0-SNAPSHOT'
sourceCompatibility = JavaVersion.VERSION_11
repositories {
mavenCentral()
}
dependencies {
// Spring
implementation('org.springframework.boot:spring-boot-starter-web:2.7.9') {
exclude group: 'org.springframework.boot', module: 'spring-boot-starter-json'
}
implementation 'org.springframework.boot:spring-boot-starter-validation:2.7.9'
implementation 'org.springframework.boot:spring-boot-starter-actuator:2.7.9'
testImplementation 'org.springframework.boot:spring-boot-starter-test:2.7.9'
// Security
implementation 'org.springframework.boot:spring-boot-starter-security:2.7.9'
implementation 'org.springframework.security:spring-security-oauth2-client:5.8.2'
implementation 'org.springframework.security:spring-security-oauth2-jose:5.8.2'
// DB
implementation 'org.springframework.boot:spring-boot-starter-data-jpa:2.7.9'
// AWS
implementation 'com.amazonaws:aws-java-sdk:1.12.415'
implementation 'io.awspring.cloud:spring-cloud-starter-aws-secrets-manager-config:2.4.2'
// Postgresql
implementation 'org.postgresql:postgresql:42.5.4'
// Flyway
implementation 'org.flywaydb:flyway-core:8.5.10'
// Lombok
compileOnly 'org.projectlombok:lombok:1.18.24'
annotationProcessor 'org.projectlombok:lombok:1.18.24'
implementation 'org.projectlombok:lombok-mapstruct-binding:0.2.0'
// Reading from excel
implementation 'net.sourceforge.jexcelapi:jxl:2.6.12'
// VK
implementation('com.vk.api:sdk:1.0.14') {
exclude group: 'org.apache.logging.log4j'
}
// JWT
implementation 'io.jsonwebtoken:jjwt-api:0.11.5'
runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.11.5'
runtimeOnly 'io.jsonwebtoken:jjwt-jackson:0.11.5'
// MapStruct
implementation 'org.mapstruct:mapstruct:1.5.2.Final'
implementation 'org.mapstruct:mapstruct-processor:1.5.2.Final'
// Hibernate Types
implementation 'com.vladmihalcea:hibernate-types-52:2.21.1'
// Retrofit
implementation 'com.squareup.retrofit2:retrofit:2.9.0'
implementation 'com.squareup.retrofit2:converter-gson:2.9.0'
}
tasks.register('deploy', Exec) {
commandLine 'bash', 'gradle/scripts/deploy.sh'
}
test {
useJUnitPlatform()
}