Maven 快照 SNAPSHOT

maven 快照 snapshot

一个大型的软件应用通常包含多个模块,并且通常的场景是多个团队开发同一应用的不同模块。举个例子,设想一个团队开发应用的前端,项目为 app-ui(app-ui.jar:1.0),而另一个团队开发应用的后台,使用的项目是 data-service(data-service.jar:1.0)。

现在可能出现的情况是开发 data-service 的团队正在进行快节奏的 bug 修复或者项目改进,并且他们几乎每隔一天就要发布库到远程仓库。 现在如果 data-service 团队每隔一天上传一个新版本,那么将会出现下面的问题:

  • data-service 团队每次发布更新的代码时都要告知 app-ui 团队。
  • app-ui 团队需要经常地更新他们 pom.xml 文件到最新版本。

为了解决这种情况,快照的概念派上了用场。

 

1. 什么是快照

快照是一种特殊的版本,指定了某个当前的开发进度的副本。不同于常规的版本,maven 每次构建都会在远程仓库中检查新的快照。 现在 data-service 团队会每次发布更新代码的快照到仓库中,比如说 data-service:1.0-snapshot 来替代旧的快照 jar 包。

 

2. 项目快照 vs 版本

对于版本,如果 maven 以前下载过指定的版本文件,比如说 data-service:1.0,maven 将不会再从仓库下载新的可用的 1.0 文件。若要下载更新的代码,data-service 的版本需要升到1.1。

快照的情况下,每次 app-ui 团队构建他们的项目时,maven 将自动获取最新的快照(data-service:1.0-snapshot)。

1) app-ui 项目的 pom.xml 文件

app-ui 项目使用的是 data-service 项目的 1.0 快照。

<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>

2) data-service 项目的 pom.xml 文件:

data-service 项目为每次小的改动发布 1.0 快照。

<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>

虽然,快照的情况下,maven 在日常工作中会自动获取最新的快照, 你也可以在任何 maven 命令中使用 -u 参数强制 maven 下载最新的快照构建。

mvn clean package -u

让我们打开命令控制台,去到 c:\ > mvn > app-ui 目录,然后执行下面的 mvn 命令。

c:\mvn\app-ui>mvn clean package -u

maven 将在下载 data-service 最新的快照之后,开始构建项目。

[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: tue jul 10 16:52:18 ist 2012
[info] final memory: 16m/89m
[info] ------------------------------------------------------------------------

下一节:maven 自动化构建

maven 教程

相关文章