LoginSignup
5
6

More than 5 years have passed since last update.

gradle Earプラグインサンプルで、Ear内にWarが含まれない事象

Last updated at Posted at 2015-08-23

gradleユーザーガイド 第27章 Earプラグイン
この章のサンプル(earWithWar、earCustomize)をコンパイルすると、Earアーカイブ中にWarファイルが含まれず、Jarファイルが含まれる。(Jarの中身はWarプロジェクトのJavaクラスファイル。ejb-jarプロジェクトとみなされている?)

Earプロジェクトのbuild.gradleに以下で、解決する。

build.gradle(修正前)
dependencies {
    deploy project(':war')
}
build.gradle(修正後)
dependencies {
    deploy project(path:':war', configuration: 'archives')
}


受け売りなので、理由は不明です。
英文サイトでしか解決法が見つからなかったので、備忘録として記載しました。
5
6
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
6