例えばこのようなマルチプロジェクトがあるとして、

それぞれのpom.xmlの依存関係に着目するとどのような記述になっているのかが気になったので整理します。
todoBatch-parent
01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 | < project xmlns = "http://maven.apache.org/POM/4.0.0" xmlns:xsi = "http://www.w3.org/2001/XMLSchema-instance" < modelVersion >4.0.0</ modelVersion > < groupId >itouoti.spring.batch</ groupId > < artifactId >todoBatch-parent</ artifactId > < version >0.0.1-SNAPSHOT</ version > < packaging >pom</ packaging > < name >todoBatch-parent</ name > < modules > < module >todoBatch-env</ module > < module >todoBatch</ module > </ modules > </ project > |
親プロジェクトの管理している子プロジェクトをモジュールとして認識させています。
todoBatch-env
01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 | < project < modelVersion >4.0.0</ modelVersion > < parent > < groupId >itouoti.spring.batch</ groupId > < artifactId >todoBatch-parent</ artifactId > < version >0.0.1-SNAPSHOT</ version > </ parent > < artifactId >todoBatch-env</ artifactId > </ project > |
parentタグで親プロジェクトを指定しているだけです。
todoBatch
01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | < project < modelVersion >4.0.0</ modelVersion > < parent > < groupId >itouoti.spring.batch</ groupId > < artifactId >todoBatch-parent</ artifactId > < version >0.0.1-SNAPSHOT</ version > </ parent > < artifactId >todoBatch</ artifactId > < dependencyManagement > < dependencies > < dependency > < groupId >itouoti.spring.batch</ groupId > < artifactId >todoBatch-parent</ artifactId > < version >1.0-SNAPSHOT</ version > </ dependency > </ dependencies > </ dependencyManagement > < dependencies > < dependency > < groupId >itouoti.spring.batch</ groupId > < artifactId >todoBatch-env</ artifactId > < version >0.0.1-SNAPSHOT</ version > </ dependency > </ dependencies > </ project > |
todoBatch-envに依存しているため、dependencyタグでtodoBatch-envを登録しています。
コメントを書く