maven用 メモ¶
maven java 1.8 テンプレート¶
<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>snowsaber</groupId>
<artifactId>snowsaber</artifactId>
<version>0.0.1-SNAPSHOT</version>
<!-- 定数定義 -->
<properties>
<java.version>1.8</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<!-- 依存関係を記載する -->
</dependencies>
<!-- ビルド定義 -->
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
</plugins>
</build>
</project>
よく利用する依存性¶
lombok
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.12</version>
<scope>provided</scope>
</dependency>
mavneを利用して設定ファイルを置換えてwarを作成する¶
build定義配下に「org.apache.maven.plugins」の「maven-war-plugin」を利用する
記載例
<build>
<!-- 以下の設定でwarファイル作成時に置換えるようにする -->
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>3.1.0</version>
<configuration>
<webResources>
<webResource>
<directory>${resource.directory}</directory>
<targetPath>WEB-INF/classes/</targetPath>
<includes>
<include>logback.xml</include>
</includes>
</webResource>
</webResources>
</configuration>
</plugin>
</plugins>
<!-- リソースとして指定ファイルは 除外しておく-->
<resources>
<resource>
<directory>${basedir}/src/main/resources/</directory>
<excludes>
<exclude>logback.xml</exclude>
</excludes>
</resource>
</resources>
</build>
<!-- 以下を記載することでビルド時の引数によって設定ファイルを切り替える -->
<profiles>
<profile>
<id>local</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<resource.directory>src/main/resources</resource.directory>
</properties>
</profile>
<profile>
<id>it</id>
<properties>
<resource.directory>/resources/it</resource.directory>
</properties>
</profile>
</profiles>
ローカルファイルをインストールし利用する方法¶
ojdbc等mavenのリポジトリで公開されていないjarをpom.xmlにてインストールして利用する方法
以下の設定では「phase」タグに記載している「clean」でインストール作業を実施出来ます。
<build>
<!-- 以下の設定で ojbcのファイルをインストールし、通常のdependencyを記載することで利用できます。-->
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>3.0.0-M1</version>
<executions>
<execution>
<id>install-external</id>
<phase>clean</phase>
<configuration>
<file>${basedir}/lib/ojdbc8.jar</file>
<repositoryLayout>default</repositoryLayout>
<groupId>com.oracle</groupId>
<artifactId>ojdbc8</artifactId>
<version>12.0.0</version>
<packaging>jar</packaging>
<generatePom>true</generatePom>
</configuration>
<goals>
<goal>install-file</goal>
</goals>
</execution>
</executions>
</plugin>
</build>
dependency時
<dependency>
<groupId>com.oracle</groupId>
<artifactId>ojdbc8</artifactId>
<version>12.0.0</version>
</dependency>
複数の場合
「execution」の部分を増やすことにより複数のファイルをローカルリポジトリへの登録が可能 ※ idが重複している場合エラーとなるので注意
<execution>
<id>install-external</id>
<phase>clean</phase>
<configuration>
<file>${basedir}/lib/ojdbc8.jar</file>
<repositoryLayout>default</repositoryLayout>
<groupId>com.oracle</groupId>
<artifactId>ojdbc8</artifactId>
<version>12.0.0</version>
<packaging>jar</packaging>
<generatePom>true</generatePom>
</configuration>
<goals>
<goal>install-file</goal>
</goals>
</execution>