forked from psh5487/hunMusic-Ver2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
104 lines (81 loc) · 2.61 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
buildscript {
ext {
springBootVersion = '2.3.4.RELEASE'
}
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
classpath "io.spring.gradle:dependency-management-plugin:1.0.10.RELEASE"
}
}
subprojects {
apply plugin: 'java'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
group = 'com.music'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'
repositories {
mavenCentral()
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
dependencies {
// Web
implementation 'org.springframework.boot:spring-boot-starter-web'
// DB
runtimeOnly 'mysql:mysql-connector-java'
compile 'org.springframework.boot:spring-boot-starter-data-jpa'
// Jsp, Jstl
compile 'org.apache.tomcat.embed:tomcat-embed-jasper'
compile 'javax.servlet:jstl:1.2'
// Jsoup
compile 'org.jsoup:jsoup:1.13.1'
// Gson
compile group: 'com.google.code.gson', name: 'gson', version: '2.7'
// Modeling
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
// Checking
compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.0'
compile group: 'commons-io', name: 'commons-io', version: '2.6'
implementation("com.google.guava:guava:29.0-jre")
// Security
implementation 'org.springframework.boot:spring-boot-starter-security'
// Json Web Token
implementation 'io.jsonwebtoken:jjwt-api:0.10.7'
runtime 'io.jsonwebtoken:jjwt-impl:0.10.7'
runtime 'io.jsonwebtoken:jjwt-jackson:0.10.7'
// AWS S3
compile group: 'com.amazonaws', name: 'aws-java-sdk-s3', version: '1.11.875'
// compile group: 'org.springframework.cloud', name: 'spring-cloud-aws', version: '2.2.1.RELEASE', ext: 'pom'
// Kafka
compile 'org.springframework.kafka:spring-kafka'
// validation
compile group: 'javax.validation', name: 'validation-api', version: '2.0.1.Final'
// Dev
developmentOnly 'org.springframework.boot:spring-boot-devtools'
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'
// Test
testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
testImplementation 'org.springframework.security:spring-security-test'
}
test {
useJUnitPlatform()
}
}
project(':hun-server-push') {
dependencies {
compile project(':hun-server-api')
// Web Push
compile group: 'nl.martijndwars', name: 'web-push', version: '5.0.2'
compile group: 'org.bouncycastle', name: 'bcprov-jdk15on', version: '1.60'
}
}