Skip to content

Commit

Permalink
build clean ups (#1225)
Browse files Browse the repository at this point in the history
  • Loading branch information
evanchooly committed Sep 24, 2018
1 parent 2086790 commit a23981e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -136,11 +136,11 @@ configure(subprojects.findAll { it.name != 'util' }) {
javadoc {
exclude "**/internal/**"

dependsOn project.project(':util').compileJava //We need taglets to be compiled
dependsOn project(':util').compileJava //We need taglets to be compiled

options.author = true
options.version = true
options.tagletPath project.project(":util").sourceSets.main.output.files
options.tagletPath project(":util").sourceSets.main.output.files
.stream()
.map { file(it) }
.collect(toList())
Expand Down
2 changes: 1 addition & 1 deletion no-proxy-deps-tests/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
sourceSets {
main {
java.outputDir = project.project(":morphia").sourceSets.test.output.files[0]
java.outputDir = project(":morphia").sourceSets.test.output.files[0]
}
}

Expand Down

0 comments on commit a23981e

Please sign in to comment.