Skip to content

Commit

Permalink
Fixed build directory
Browse files Browse the repository at this point in the history
  • Loading branch information
DRSchlaubi committed Mar 30, 2019
1 parent 9bc4c19 commit 07acf48
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion client/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ tasks {
packageListUrl = uri("https://gist.githubusercontent.com/DRSchlaubi/3d1d0aaa5c01963dcd4d0149c841c896/raw/22141759fbab1e38fd2381c3e4f97616ecb43fc8/package-list").toURL()
})
}
val buildDir = File("build")
val buildDir = File("../build/artifacts")
"sourcesJar"(Jar::class) {
archiveClassifier.set("sources")
destinationDirectory.set(buildDir)
Expand Down
2 changes: 1 addition & 1 deletion plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ tasks {
packageListUrl = uri("https://gist.githubusercontent.com/DRSchlaubi/3d1d0aaa5c01963dcd4d0149c841c896/raw/22141759fbab1e38fd2381c3e4f97616ecb43fc8/package-list").toURL()
})
}
val buildDir = File("build")
val buildDir = File("../build/artifacts")
"sourcesJar"(Jar::class) {
archiveClassifier.set("sources")
destinationDirectory.set(buildDir)
Expand Down
2 changes: 1 addition & 1 deletion server/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ artifacts {
}

tasks {
val buildDir = File("build")
val buildDir = File("../build/artifacts")
"shadowJar"(ShadowJar::class) {
baseName = project.name
version = version
Expand Down
2 changes: 1 addition & 1 deletion shared/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ tasks {
url = uri("http://fasterxml.github.io/jackson-databind/javadoc/2.9/").toURL()
})
}
val buildDir = File("build")
val buildDir = File("../build/artifacts")
"sourcesJar"(Jar::class) {
archiveClassifier.set("sources")
destinationDirectory.set(buildDir)
Expand Down
2 changes: 1 addition & 1 deletion standalone/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ tasks {
url = uri("http://fasterxml.github.io/jackson-databind/javadoc/2.9/").toURL()
})
}
val buildDir = File("build")
val buildDir = File("../build/artifacts")
"sourcesJar"(Jar::class) {
archiveClassifier.set("sources")
destinationDirectory.set(buildDir)
Expand Down

0 comments on commit 07acf48

Please sign in to comment.