1
Gradle war:正規表現ではファイル名を変更できません。gradle war rename file通常のEXPが動作しない
foo/bar/config/*.xml -> foo/config/*.xml
エントリー・パスの名前を変更しようとすると
はwar {
into "foo"
from ("hello/world") {
include "bar/config/*.xml"
// remove bar/ in the path
rename '(.*)/bar/config/(.*)', '$1/config/$2'
// tried
// rename 'bar/config/(.*)', 'config/$1'
}
}
戦争の内部で変更されませんでした。