-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
executable file
·97 lines (63 loc) · 3.21 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
group 'com.play.java'
version '1.0-SNAPSHOT'
buildscript {
repositories {
mavenCentral()
}
}
apply plugin: 'java'
apply plugin: 'idea'
sourceCompatibility = 1.21
targetCompatibility = 1.21
//apply plugin: 'application'
//mainClassName = 'com.app.file.FileApplication' //For Testing File Application.
repositories {
mavenCentral()
}
dependencies {
implementation files('lib/algs4.jar')
implementation files('/home/sunitc/Tools/jdk1.8.0_91/jre/lib/rt.jar')
implementation "joda-time:joda-time:2.2"
implementation group: 'org.springframework', name: 'spring-webmvc', version: '6.1.13'
implementation group: 'org.json', name: 'json', version: '20231013'
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: '2.8.5'
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.13.4.2'
implementation group: 'org.apache.poi', name: 'poi-ooxml', version: '3.17'
implementation group: 'commons-lang', name: 'commons-lang', version: '2.6'
implementation group:'com.fasterxml.jackson.dataformat', name:'jackson-dataformat-csv', version:'2.8.8'
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.9.8'
implementation group: 'org.jsoup', name: 'jsoup', version: '1.15.3'
implementation group: 'biz.paluch.redis', name: 'lettuce', version: '4.4.4.Final'
implementation group: 'redis.clients', name: 'jedis', version: '2.9.0'
implementation group: 'org.apache.commons', name: 'commons-pool2', version: '2.5.0'
implementation group: 'com.amazonaws', name: 'aws-java-sdk-s3', version: '1.12.261'
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.8'
implementation group: 'org.apache.poi', name: 'poi', version: '4.1.1'
implementation group: 'org.apache.poi', name: 'poi-ooxml', version: '4.1.0'
implementation group: 'com.google.guava', name: 'guava', version: '32.0.0-android'
implementation group: 'javax.xml.bind', name: 'jaxb-api', version: '2.3.1'
compileOnly group: 'org.projectlombok', name: 'lombok', version: '1.18.30'
annotationProcessor 'org.projectlombok:lombok:1.18.30'
implementation group: 'com.opencsv', name: 'opencsv', version: '5.2'
implementation group: 'org.javers', name: 'javers-core', version: '5.9.1'
implementation 'io.jsonwebtoken:jjwt-api:0.11.2'
runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.11.2'
runtimeOnly 'io.jsonwebtoken:jjwt-jackson:0.11.2'
// Uncomment the next line if you want to use RSASSA-PSS (PS256, PS384, PS512) algorithms:
//runtime 'org.bouncycastle:bcprov-jdk15on:1.60'
// Uncomment below line if you want to use gson
//runtime 'io.jsonwebtoken:jjwt-gson:0.11.2'
testImplementation 'org.junit.jupiter:junit-jupiter:5.5.2'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.5.2'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.5.2'
testImplementation group: 'org.assertj', name: 'assertj-core', version: '3.16.1'
testImplementation 'org.projectlombok:lombok:1.18.30'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.30'
}
jar {
archiveBaseName = 'java-playground'
version = '1.0.0'
}
test {
useJUnitPlatform()
}