Skip to content

Commit

Permalink
Merge pull request #23 from ndw/fix-formatting
Browse files Browse the repository at this point in the history
Fix formatting
  • Loading branch information
ndw committed Jan 3, 2020
2 parents abe9c44 + 9234412 commit ea7d218
Show file tree
Hide file tree
Showing 7 changed files with 1,696 additions and 64 deletions.
7 changes: 6 additions & 1 deletion build.gradle
Expand Up @@ -187,7 +187,7 @@ task specification(dependsOn: [ "source" ]) {
// nop
}

task xvrl(dependsOn: [ "xvrl_schemas", "spec_schemas",
task xvrl(dependsOn: [ "xvrl_schemas", "spec_schemas", 'xvrl_assets',
"specification", "xvrl_src" ],
type: DocBookTask) {
inputs.files fileTree(dir: "tools/xsl/")
Expand Down Expand Up @@ -249,6 +249,11 @@ task xvrl_schemas(dependsOn: [ "xvrl_rnc", "xvrl_rng" ],
args = ["-i", "-c", "build/xvrl.rnc", "sample/sample1.xml" ]
}

task xvrl_assets(type: Copy) {
from "src/main/resources"
into "build/dist/xvrl/"
}

// ======================================================================
// Clean up

Expand Down

0 comments on commit ea7d218

Please sign in to comment.