-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
36 lines (30 loc) · 870 Bytes
/
build.gradle
File metadata and controls
36 lines (30 loc) · 870 Bytes
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
plugins {
id 'com.avast.gradle.docker-compose' version '0.16.12'
}
group = 'com.crypto.wallet'
version = '1.0.0-SNAPSHOT'
def dockerExecutablePath = System.getenv("DOCKER_EXECUTABLE_PATH") ?: System.getenv("CI") ? "/usr/bin/docker" : "/opt/homebrew/bin/docker"
dockerCompose {
useComposeFiles = ['deployment/local/docker-compose.yaml']
dockerExecutable = dockerExecutablePath
removeOrphans = true
stopContainers = true
// Integration test configuration
itTests {
useComposeFiles = ['deployment/local/docker-compose.yaml']
dockerExecutable = dockerExecutablePath
removeOrphans = true
stopContainers = true
}
}
ext {
nodeVersion = '18.18.2'
gradleNodeVersion = "7.0.1"
springBootVersion = '3.2.0'
javaVersion = '21'
}
subprojects {
repositories {
mavenCentral()
}
}