Skip to content

Commit

Permalink
modify :: queryDSL
Browse files Browse the repository at this point in the history
  • Loading branch information
meltapplee committed Feb 7, 2024
1 parent 8e383de commit 4a5eb76
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ plugins {
kotlin("jvm") version PluginVersions.JVM_VERSION
kotlin("plugin.spring") version PluginVersions.SPRING_PLUGIN_VERSION
kotlin("plugin.jpa") version PluginVersions.JPA_PLUGIN_VERSION
kotlin("kapt") version "1.3.61"
}

dependencyManagement {
Expand Down Expand Up @@ -68,7 +69,11 @@ dependencies {

// QueryDSL
implementation(Dependencies.QUERYDSL)
implementation(Dependencies.QUERYDSL_PROCESSOR)
kapt(Dependencies.QUERYDSL_APT)
}

kotlin.sourceSets.main {
setBuildDir("$buildDir/generated/source/kapt/main")
}

tasks.withType<KotlinCompile> {
Expand Down

0 comments on commit 4a5eb76

Please sign in to comment.