-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
84 lines (72 loc) · 2.73 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
plugins {
id 'java'
id 'org.springframework.boot' version '3.2.2'
id 'io.spring.dependency-management' version '1.1.4'
}
group = 'com.erpmicroservices'
version = '1.1.0-SNAPSHOT'
description = 'people_and_organizations-endpoint-graphql'
java.sourceCompatibility = '21'
ext {
postgresqlVersion = '42.7.2'
graphqlJavaExtendedScalarsVersion = "20.0"
commonsCollections4 = "4.4"
cucumberVersion = "7.15.0"
testcontainersVersion = "1.19.6"
junitVintageEngine = "5.10.2"
}
sourceSets {
behaviorTest {
java {
srcDirs("src/behaviorTest")
}
compileClasspath += sourceSets.main.output
runtimeClasspath += sourceSets.main.output
}
}
repositories {
mavenCentral()
maven {
url = uri('https://maven.pkg.github.com/ErpMicroServices')
}
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-actuator'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-graphql'
implementation 'org.springframework.boot:spring-boot-starter-validation'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-webflux'
implementation "org.postgresql:postgresql:$postgresqlVersion"
implementation 'org.projectlombok:lombok'
implementation "com.graphql-java:graphql-java-extended-scalars:$graphqlJavaExtendedScalarsVersion"
implementation "org.apache.commons:commons-collections4:$commonsCollections4"
annotationProcessor 'org.projectlombok:lombok'
runtimeOnly "org.postgresql:postgresql:$postgresqlVersion"
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.springframework.graphql:spring-graphql-test'
testImplementation "org.testcontainers:postgresql:$testcontainersVersion"
behaviorTestImplementation "io.cucumber:cucumber-java:$cucumberVersion"
behaviorTestImplementation "io.cucumber:cucumber-junit:$cucumberVersion"
behaviorTestImplementation "io.cucumber:cucumber-spring:$cucumberVersion"
behaviorTestImplementation "org.junit.vintage:junit-vintage-engine:$junitVintageEngine"
}
tasks.named('test') {
useJUnitPlatform()
}
configurations {
cucumberRuntime {
extendsFrom testImplementation
}
behaviorTestImplementation.extendsFrom(testImplementation)
behaviorTestRuntimeOnly.extendsFrom(testRuntimeOnly)
}
tasks.register('cucumberCli') {
dependsOn assemble, testClasses
doLast {
javaexec {
main = "io.cucumber.core.cli.Main"
classpath = configurations.cucumberRuntime + sourceSets.main.output + sourceSets.behaviorTest.output
}
}
}