Maven - 快照 (Snapshots)



大型软件应用程序通常由多个模块组成,多个团队同时处理同一个应用程序的不同模块是很常见的场景。例如,假设一个团队正在处理应用程序的前端,作为 app-ui 项目 (app-ui.jar:1.0),并且他们正在使用数据服务项目 (data-service.jar:1.0)。

现在,负责 data-service 的团队可能会快速进行 bug 修复或增强功能,他们几乎每天都会将库发布到远程仓库。

如果 data-service 团队每天都上传一个新版本,那么就会出现以下问题:

  • data-service 团队每次发布更新代码时都必须通知 app-ui 团队。

  • app-ui 团队需要定期更新他们的 pom.xml 文件以获取更新的版本。

为了处理这种情况,引入了 **快照 (SNAPSHOT)** 的概念。

什么是快照 (SNAPSHOT)?

快照是一个特殊的版本,它表示当前的开发版本。与常规版本不同,Maven 在每次构建时都会检查远程仓库中是否有新的快照版本。

现在,data-service 团队每次都会将更新代码的快照发布到仓库,例如 data-service: 1.0-SNAPSHOT,替换旧的快照 jar 包。

快照 (Snapshot) 与版本 (Version) 的比较

对于版本,如果 Maven 下载了指定的版本,例如 data-service:1.0,它将不会尝试下载仓库中可用的更新的 1.0 版本。要下载更新的代码,data-service 版本必须升级到 1.1。

对于快照,Maven 将在每次 app-ui 团队构建其项目时自动获取最新的快照 (data-service:1.0-SNAPSHOT)。

app-ui pom.xml

**app-ui** 项目使用 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>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>

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

尽管对于快照,Maven 每天都会自动获取最新的快照,但您可以使用 -U 开关强制 Maven 下载最新的快照构建到任何 maven 命令中。

mvn clean package -U

让我们打开命令控制台,转到 **C:\ > MVN > app-ui** 目录并执行以下 **mvn** 命令。

C:\MVN\app-ui>mvn clean package -U

下载 data-service 的最新快照后,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]------------------------------------------------------------------------
广告