-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
104 lines (89 loc) · 4.04 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
98
99
100
101
102
103
104
plugins {
id 'java'
id 'org.springframework.boot' version '3.1.1'
id 'io.spring.dependency-management' version '1.1.0'
}
group = 'com.devprofile'
version = '0.0.1-SNAPSHOT'
java {
sourceCompatibility = '17'
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
tasks.withType(JavaExec) {
jvmArgs = ["-Xmx8G"]
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-oauth2-client'
implementation 'org.springframework.boot:spring-boot-starter-security'
// implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-webflux'
implementation 'org.thymeleaf.extras:thymeleaf-extras-springsecurity6'
implementation 'org.springframework.boot:spring-boot-starter-graphql'
implementation 'org.springframework.boot:spring-boot-starter-data-mongodb'
implementation group: 'com.graphql-java', name: 'graphql-java', version: '14.0'
implementation group: 'org.kohsuke', name: 'github-api', version: '1.315'
implementation group: 'org.apache.jena', name: 'jena-arq', version: '4.8.0'
implementation 'org.apache.jena:apache-jena-libs:4.8.0'
implementation 'com.graphql-java-kickstart:graphql-webclient-spring-boot-starter:2.0.0'
implementation 'org.apache.commons:commons-lang3:3.12.0'
implementation 'org.apache.commons:commons-math3:3.6.1'
implementation 'io.github.java-diff-utils:java-diff-utils:4.9'
//websocket
implementation 'org.springframework.boot:spring-boot-starter-websocket'
implementation 'org.webjars:stomp-websocket:2.3.4'
implementation 'org.webjars:sockjs-client:1.5.1'
implementation 'org.webjars:webjars-locator-core'
implementation 'org.modelmapper:modelmapper:2.3.8'
implementation 'org.springframework.boot:spring-boot-starter-freemarker'
implementation 'org.springframework.boot:spring-boot-devtools'
implementation 'org.webjars.bower:bootstrap:4.3.1'
implementation 'org.webjars.bower:vue:2.5.16'
implementation 'org.webjars.bower:axios:0.17.1'
implementation 'com.google.code.gson:gson:2.8.0'
implementation 'org.springframework.boot:spring-boot-starter-data-redis'
implementation 'org.bouncycastle:bcprov-jdk15on:1.69'
implementation 'nl.martijndwars:web-push:5.1.1'
//itext for pdf
implementation files('build/libs/svg-8.0.0.jar')
implementation files('build/libs/barcodes-8.0.0.jar')
implementation files('build/libs/bouncy-castle-adapter-8.0.0.jar')
implementation files('build/libs/bouncy-castle-connector-8.0.0.jar')
implementation files('build/libs/bouncy-castle-fips-adapter-8.0.0.jar')
implementation files('build/libs/commons-8.0.0.jar')
implementation files('build/libs/font-asian-8.0.0.jar')
implementation files('build/libs/forms-8.0.0.jar')
implementation files('build/libs/html2pdf-3.0.3.jar')
implementation files('build/libs/hyph-8.0.0.jar')
implementation files('build/libs/io-8.0.0.jar')
implementation files('build/libs/kernel-8.0.0.jar')
implementation files('build/libs/layout-8.0.0.jar')
implementation files('build/libs/pdfa-8.0.0.jar')
implementation files('build/libs/pdftest-8.0.0.jar')
implementation files('build/libs/sign-8.0.0.jar')
implementation files('build/libs/styled-xml-parser-8.0.0.jar')
//RabbitMQ
implementation 'org.springframework.boot:spring-boot-starter-amqp'
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.11.3'
implementation 'com.google.firebase:firebase-admin:9.1.1'
compileOnly 'org.projectlombok:lombok'
runtimeOnly 'com.mysql:mysql-connector-j'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.springframework.security:spring-security-test'
testImplementation 'org.assertj:assertj-core:3.24.0'
implementation 'io.jsonwebtoken:jjwt-api:0.11.2'
runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.11.2'
runtimeOnly 'io.jsonwebtoken:jjwt-jackson:0.11.2'
}
tasks.named('test') {
useJUnitPlatform()
}