2013年5月15日水曜日
Mavenマルチモジュールプロジェクト作成
・親プロジェクト作成
mvn archetype:create -DartifactId=parent -DgroupId=example
・親プロジェクトのpom.xml編集
cd parent
<packaging>をjarからpomに変更します。
・子プロジェクトの作成
・Jarプロジェクト
mvn archetype:create -DartifactId=child1 -DgroupId=example
・Webプロジェクト
mvn archetype:create -DartifactId=child2 -DgroupId=example -DarchetypeArtifactId=maven-archetype-webapp
Jarプロジェクトを<dependency>に追加します。
<dependencies>
<dependency>
<groupId>example</groupId>
<artifactId>child1</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
</dependencies>
・Eclipseにインポート
[ファイル]-[インポート]よりルート・ディレクトリに親プロジェクトを選択し、 完了するとインポートされます。
登録:
コメントの投稿 (Atom)
0 件のコメント:
コメントを投稿