构建MAVEN项目

mvn archetype:generate创建Java项目

mvn archetype:generate -DgroupId=com.mycompany.app -DartifactId=myapp -DarchetypeArtifactId=maven-archetype-quickstart -DinteractiveMode=false

这里写图片描述

分别在src/test/和src/main目录下创建resources目录

mkdir src/test/resources
mkdir src/main/resources

编译项目、结果在target/classes目录下

这里写图片描述

测试

mvn clean test

这里写图片描述

打包

mvn clean package

这里写图片描述

安装

mvn clean install
跳过测试:
mvn clean install -DskipTests

错误处理

[ERROR] Failed to execute goal on project hdfsUtils: Could not resolve dependencies for project com.changtu:hdfsUtils:jar:1.0-SNAPSHOT: Failure to find com.oracle:ojdbc6:jar:11.2.0.2.0 in https://repo.maven.apache.org/maven2 was cached in the local repository, resolution will not be reattempted until the update interval of central has elapsed or updates are forced -> [Help 1]
[ERROR] 
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR] 
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/DependencyResolutionException
mvn install:install-file -Dfile=/appl/scripts/lubinsu/changtu/lib/ojdbc6-11.2.0.2.0.jar-DgroupId=com.oracle -DartifactId=ojdbc6 -Dversion=11.2.0.2.0 -Dpackaging=jar

这是因为maven中央库并没有提供Oracle的jdbc包,我们手工添加到本地maven库中

mvn install:install-file -Dfile=/appl/scripts/lubinsu/changtu/lib/ojdbc6-11.2.0.2.0.jar-DgroupId=com.oracle -DartifactId=ojdbc6 -Dversion=11.2.0.2.0 -Dpackaging=jar

查看冲突的包依赖关系

mvn dependency:tree -Dverbose -Dincludes=commons-beanutils
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值