-
Notifications
You must be signed in to change notification settings - Fork 37
/
build.gradle.kts
98 lines (84 loc) · 3.24 KB
/
build.gradle.kts
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
86
87
88
89
90
91
92
93
94
95
96
97
98
/*
* Copyright 2021 Netflix, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
import org.gradle.api.tasks.testing.logging.TestExceptionFormat.*
import org.gradle.api.tasks.testing.logging.TestLogEvent.*
plugins {
kotlin("jvm") version "1.9.25"
kotlin("plugin.spring") version "1.9.22"
// id("com.netflix.dgs.codegen") version "6.3.0"
id("org.springframework.boot") version "3.3.5"
id("io.spring.dependency-management") version "1.1.6"
id("nebula.dependency-recommender") version "11.0.0"
id("nebula.netflixoss") version "11.3.2"
}
group = "com.example"
version = "0.0.1-SNAPSHOT"
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(17))
}
}
repositories {
mavenCentral()
// ----
// Before we release the DGS Framework our CI Pipeline tests this project against the current snapshot.
// To support that we need to have `mavenLocal` support.
mavenLocal()
// ----
}
dependencyManagement {
imports {
mavenBom("com.netflix.graphql.dgs:graphql-dgs-platform-dependencies:9.1.3")
}
}
dependencies {
//implementation(platform("com.netflix.graphql.dgs:graphql-dgs-platform-dependencies:9.1.3"))
implementation("com.netflix.graphql.dgs:graphql-dgs-spring-graphql-starter")
implementation("com.netflix.graphql.dgs:graphql-dgs-client")
implementation("com.netflix.graphql.dgs:graphql-dgs-extended-scalars")
implementation("name.nkonev.multipart-spring-graphql:multipart-spring-graphql:1.1.4")
implementation("org.springframework.boot:spring-boot-starter-web:3.3.+")
implementation("com.fasterxml.jackson.module:jackson-module-kotlin")
implementation("jakarta.annotation:jakarta.annotation-api:3.0.+")
implementation("net.datafaker:datafaker:2.1.0")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.9.0")
testImplementation("name.nkonev.multipart-spring-graphql:multipart-spring-graphql:1.1.4")
constraints {
implementation("com.graphql-java:graphql-java") {
version {
strictly("[22,23[")
}
}
}
testImplementation("org.springframework.boot:spring-boot-starter-test:3.3.+")
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0")
}
//tasks.withType<com.netflix.graphql.dgs.codegen.gradle.GenerateJavaTask> {
// generateClientv2 = true
// packageName = "com.example.demo.generated"
//}
tasks.withType<Test> {
useJUnitPlatform()
testLogging {
events(FAILED, STANDARD_ERROR, SKIPPED)
exceptionFormat = FULL
showExceptions = true
showCauses = true
showStackTraces = true
}
}