ぺーぺーSEのブログ

備忘録・メモ用サイト。

2013-05-01から1ヶ月間の記事一覧

Maven2、Maven3のsetting.xmlの書き方まとめ

参考:http://maven.apache.org/settings.html <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd"> <localRepository/> <interactiveMode/> </interactivemode/></localrepository/></settings>

Maven2、Maven3のPOMの書き方まとめ〜環境情報設定編〜

参考:http://maven.apache.org/pom.htmlblog.pepese.com ■概要 <project ...> <issueManagement> <system>...</system> <url>...</url> </issueManagement> <ciManagement> <system>...</system> <url>...</url> <notifiers> <notifier> <type>...</type> <sendOnError>...</sendOnError> <sendOnFailure>...</sendOnFailure> <…</notifier></notifiers></cimanagement></project>

Maven2、Maven3のPOMの書き方まとめ〜プロジェクト情報設定編〜

参考:http://maven.apache.org/pom.htmlblog.pepese.com ■概要 <project ...> <name>...</name> <description>...</description> <url>...</url> <inceptionYear>...</inceptionYear> <licenses> <license> <name>...</name> <url>...</url> <distribution>...</distribution> <comments>...</comments> </license> </licenses>…</project>

Maven2、Maven3のPOMの書き方まとめ〜レポート出力設定編〜

参考:http://maven.apache.org/pom.htmlblog.pepese.com ■概要 <project ...> <reporting> <outputDirectory>...</outputDirectory> <plugins> <plugin> <artifactId>...</artifactId> <version>...</version> <reportSets> <reportSet> <id>...</id> <reports> <report>...</report> </reports> <inherited>...</inherited> </reportset></reportsets></plugin></plugins></reporting></project>

Maven2、Maven3のPOMの書き方まとめ〜ビルド設定編〜

参考:http://maven.apache.org/pom.htmlblog.pepese.com ■概要 <project ...> <build> <defaultGoal>...</defaultGoal> <directory>...</directory> <finalName>...</finalName> <filters> <filter>...</filter> </filters> <resources> <resource> <targetPath>...</targetPath> <filtering>...</filtering> <directory>...</directory></resource></resources></build></project>

Maven2、Maven3のPOMの書き方まとめ〜依存関係設定編〜

参考:http://maven.apache.org/pom.htmlblog.pepese.com ■概要 <project ...> <dependencies> <dependency> <groupId>...</groupId> <artifactId>...</artifactId> <version>...</version> <type>...</type> <scope>...</scope> <optional>...</optional> <exclusions> <exclusion> <groupId>...</groupId> <artifactId>...</artifactid></exclusion></exclusions></dependency></dependencies></project>

Maven2、Maven3のPOMの書き方まとめ〜全体概要編〜

参考:http://maven.apache.org/pom.html■全体概要 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>...</groupid></project>