我想通过在生成时添加选项“-Pprofile=”来更改资源文件夹.yml
所以
我知道在CLI中
- gradle clean -Pprofile=env1 bootJar
- java -jar build/libs/myProject.jar
- build.gradle
sourceSets {
ext.profile = (!project.hasProperty('profile') || !profile ) ? 'env1' : profile
main {
resources {
srcDirs "src/main/resources-env/${profile}"
}
}
}
字符串
但是我如何在运行/调试配置应用程序中添加构建选项'-Pprofile='(在intellij build not gradle中)
我想在程序参数中添加-Pprofile选项,intellij重建项目并在'out'中更改资源文件夹
但intellij不会重建,只是运行
我想构建intellij而不是gradle
那怎么行呢?
广场
1条答案
按热度按时间baubqpgj1#
您可以通过创建Gradle运行配置来执行此操作。
您可以在Run字段中提供
-P
参数:的数据