Skip to content

Commit 07acf48

Browse files
committed
Fixed build directory
1 parent 9bc4c19 commit 07acf48

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

client/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ tasks {
108108
packageListUrl = uri("https://gist.githubusercontent.com/DRSchlaubi/3d1d0aaa5c01963dcd4d0149c841c896/raw/22141759fbab1e38fd2381c3e4f97616ecb43fc8/package-list").toURL()
109109
})
110110
}
111-
val buildDir = File("build")
111+
val buildDir = File("../build/artifacts")
112112
"sourcesJar"(Jar::class) {
113113
archiveClassifier.set("sources")
114114
destinationDirectory.set(buildDir)

plugin/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ tasks {
9999
packageListUrl = uri("https://gist.githubusercontent.com/DRSchlaubi/3d1d0aaa5c01963dcd4d0149c841c896/raw/22141759fbab1e38fd2381c3e4f97616ecb43fc8/package-list").toURL()
100100
})
101101
}
102-
val buildDir = File("build")
102+
val buildDir = File("../build/artifacts")
103103
"sourcesJar"(Jar::class) {
104104
archiveClassifier.set("sources")
105105
destinationDirectory.set(buildDir)

server/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ artifacts {
7474
}
7575

7676
tasks {
77-
val buildDir = File("build")
77+
val buildDir = File("../build/artifacts")
7878
"shadowJar"(ShadowJar::class) {
7979
baseName = project.name
8080
version = version

shared/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ tasks {
125125
url = uri("http://fasterxml.github.io/jackson-databind/javadoc/2.9/").toURL()
126126
})
127127
}
128-
val buildDir = File("build")
128+
val buildDir = File("../build/artifacts")
129129
"sourcesJar"(Jar::class) {
130130
archiveClassifier.set("sources")
131131
destinationDirectory.set(buildDir)

standalone/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ tasks {
8383
url = uri("http://fasterxml.github.io/jackson-databind/javadoc/2.9/").toURL()
8484
})
8585
}
86-
val buildDir = File("build")
86+
val buildDir = File("../build/artifacts")
8787
"sourcesJar"(Jar::class) {
8888
archiveClassifier.set("sources")
8989
destinationDirectory.set(buildDir)

0 commit comments

Comments
 (0)