Maven-スナップショット
大規模なソフトウェアアプリケーションは通常、複数のモジュールで構成されており、複数のチームが同じアプリケーションの異なるモジュールで作業しているのが一般的なシナリオです。たとえば、チームがアプリケーションのフロントエンドでapp-uiプロジェクト(app-ui.jar:1.0)として作業していて、データサービスプロジェクト(data-service.jar:1.0)を使用しているとします。
現在、データサービスに取り組んでいるチームは、バグ修正または機能拡張を急速に行っており、ほぼ1日おきにライブラリをリモートリポジトリにリリースしている可能性があります。
データサービスチームが1日おきに新しいバージョンをアップロードすると、次の問題が発生します-
データサービスチームは、更新されたコードをリリースするたびにapp-uiチームに通知する必要があります。
app-uiチームは、更新されたバージョンを取得するために、pom.xmlを定期的に更新する必要がありました。
このような状況に対処するために、 SNAPSHOT コンセプトが登場します。
SNAPSHOTとは何ですか?
SNAPSHOTは、現在の開発コピーを示す特別なバージョンです。通常のバージョンとは異なり、Mavenはビルドごとにリモートリポジトリで新しいSNAPSHOTバージョンをチェックします。
これで、データサービスチームは更新されたコードのSNAPSHOTをリポジトリにリリースするたびにリリースします。たとえば、data-service:1.0-SNAPSHOTで、古いSNAPSHOTjarを置き換えます。
スナップショットとバージョン
バージョンの場合、Mavenが前述のバージョン(たとえばdata-service:1.0)を一度ダウンロードした場合、リポジトリで利用可能な新しい1.0をダウンロードしようとはしません。更新されたコードをダウンロードするには、データサービスのバージョンを1.1にアップグレードします。
SNAPSHOTの場合、Mavenは、app-uiチームがプロジェクトをビルドするたびに、最新のSNAPSHOT(data-service:1.0-SNAPSHOT)を自動的にフェッチします。
app-ui pom.xml
app-ui プロジェクトはデータサービスの1.0-SNAPSHOTを使用しています。
<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>app-ui</groupId>
<artifactId>app-ui</artifactId>
<version>1.0</version>
<packaging>jar</packaging>
<name>health</name>
<url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>data-service</groupId>
<artifactId>data-service</artifactId>
<version>1.0-SNAPSHOT</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
データサービスpom.xml
data-service プロジェクトは、マイナーな変更ごとに1.0-SNAPSHOTをリリースしています。
<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>data-service</groupId>
<artifactId>data-service</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>health</name>
<url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>
SNAPSHOTの場合、Mavenは毎日最新のSNAPSHOTを自動的にフェッチしますが、任意のmavenコマンドへの-Uスイッチを使用して、mavenに最新のスナップショットビルドをダウンロードさせることができます。
mvn clean package -U
コマンドコンソールを開いて、 C:\ > MVN > app-ui ディレクトリを作成し、以下を実行します mvn コマンド。
C:\MVN\app-ui>mvn clean package -U
Mavenは、データサービスの最新のスナップショットをダウンロードした後、プロジェクトのビルドを開始します。
[INFO] Scanning for projects...
[INFO]--------------------------------------------
[INFO] Building consumerBanking
[INFO] task-segment: [clean, package]
[INFO]--------------------------------------------
[INFO] Downloading data-service:1.0-SNAPSHOT
[INFO] 290K downloaded.
[INFO] [clean:clean {execution: default-clean}]
[INFO] Deleting directory C:\MVN\app-ui\target
[INFO] [resources:resources {execution: default-resources}]
[WARNING] Using platform encoding (Cp1252 actually) to copy filtered resources,
i.e. build is platform dependent!
[INFO] skip non existing resourceDirectory C:\MVN\app-ui\src\main\resources
[INFO] [compiler:compile {execution:default-compile}]
[INFO] Compiling 1 source file to C:\MVN\app-ui\target\classes
[INFO] [resources:testResources {execution: default-testResources}]
[WARNING] Using platform encoding (Cp1252 actually) to copy filtered resources,
i.e. build is platform dependent!
[INFO] skip non existing resourceDirectory C:\MVN\app-ui\src\test\resources
[INFO] [compiler:testCompile {execution: default-testCompile}]
[INFO] Compiling 1 source file to C:\MVN\app-ui\target\test-classes
[INFO] [surefire:test {execution: default-test}]
[INFO] Surefire report directory: C:\MVN\app-ui\target\
surefire-reports
--------------------------------------------------
T E S T S
--------------------------------------------------
Running com.companyname.bank.AppTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.027 sec
Results :
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0
[INFO] [jar:jar {execution: default-jar}]
[INFO] Building jar: C:\MVN\app-ui\target\
app-ui-1.0-SNAPSHOT.jar
[INFO]--------------------------------------------------------
[INFO] BUILD SUCCESSFUL
[INFO]--------------------------------------------------------
[INFO] Total time: 2 seconds
[INFO] Finished at: 2015-09-27T12:30:02+05:30
[INFO] Final Memory: 16M/89M
[INFO]------------------------------------------------------------------------