-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
38 lines (29 loc) · 944 Bytes
/
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
plugins {
id 'java'
id 'war'
}
group 'ua.denitdao.servlet.shop'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
ext {
junitVersion = '5.7.1'
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
dependencies {
compileOnly 'jakarta.servlet:jakarta.servlet-api:5.0.0'
implementation 'org.glassfish.web:jakarta.servlet.jsp.jstl:2.0.0'
implementation 'mysql:mysql-connector-java:8.0.24'
implementation 'org.apache.commons:commons-dbcp2:2.8.0'
implementation 'org.apache.logging.log4j:log4j-core:2.14.1'
implementation 'org.springframework.security:spring-security-crypto:5.3.9.RELEASE'
testImplementation("org.junit.jupiter:junit-jupiter-api:${junitVersion}")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:${junitVersion}")
testImplementation 'org.mockito:mockito-junit-jupiter:3.10.0'
testImplementation 'com.h2database:h2:1.4.200'
}
test {
useJUnitPlatform()
}