Revert "Fix build break from fixing build.gradle."

This reverts commit f230d478c0.
This commit is contained in:
Gregory Brail 2017-09-26 12:44:35 -07:00
Родитель f230d478c0
Коммит 594d85171e
1 изменённых файлов: 3 добавлений и 5 удалений

Просмотреть файл

@ -27,7 +27,7 @@ sourceSets {
}
resources {
srcDirs 'src', 'toolsrc'
include "**/*.properties"
include "*.properties"
}
}
@ -39,6 +39,7 @@ sourceSets {
}
resources {
srcDirs "testsrc"
include "*.properties"
}
}
}
@ -222,13 +223,10 @@ checkstyle {
distributions {
main {
contents {
from(sourceSets.main.java) {
from(sourceSets.main.allSource) {
exclude 'man'
into 'rhino' + project.version + '/src'
}
from(sourceSets.main.resources) {
into 'rhino' + project.version + '/src'
}
from(javadoc.destinationDir) {
into 'rhino' + project.version + '/docs'
}