forked from thundra-io/thundra-demo-todo-app-java
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
37 lines (32 loc) · 1.33 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
plugins {
id 'java'
id 'org.springframework.boot' version '2.5.0'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
}
group 'io.thundra'
version '1.0.0'
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
implementation('org.springframework.boot:spring-boot-starter-data-jpa')
implementation('org.springframework.boot:spring-boot-starter-validation')
implementation('org.springframework.boot:spring-boot-starter-web')
implementation('mysql:mysql-connector-java')
runtimeOnly('com.h2database:h2')
testImplementation('org.springframework.boot:spring-boot-starter-test')
testImplementation('org.testcontainers:testcontainers:1.15.3')
testImplementation('org.testcontainers:mysql:1.15.3')
testImplementation('org.testcontainers:junit-jupiter:1.15.3')
testImplementation('org.testcontainers:selenium:1.15.3')
testImplementation('org.seleniumhq.selenium:selenium-chrome-driver:3.141.59')
testImplementation('org.seleniumhq.selenium:selenium-support:3.141.59')
testImplementation("org.junit.platform:junit-platform-launcher:1.6.2")
testImplementation('org.apache.httpcomponents:httpcore:4.4.14')
testImplementation('org.apache.httpcomponents:httpclient:4.5.13')
testImplementation('com.browserstack:browserstack-local-java:1.0.3')
}
test {
useJUnitPlatform()
}