mirror of
https://github.com/sigmasternchen/xtext-core
synced 2025-03-16 00:38:56 +00:00
Updated include / exclude patterns for jar resources
This commit is contained in:
parent
58b4da0e52
commit
e6ba6be90e
2 changed files with 4 additions and 3 deletions
|
@ -19,4 +19,5 @@ dependencies {
|
|||
sourceSets.main {
|
||||
java.srcDir 'packrat'
|
||||
resources.include 'org/**', 'modeling32.png'
|
||||
resources.exclude 'packrat'
|
||||
}
|
||||
|
|
|
@ -11,9 +11,9 @@ sourceSets {
|
|||
java.srcDirs = ['src', 'xtend-gen', 'src-gen', 'emf-gen']
|
||||
resources {
|
||||
srcDirs = ['src', 'src-gen', 'emf-gen', '.']
|
||||
include 'plugin.xml', 'schema/**', 'about.ini', 'about.mappings', 'about.properties', 'about.html'
|
||||
exclude '**/*._trace', '**/*.xtendbin', '**/*.xtend'
|
||||
exclude 'src', 'xtend-gen', 'src-gen', 'emf-gen', 'build', 'target'
|
||||
include 'plugin.xml', 'schema/**', 'model/**', 'about.ini', 'about.mappings', 'about.properties', 'about.html',
|
||||
'**/*.properties', '**/*.xtextbin', '**/*.xmi', '**/*.g', '**/*.tokens'
|
||||
exclude 'bin', 'src', 'xtend-gen', 'src-gen', 'emf-gen', 'build', 'target', 'build.properties'
|
||||
}
|
||||
}
|
||||
configure(isTestProject? main : test) {
|
||||
|
|
Loading…
Reference in a new issue