Commit 2332b9b2 authored by Claus Nagel's avatar Claus Nagel
Browse files

minor change to build.gradle

parent 80a46864
...@@ -43,31 +43,27 @@ startScripts { ...@@ -43,31 +43,27 @@ startScripts {
} }
} }
distributions { distributions.main.contents {
main { from('resources/doc/README') {
contents { filter(ReplaceTokens, tokens: [
from('resources/doc/README') { version : project.version,
filter(ReplaceTokens, tokens: [ date : date.format('yyy-MM-dd'),
version: project.version, copyright : date.format('yyyy'),
date: date.format('yyy-MM-dd'), javaCompatibility: sourceCompatibility.toString(),
copyright: date.format('yyyy'), jar : jar.archiveName
javaCompatibility: sourceCompatibility.toString(), ])
jar: jar.archiveName }
]) into('jaxb-plugins') {
} from 'jaxb-plugins'
into('jaxb-plugins') { }
from 'jaxb-plugins' into('schemas') {
} from 'schemas'
into('schemas') { }
from 'schemas' into('sample') {
} from 'sample'
into('sample') { }
from 'sample' into('license') {
} from 'LICENSE'
into('license') {
from 'LICENSE'
}
}
} }
} }
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment