我使用gradle构建我的java web项目,在我的源代码包中我有一些我不想在jettyrun中运行的源文件。
我该怎么办?感谢。
src
|--main
|--java
|--xxx.xxx.donotWantToRun
|--xxx.xxx.other
的build.gradle
apply plugin: "war"
apply plugin: "jetty"
jettyRun {
// I will exclude xxx.xxx.donotWantToRun package
// How to do?
}
答案 0 :(得分:0)
我解决了这个问题,刚刚排除了包形式的sourceSets就可以了。
SourceSets {
main {
java {
exclude "**/donotWantToRun/**"
}
}
}