黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

Maven 快照 SNAPSHOT

maven 快照 snapshot

一個(gè)大型的軟件應(yīng)用通常包含多個(gè)模塊,并且通常的場(chǎng)景是多個(gè)團(tuán)隊(duì)開(kāi)發(fā)同一應(yīng)用的不同模塊。舉個(gè)例子,設(shè)想一個(gè)團(tuán)隊(duì)開(kāi)發(fā)應(yīng)用的前端,項(xiàng)目為 app-ui(app-ui.jar:1.0),而另一個(gè)團(tuán)隊(duì)開(kāi)發(fā)應(yīng)用的后臺(tái),使用的項(xiàng)目是 data-service(data-service.jar:1.0)。

現(xiàn)在可能出現(xiàn)的情況是開(kāi)發(fā) data-service 的團(tuán)隊(duì)正在進(jìn)行快節(jié)奏的 bug 修復(fù)或者項(xiàng)目改進(jìn),并且他們幾乎每隔一天就要發(fā)布庫(kù)到遠(yuǎn)程倉(cāng)庫(kù)。 現(xiàn)在如果 data-service 團(tuán)隊(duì)每隔一天上傳一個(gè)新版本,那么將會(huì)出現(xiàn)下面的問(wèn)題:

  • data-service 團(tuán)隊(duì)每次發(fā)布更新的代碼時(shí)都要告知 app-ui 團(tuán)隊(duì)。
  • app-ui 團(tuán)隊(duì)需要經(jīng)常地更新他們 pom.xml 文件到最新版本。

為了解決這種情況,快照的概念派上了用場(chǎng)。

 

1. 什么是快照

快照是一種特殊的版本,指定了某個(gè)當(dāng)前的開(kāi)發(fā)進(jìn)度的副本。不同于常規(guī)的版本,maven 每次構(gòu)建都會(huì)在遠(yuǎn)程倉(cāng)庫(kù)中檢查新的快照。 現(xiàn)在 data-service 團(tuán)隊(duì)會(huì)每次發(fā)布更新代碼的快照到倉(cāng)庫(kù)中,比如說(shuō) data-service:1.0-snapshot 來(lái)替代舊的快照 jar 包。

 

2. 項(xiàng)目快照 vs 版本

對(duì)于版本,如果 maven 以前下載過(guò)指定的版本文件,比如說(shuō) data-service:1.0,maven 將不會(huì)再?gòu)膫}(cāng)庫(kù)下載新的可用的 1.0 文件。若要下載更新的代碼,data-service 的版本需要升到1.1。

快照的情況下,每次 app-ui 團(tuán)隊(duì)構(gòu)建他們的項(xiàng)目時(shí),maven 將自動(dòng)獲取最新的快照(data-service:1.0-snapshot)。

1) app-ui 項(xiàng)目的 pom.xml 文件

app-ui 項(xiàng)目使用的是 data-service 項(xiàng)目的 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 項(xiàng)目的 pom.xml 文件:

data-service 項(xiàng)目為每次小的改動(dòng)發(fā)布 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 在日常工作中會(huì)自動(dòng)獲取最新的快照, 你也可以在任何 maven 命令中使用 -u 參數(shù)強(qiáng)制 maven 下載最新的快照構(gòu)建。

mvn clean package -u

讓我們打開(kāi)命令控制臺(tái),去到 c:\ > mvn > app-ui 目錄,然后執(zhí)行下面的 mvn 命令。

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

maven 將在下載 data-service 最新的快照之后,開(kāi)始構(gòu)建項(xiàng)目。

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

下一節(jié):maven 自動(dòng)化構(gòu)建

maven 教程

相關(guān)文章