Maven專案中配置檔案Pom個元素的意義
pom.xml檔案(實踐用):
< 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/maven-v4_0_0.xsd“>
4.0.0
asia.banseon
banseon-maven2
jar
1.0-SNAPSHOT
banseon-maven
A maven project to study maven.
HELLO WORLD
banseon
[email protected]
Project Manager
Architect
demo
http://hi.baidu.com/banseon
No
-5
Demo
[email protected]
[email protected]
[email protected]
http:/hi.baidu.com/banseon/demo/dev/
jira
demo
http://www.baidu.com/banseon
Apache 2
http://www.baidu.com/banseon/LICENSE-2.0.txt
repo
A business-friendly OSS license
scm:svn:http://svn.baidu.com/banseon/maven/banseon/banseon-maven2-trunk(dao-trunk)
scm:svn:http://svn.baidu.com/banseon/maven/banseon/dao-trunk
http://svn.baidu.com/banseon
banseon-maven2
banseon maven2
file://${basedir}/target/deploy
banseon-maven2
Banseon-maven2 Snapshot Repository
scp://svn.baidu.com/banseon:/usr/local/maven-snapshot
banseon-site
business api website
scp://svn.baidu.com/banseon:/var/www/localhost/banseon-web
junit
junit
3.8.1
test
<!--
- 外在告訴maven你只包括指定的專案,不包括相關的依賴。此因素主要用於解決版本衝突問題
- 如下依賴表示 專案acegi-security依賴 org.springframework.XXX 專案,但我們不需要引用這些專案
-->
<dependency>
<groupId>org.acegisecurity</groupId>
<artifactId>acegi-security</artifactId>
<version>1.0.5</version>
<scope>runtime</scope>
<exclusions>
<exclusion>
<artifactId>spring-core</artifactId>
<groupId>org.springframework</groupId>
</exclusion>
<exclusion>
<artifactId>spring-support</artifactId>
<groupId>org.springframework</groupId>
</exclusion>
<exclusion>
<artifactId>commons-logging</artifactId>
<groupId>commons-logging</groupId>
</exclusion>
<exclusion>
<artifactId>spring-jdbc</artifactId>
<groupId>org.springframework</groupId>
</exclusion>
<exclusion>
<artifactId>spring-remoting</artifactId>
<groupId>org.springframework</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring</artifactId>
<version>2.5.1</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<version>2.5.1</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>8.2-504.jdbc4</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.oracle</groupId>
<artifactId>ojdbc6</artifactId>
<version>11.1.0.6</version>
<scope>runtime</scope>
</dependency>
()
什麼是pom?
pom作為專案物件模型。通過xml表示maven專案,使用pom.xml來實現。主要描述了專案:包括配置檔案;開發者需要遵循的規則,缺陷管理系統,組織和licenses,專案的url,專案的依賴性,以及其他所有的專案相關因素。
快速察看:
xml 程式碼
< modelVersion>4.0.0modelVersion>
< groupId>…
< artifactId>…
< version>…
< packaging>…
< dependencies>…
< parent>…
< dependencyManagement>…
< modules>…
< properties>…
< build>…
< reporting>…
< name>…
< description>…
< url>…
< inceptionYear>…
< licenses>…
< organization>…
< developers>…
< contributors>…
< issueManagement>…
< ciManagement>…
< mailingLists>…
< scm>…
< prerequisites>…
< repositories>…
< pluginRepositories>…
< distributionManagement>…
< profiles>…
< project>
基本內容:
POM包括了所有的專案資訊。
maven 相關:
pom定義了最小的maven2元素,允許groupId,artifactId,version。所有需要的元素
groupId:專案或者組織的唯一標誌,並且配置時生成的路徑也是由此生成,如org.codehaus.mojo生成的相對路徑為:/org/codehaus/mojo
artifactId: 專案的通用名稱
version:專案的版本
packaging: 打包的機制,如pom, jar, maven-plugin, ejb, war, ear, rar, par
classifier: 分類
POM關係:
主要為依賴,繼承,合成
依賴關係:
xml 程式碼
junit
junit
4.0
ja
test
true
…
< dependencies>
groupId, artifactId, version:描述了依賴的專案唯一標誌
可以通過以下方式進行安裝:
使用以下的命令安裝:
mvn install:install-file –Dfile=non-maven-proj.jar –DgroupId=some.group –DartifactId=non-maven-proj –Dversion=1
建立自己的庫,並配置,使用deploy:deploy-file
設定此依賴範圍為system,定義一個系統路徑。不提倡。
type:相應的依賴產品包形式,如jar,war
scope:用於限制相應的依賴範圍,包括以下的幾種變數:
compile :預設範圍,用於編譯
provided:類似於編譯,但支援你期待jdk或者容器提供,類似於classpath
runtime:在執行時,需要使用
test:用於test任務時使用
system:需要外在提供相應得元素。通過systemPath來取得
systemPath: 僅用於範圍為system。提供相應的路徑
optional: 標註可選,當專案自身也是依賴時。用於連續依賴時使用
獨佔性
外在告訴maven你只包括指定的專案,不包括相關的依賴。此因素主要用於解決版本衝突問題
xml 程式碼
org.apache.maven
maven-embedder
2.0
org.apache.maven
maven-core
< dependencies>
表示專案maven-embedder需要專案maven-core,但我們不想引用maven-core
繼承關係
另一個強大的變化,maven帶來的是專案繼承。主要的設定:
定義父專案
xml 程式碼
< modelVersion>4.0.0
< groupId>org.codehaus.mojo
< artifactId>my-parent
< version>2.0version>
< packaging>pom
< project>
packaging 型別,需要pom用於parent和合成多個專案。我們需要增加相應的值給父pom,用於子專案繼承。主要的元素如下:
依賴型
開發者和合作者
外掛列表
報表列表
外掛執行使用相應的匹配ids
外掛配置
子專案配置
xml 程式碼
< modelVersion>4.0.0
< parent>
org.codehaus.mojo
my-parent
2.0
../my-parent
< parent>
< artifactId>my-project
< project>
relativePath可以不需要,但是用於指明parent的目錄,用於快速查詢。
dependencyManagement:
用於父專案配置共同的依賴關係,主要配置依賴包相同因素,如版本,scope。
合成(或者多個模組)
一個專案有多個模組,也叫做多重模組,或者合成專案。
如下的定義:
xml 程式碼
< modelVersion>4.0.0
< groupId>org.codehaus.mojo
< artifactId>my-parent
< version>2.0
< modules>
my-project1
my-project2
< modules>
< project>
build 設定
主要用於編譯設定,包括兩個主要的元素,build和report
build
主要分為兩部分,基本元素和擴充套件元素集合
注意:包括專案build和profile build
xml 程式碼
…
< profiles>
<build>...<build>
< profiles>
< project>
基本元素
xml 程式碼
< defaultGoal>install
< directory>
< filters>
filters/filter1.properties
< filters>
…
< build>
defaultGoal: 定義預設的目標或者階段。如install
directory: 編譯輸出的目錄
finalName: 生成最後的檔案的樣式
filter: 定義過濾,用於替換相應的屬性檔案,使用maven定義的屬性。設定所有placehold的值
資源(resources)
你專案中需要指定的資源。如spring配置檔案,log4j.properties
xml 程式碼
< build>
…
META-INF/plexus
falsefiltering>
${basedir}/src/main/plexus
configuration.xml
*/.properties
…
…
< build>
< project>
resources: resource的列表,用於包括所有的資源
targetPath: 指定目標路徑,用於放置資源,用於build
filtering: 是否替換資源中的屬性placehold
directory: 資源所在的位置
includes: 樣式,包括那些資源
excludes: 排除的資源
testResources: 測試資源列表
外掛
在build時,執行的外掛,比較有用的部分,如使用jdk 5.0編譯等等
xml 程式碼
< build>
…
org.apache.maven.plugins
maven-jar-plugin
2.0
false
true
test
…
…
< build>
< project>
extensions: true or false,是否裝載外掛擴充套件。預設false
inherited: true or false,是否此外掛配置將會應用於poms,那些繼承於此的專案
configuration: 指定外掛配置
dependencies: 外掛需要依賴的包
executions: 用於配置execution目標,一個外掛可以有多個目標。
如下:
xml 程式碼
maven-antrun-plugin
<executions>
<execution>
<id>echodirid>
<goals>
<goal>run<goal>
<phase>verify<phase>
<inherited>false<inherited>
<configuration>
<tasks>
<echo>Build Dir: ${project.build.directory}<echo>
<tasks>
<configuration>
<execution>
<executions>
<plugin>
說明:
id:規定execution 的唯一標誌
goals: 表示目標
phase: 表示階段,目標將會在什麼階段執行
inherited: 和上面的元素一樣,設定false maven將會拒絕執行繼承給子外掛
configuration: 表示此執行的配置屬性
外掛管理
pluginManagement:外掛管理以同樣的方式包括外掛元素,用於在特定的專案中配置。所有繼承於此專案的子專案都能使用。主要定義外掛的共同元素
擴充套件元素集合
主要包括以下的元素:
Directories
用於設定各種目錄結構,如下:
xml 程式碼
${basedir}/target/test-classes
…
< build>
Extensions
表示需要擴充套件的外掛,必須包括進相應的build路徑。
xml 程式碼
< build>
…
org.apache.maven.wagon
wagon-ftp
1.0-alpha-3
…
< build>
< project>
Reporting
用於在site階段輸出報表。特定的maven 外掛能輸出相應的定製和配置報表。
xml 程式碼
${basedir}/target/siteoutputDirectory>
maven-project-info-reports-pluginartifactId>
reportSet>
reportSets>
plugin>
plugins>
reporting>
Report Sets
用於配置不同的目標,應用於不同的報表
xml 程式碼
name:專案除了artifactId外,可以定義多個名稱
description: 專案描述
url: 專案url
inceptionYear:創始年份
Licenses
xml 程式碼
< license>
Apache 2name>
http://www.apache.org/licenses/LICENSE-2.0.txt
repodistribution>
A business-friendly OSS license
< license>
< licenses>
Organization
配置組織資訊
xml 程式碼
Developers
配置開發者資訊
xml 程式碼
Contributors
xml 程式碼
Noelle
[email protected]
http://noellemarie.com
Noelle Marie
http://noellemarie.com
tester
-5
[email protected]
< contributors>
環境設定
Issue Management
定義相關的bug跟蹤系統,如bugzilla,testtrack,clearQuest等
xml 程式碼
Continuous Integration Management
連續整合管理,基於triggers或者timings
xml 程式碼
[email protected]< ciManagement>
Mailing Lists
xml 程式碼
SCM
軟體配置管理,如cvs 和svn
xml 程式碼
Repositories
配置同setting.xml中的開發庫
Plugin Repositories
配置同 repositories
Distribution Management
用於配置分發管理,配置相應的產品釋出資訊,主要用於釋出,在執行mvn deploy後表示要釋出的位置
1 配置到檔案系統
xml 程式碼
< repository>
< id>proficio-repository
< name>Proficio Repository
< url>file://${basedir}/target/deploy
< repository>
< distributionManagement>
2 使用ssh2配置
xml 程式碼
< repository>
< id>proficio-repository
< name>Proficio Repository
< url>scp://sshserver.yourcompany.com/deploy
< repository>
< distributionManagement>
3 使用sftp配置
xml 程式碼
< repository>
< id>proficio-repositoryi
< name>Proficio Repository
< url>sftp://ftpserver.yourcompany.com/deploy
< repository>
< distributionManagement>
4 使用外在的ssh配置
編譯擴充套件用於指定使用wagon外在ssh提供,用於提供你的檔案到相應的遠端伺服器。
xml 程式碼
< repository>
< id>proficio-repository
< name>Proficio Repository
< url>scpexe://sshserver.yourcompany.com/deploy
< repository>
< distributionManagement>
< build>
< extensions>
< extension>
< groupId>org.apache.maven.wagon
< artifactId>wagon-ssh-external
< version>1.0-alpha-6
< extension>
< extensions>
< build>
5 使用ftp配置
xml 程式碼
< repository>
< id>proficio-repository
< name>Proficio Repository
< url>ftp://ftpserver.yourcompany.com/deploy
< repository>
< distributionManagement>
< build>
< extensions>
< extension>
< groupId>org.apache.maven.wagongroupId>
< artifactId>wagon-ftpartifactId>
< version>1.0-alpha-6version>
< extension>
< extensions>
< build>
repository 對應於你的開發庫,使用者資訊通過settings.xml中的server取得
Profiles
類似於settings.xml中的profiles,增加了幾個元素,如下的樣式:
xml 程式碼
test
…
…
…
…
…
…
…r
…
…
< profiles>
相關推薦
Maven專案中配置檔案Pom個元素的意義
pom.xml檔案(實踐用): < project xmlns=”http://maven.apache.org/POM/4.0.0” xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance”
nuxus 3在Maven專案的配置和POM檔案的配置
在nuxus 3中的Maven預設會建立三個倉庫,這三個倉庫的關係如下: public是release和snapshot的全集,release預設為關閉狀態,所以在配置nexus 3時需要將其開啟。 下面是具體的配置過程,參考如下: 1、對專案獨立設定: 開啟專
SSM+Maven專案有關配置檔案說明
SSM專案配置檔案說明 Spring的配置檔案:applicationContext.xml <?xml version="1.0" encoding="UTF-8"?> <!-- 防止二次掃描控制器 --> <context:component-sc
java專案中配置檔案的使用
讀寫xml、properties 檔案型別 新建java工程Test專案,專案src下建立demo.propertiesFileDemo.java、 demo.xmlFileDemo.java 引入相關jar包: :commons-collections-3.2.j
maven專案中配置tomcat
maven專案中配置tomcat 第一步:這裡有兩種方式 第二步: 選擇maven小齒輪 第三步: 可以給小工具取名字,不要忘記配置命令 第四步:配置完成,出現按鈕 第五步: 配置tomcat7外掛,最好是在聯網狀態下進行 如果還有其他,相關maven專案匯入的疑問,可以看我其他
SSH框架整合的MAVEN專案之配置檔案整合
在最近的SSH框架知識回顧之後,整合了一些所需的配置檔案,並將配置檔案中的配置項記錄下來,避免在以後的開發中進行重複性編碼 首先是web專案的核心配置檔案 web.xml <?xml version="1.0" encoding="UTF-8"?&
maven專案中各檔案都沒有報錯,但是專案名稱有紅叉
第一種情況:剛開始建立maven專案的時候,預設使用的是jre1.5版本,而且沒有匯入Tomcat伺服器,可以看到Problems(和Console控制檯同欄,如果沒有,可以在Window——Show
IDEA在maven專案中配置central倉庫
在pom.xml的<project>標籤裡新增: <repositories> <repository> <id>central</id> <name>Mave
在DUBBO專案中 配置檔案出現找不到標籤而報紅叉 但專案能夠正常執行
使用dubbo 專案的同學,大概都遇到過dubbo 配置檔案出現錯誤的情況,但是專案又能夠正常執行。 在eclipse 中錯誤如下: - cvc-complex-type.2.4.c: The matching wildcard is strict, but no d
專案中配置檔案路徑
1 場景 2 預備知識 3 解決辦法 4 windws和linux下路徑 1 場景 在專案中大多會涉及到相對路徑和絕對路徑,以專案中的配置檔案為例,如何找到配置檔案的路徑?下面介紹幾種方法說明。 2 預備知識 (1)System.getProperty("
Maven專案下配置檔案找不到的解決辦法
問題出現 在構件Maven專案時候,我們已經將配置檔案放在包下,但是專案執行出錯,報錯找不到xxx.xml檔案. 先來分析一下普通Maven專案的專案檢視: 在src下有main和test兩個
Maven專案中oracle資料庫連線不上(已經在pom檔案中配置jdbc驅動檔案)
在Maven專案中配置資料庫連線的過程中,出現java.lang.ClassNotFoundException: oracle.jdbc.OracleDriver: 但是檢查了很久都沒有發現哪裡出現錯誤,該配置的都配置了,然後在百度找了一下,發現是oracle版本不同造成的: 參
Maven專案中整合SSH(pom.xml檔案的配置詳解)
Maven專案中整合SSH比較繁瑣,需要解決版本衝突問題,博主在下面給出了pom.xml檔案的配置資訊,改配置檔案整合的是:struts2-2.3.24、spring4.2.4、hibernate5.0.7。如果需要改版本,只需要更改<properties>標籤中
maven專案中pom檔案配置nexus倉庫
在上一章節中,重點介紹瞭如何搭建nexus,搭建成功之後關鍵在於如何運用到專案中,下面將結合實際專案做簡單介紹。 windows下搭建nexus倉庫:http://blog.csdn.net/hh12211221/article/details/74010609 在pom檔案中配置nexus倉庫
maven 專案中 用pom.xml 配置 jetty
<plugin> <groupId>org.mortbay.jetty</groupId> <artifactId>jetty-maven-plugin</artifactId> <
Idea中Maven專案中target目錄無配置檔案
今天專案中一個maven的子模組怎麼都跑不起來,提示某些xml配置檔案和日誌配置檔案找不到,檢查半天也沒有地方出錯,折騰半天發現是因為生成的target目錄中無配置檔案。 導致原因:我的資源目錄是自己建立的起名為resource,並且將之指定為了資源目錄,但是這個是有規範的,雖然能隨意指定資源目
[JAVA IDEA]在使用maven專案中,無法讀取resources資料夾中的配置檔案的一種解決方案
1、在通過配置檔案來連線資料庫時,在resouces檔案中放入了db.properties配置檔案,但無法正常讀取到 讀取配置檔案資訊的程式碼: InputStream input=JdbcUtil.class.getClassLoader().getResourceAsStream("db.prope
Maven專案中POM檔案的詳解
pom標頭檔案的解釋 <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/200
idea中的spring boot maven專案的依賴和pom.xml檔案不一致的解決辦法
今天用idea建立了一個spring boot專案,包含了spring security,在pom檔案和專案依賴都存在security依賴的情況下,對專案的訪問連結都會跳轉到輸入賬號密碼的驗證登入頁面,程式碼和跳轉如下: 為了驗證security的
maven專案中pom.xml配置詳解大全
<!-- 描述了資源的目標路徑。該路徑相對target/classes目錄(例如${project.build.outputDirectory})。舉個例 子,如果你想資源在特定的包裡(org.apache.maven.messages),你就必須該元素設定為org/apache/maven /