本月博客排行
-
第1名
龙儿筝 -
第2名
lerf -
第3名
fantaxy025025 - johnsmith9th
- xiangjie88
- zysnba
年度博客排行
-
第1名
青否云后端云 -
第2名
宏天软件 -
第3名
gashero - wy_19921005
- vipbooks
- benladeng5225
- e_e
- wallimn
- javashop
- ranbuijj
- fantaxy025025
- jickcai
- gengyun12
- zw7534313
- qepwqnp
- 解宜然
- ssydxa219
- zysnba
- sam123456gz
- sichunli_030
- arpenker
- tanling8334
- gaojingsong
- kaizi1992
- xpenxpen
- 龙儿筝
- jh108020
- wiseboyloves
- ganxueyun
- xyuma
- xiangjie88
- wangchen.ily
- Jameslyy
- luxurioust
- lemonhandsome
- mengjichen
- jbosscn
- zxq_2017
- lzyfn123
- nychen2000
- forestqqqq
- wjianwei666
- ajinn
- zhanjia
- siemens800
- Xeden
- hanbaohong
- java-007
- 喧嚣求静
- mwhgJava
最新文章列表
eclipse下maven---自学
最近,一直沉醉于神奇的maven,从开始的极其排斥,觉得他部署的时候很慢,到部署第二个项目、第三个,自己简历了jar仓库nexus,有点小爱他了,慢慢的开始扣点细节。。今天先分享一部分,也是写下来,记录下,以后自己也能看!
开始觉得好神奇,看了很多大神的pom配置的文章,每次google我碰到的“红线”problem,真的都有答案。。。
废话多了。回归整体。。pom
<project x ...
maven的pom文件超详细解析
<!--可以免费转载,转载时请注明出处 http://pengqb.javaeye.com 。-->
<project xmlns="http://maven.apache.org/POM/4.0.0 "
xmlns:xsi="http://www.w3.org/2 ...
Maven variables
Maven中的内置变量
注:只是记录,方便查阅。
Build
${version
} 版本
${basedir
} 项目根目录(包含pom.xml文件的目录)
Project
${project.build.directory
} results in the path to your "target" dir, this is the sa ...
如何在pom文件添加插件
有些时候我们需要用到在一插件仓库中没有些插件帮我们完成一些特别功能,如将源代码进行打包成jar文件,下面我们简单的介绍一下,如何在pom文件中配置额外的插件,这些插件都可以到http://maven.apache.org/plugins/index.html的常用的插件列表。
现在我们可以在pom.xml文件中配置通添加build元素完成相应插件的配置如:插件的坐标,执行的目标以及执行的 ...
maven使用repository的顺序
The full ordering also puts settings.xml repositories ahead of repositories in the pom.xml file.
1. settings.xml - reverse profile order
2. pom.xml repositories
3. parent pom.xml repositories
maven 使用点滴
1. 安装jar包到本地maven仓库(以heritrix1.14.4.jar为例)
mvn install:install-file -DgroupId=org.archive.heritrix -DartifactId=archive-commons -Dversion=1.14.4 -Dpackaging=jar -Dfile=/path/to/heritrix-1.14.4.jar
...
[转]Add Microsoft SQL JDBC driver to Maven
Maven does not directly support some libraries, like Microsoft’s SQL Server JDBC. This tutorial will show you how to add an external dependency to your local Maven repository. It assumes you have al ...