-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
85 lines (70 loc) · 2.43 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
plugins {
id 'java'
id 'war'
id 'maven-publish'
id 'org.springframework.boot' version '3.1.1'
id "org.flywaydb.flyway" version "8.2.0"
}
jar {
manifest {
attributes 'Main-Class': 'net.chikaboom.ChikaboomApplication'
}
}
apply plugin: 'io.spring.dependency-management'
sourceCompatibility = '17'
targetCompatibility = '17'
repositories {
mavenLocal()
maven {
url = uri('https://repo.maven.apache.org/maven2/')
}
}
flyway {
url = 'jdbc:mysql://localhost:3306/chikaboom?serverTimezone=UTC'
schemas = ['chikaboom']
user = 'root'
password = '1234'
}
configurations {
developmentOnly
runtimeClasspath {
extendsFrom developmentOnly
}
}
dependencies {
implementation 'mysql:mysql-connector-java:8.0.28'
implementation 'log4j:log4j:1.2.12'
implementation 'jakarta.servlet.jsp.jstl:jakarta.servlet.jsp.jstl-api:3.0.0'
implementation 'org.glassfish.web:jakarta.servlet.jsp.jstl:3.0.1'
implementation 'com.googlecode.libphonenumber:libphonenumber:8.13.20'
implementation 'org.springframework.session:spring-session-jdbc'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-aop'
implementation 'org.springframework.security:spring-security-taglibs:6.1.2'
implementation 'org.springframework:spring-websocket:6.0.13'
implementation 'org.springframework:spring-messaging:6.0.13'
runtimeOnly 'org.springframework.boot:spring-boot-devtools'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.2'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
providedCompile 'org.projectlombok:lombok:1.18.22'
providedCompile 'org.apache.tomcat.embed:tomcat-embed-jasper:10.1.10'
providedCompile 'org.springframework.boot:spring-boot-starter-tomcat'
annotationProcessor 'org.projectlombok:lombok:1.18.22'
developmentOnly("org.springframework.boot:spring-boot-devtools")
}
group = 't-and-j-team'
version = '0.3.3.5-BETA'
description = 'Extra_Mileiux'
java.sourceCompatibility = JavaVersion.VERSION_17
publishing {
publications {
maven(MavenPublication) {
from(components.java)
}
}
}
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}