2

gradlewar プラグインを使用していますWEB-INF。war のパック中にディレクトリ内のいくつかのディレクトリを除外しようとしていますが、除外が機能していないようです。これは私が持っているものです

 war {
   webInf {
        from 'src/main/config'
    }
   exclude('metadata/**')
  }

これに関する解決策はありますか?

4

4 に答える 4

0
sourceSets {
    main {
        src {
            srcDir 'config'
            exclude 'metadata/**'
        }
    }
}
于 2020-04-10T02:04:23.643 に答える
0

この投稿とコメントを参照してください

war {
// remove classes from the classpath <<<<<<<
classpath = configurations.runtime

// add them in explicitly, with the filtering applied
webInf {
    into('classes') {
        from sourceSets.main.classes
        exclude 'org/gradle/sample/excludeme/**'
    }
}
}
于 2015-04-13T10:08:54.820 に答える