-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
95 lines (75 loc) · 2.87 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
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
id("org.springframework.boot") version "2.7.5"
id("io.spring.dependency-management") version "1.0.15.RELEASE"
kotlin("jvm") version "1.6.21"
kotlin("plugin.spring") version "1.6.21"
// kotlin no default constructor error 해결용
kotlin("plugin.noarg") version "1.6.21"
kotlin("plugin.allopen") version "1.6.21"
// https://github.com/Netflix/dgs-codegen
id("com.netflix.dgs.codegen") version "5.6.0"
}
group = "com.ritier"
version = "0.0.1-SNAPSHOT"
java.sourceCompatibility = JavaVersion.VERSION_17
repositories {
mavenCentral()
}
dependencies {
implementation("org.springframework.boot:spring-boot-starter-web")
implementation("com.fasterxml.jackson.module:jackson-module-kotlin")
implementation("org.jetbrains.kotlin:kotlin-reflect")
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
testImplementation("org.springframework.boot:spring-boot-starter-test")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4")
// jpa + db conn
implementation("org.postgresql:postgresql:42.5.0")
implementation("org.springframework:spring-jdbc:5.3.23")
implementation("org.springframework.boot:spring-boot-starter-data-jpa")
// swagger
implementation("org.springdoc:springdoc-openapi-ui:1.6.12")
// mapper
implementation("org.modelmapper:modelmapper:3.1.0")
// graphql
implementation(platform("com.netflix.graphql.dgs:graphql-dgs-platform-dependencies:latest.release"))
implementation("com.netflix.graphql.dgs:graphql-dgs-spring-boot-starter")
implementation("com.netflix.graphql.dgs:graphql-dgs-extended-scalars")
// security
implementation("org.springframework.boot:spring-boot-starter-security")
implementation("org.springframework.boot:spring-boot-starter-web")
implementation("io.jsonwebtoken:jjwt:0.9.1") // jwt
implementation("org.mindrot:jbcrypt:0.4") // hash
}
extra["kotlin.version"] = "1.4.31"
extra["graphql-java.version"] = "19.2"
tasks.withType<KotlinCompile> {
kotlinOptions {
freeCompilerArgs = listOf("-Xjsr305=strict")
jvmTarget = "17"
}
}
tasks.withType<Test> {
useJUnitPlatform()
}
// kotlin no default constructor error 해결용
allOpen {
annotation("javax.persistence.Entity")
annotation("javax.persistence.MappedSuperclass")
annotation("javax.persistence.Embeddable")
}
noArg {
annotation("javax.persistence.Entity")
annotation("javax.persistence.MappedSuperclass")
annotation("javax.persistence.Embeddable")
}
// code gen for graphql DGS
tasks.withType<com.netflix.graphql.dgs.codegen.gradle.GenerateJavaTask> {
schemaPaths = mutableListOf("${projectDir}/src/main/resources/schema") // List of directories containing schema files
packageName = "com.ritier.samplespringgraphql" // The package name to use to generate sources
generateDataTypes = true
language = "kotlin"
typeMapping = mutableMapOf(
)
// generateClient = true // Enable generating the type safe query API
}