SpringBootを使用して作成したWebアプリケーションをWarにするときに、依存ライブラリを別にしたい
方法
dependenciesの書き方をimplementationからprovidedCompileに変える
build.gradleに以下の設定を追加
bootWar { providedClasspath=[] }
SpringBootを使用して作成したWebアプリケーションをWarにするときに、依存ライブラリを別にしたい
dependenciesの書き方をimplementationからprovidedCompileに変える
build.gradleに以下の設定を追加
bootWar {
providedClasspath=[]
}