forked from SzachMaty-Company/GameLogicService
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
55 lines (47 loc) · 1.99 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
plugins {
id 'java'
id 'org.springframework.boot' version '3.2.2'
id 'io.spring.dependency-management' version '1.1.3'
}
group = 'com.szachmaty'
version = '0.0.1-SNAPSHOT'
java {
sourceCompatibility = '17'
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-redis'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation group: 'org.springframework.security', name: 'spring-security-messaging', version: '6.1.1'
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-validation', version: '3.2.2'
implementation group: 'redis.clients', name: 'jedis'
implementation group: 'org.modelmapper', name: 'modelmapper', version: '3.2.0'
implementation group: 'org.springframework.data', name: 'spring-data-jpa', version: '3.2.0'
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.14.0'
implementation 'junit:junit:4.13.1'
implementation 'com.github.bhlangonijr:chesslib:1.3.3'
implementation 'com.nimbusds:nimbus-jose-jwt:9.38-rc3'
implementation group: 'org.springframework', name: 'spring-websocket', version: '6.1.4'
implementation group: 'org.springframework', name: 'spring-messaging', version: '6.1.4'
implementation group: 'org.springframework.cloud', name: 'spring-cloud-starter-openfeign', version: '4.1.0'
testImplementation group: 'org.mockito', name: 'mockito-junit-jupiter', version: '5.7.0'
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
tasks.named('test') {
useJUnitPlatform()
}
bootJar {
destinationDirectory = file('lib')
archiveFileName = "GameLogicService.jar"
}