
Maven
Maven
漫天雪_昆仑巅
程序人生
展开
-
Maven经典错误之一:Please ensure you are using JDK 1.4 or above and not a JRE
在Eclipse/MyEclipse下用maven编译时,失败,提示 :Please ensure you are using JDK 1.4 or above and not a JRE (the com.sun.tools.javac.Main class is required). 问题原因:Eclipse/MyEclipse默认是使用jre作为运行环境,而m原创 2013-08-12 23:37:21 · 9813 阅读 · 0 评论 -
Maven中Scope标签说明
maven项目中,如果存在编译需要而发布不需要的jar包,可以用scope标签,值设为provided如下:<dependency> <groupId>com.sun</groupId> <artifactId>tools</artifactId> <version>${jdk.version}...原创 2019-03-04 14:21:30 · 234 阅读 · 0 评论 -
Missing artifact jdk.tools:jdk.tools:jar:1.8解决
Missing artifact jdk.tools:jdk.tools:jar:1.8错误添加tools依赖即可: <dependency> <groupId>jdk.tools</groupId> <artifactId>jdk.tools</artifactId> ...原创 2018-06-28 16:20:31 · 18016 阅读 · 3 评论 -
Maven打包所有依赖到一个jar中
在使用Java的时候经常会做打包操作,有的时候一个小功能的实现可能会依赖一些jar包,需求是:只要提供一个可运行的jar即可,因此就有必要将所有的依赖jar都打包到同一个可运行的jar中,这样可以更加简洁的提供一个可运行jar程序,使用Maven可以实现这一需求,pom.xml中设置打包plugin,具体配置如下: <build> <plugins> <pl...原创 2018-05-15 13:49:27 · 6527 阅读 · 0 评论 -
Maven中dependencyManagement作用说明
备注:今天有好些实习的同事问到Maven中关于dependencyManagement和普通dependencies的区别,说多了,麻烦,记录一下、在Maven多模块的时候,管理依赖关系是非常重要的,各种依赖包冲突,查询问题起来非常复杂,于是就用到了dependencyManagement>,示例说明,在父模块中: mys原创 2018-01-11 15:46:20 · 49902 阅读 · 13 评论 -
maven阿里巴巴镜像仓库配置
使用maven的时候经常需要配置;远程仓库的地址,一般不会使用默认的配置,毕竟网速有很大影响以下是阿里的镜像配置,1、修改maven/conf/settings.xml文件,将一下代码完全拷贝过去即可使用,2、设置自定义路径,<!--Licensed to the Apache Software Foundation (ASF) under oneor more contributor l原创 2017-12-07 21:17:00 · 2163 阅读 · 0 评论 -
Maven经典错误之三:was cached in the local repository, resolution will not be reattempted until the upda
常见错误:Multiple annotations found at this line:- No plugin found for prefix 'war' in the current project and in the plugin groups [] available from the repositories [local (D:\Maven_3\maven\m2\repos原创 2017-06-19 10:33:44 · 81130 阅读 · 3 评论 -
jar发布到本地maven仓库
将本地jar发布到本地maven仓库DOS中执行:mvn install:install-file -Dfile=C:\Users\lenovo\Desktop\xxxx.jar -DgroupId=userJar -DartifactId=com.ibm.ws.runtime -Dversion=1.0.0 -Dpackaging=jar说明:-Dfile:jar目录原创 2017-05-28 23:00:02 · 528 阅读 · 0 评论 -
Maven经典错误之二- Plugin execution not covered by lifecycle configuration: org.codehaus.mojo:aspectj-mave
一个错误示例:maven使用子父项目继承关系,子项目引用了父项目,子项目parent标签处报错如下:- Plugin execution not covered by lifecycle configuration: org.codehaus.mojo:******* (execution: default, phase: validate) 错误。原创 2017-05-27 11:21:49 · 1673 阅读 · 0 评论 -
Maven本地jar引用
有的时候需要在maven工程项目中引用本地的jar,pom.xml配置如下: SnmpCollector SnmpCollector 1.0.0.1-SNAPSHOT system E:/Eclipse_WorkPlace/isp/lib/xxxxr-1.0.0.1-SNAPSHOT.jar配置依赖后,从新build Maven即原创 2017-05-28 22:48:26 · 577 阅读 · 0 评论 -
Maven打包所有依赖到一个jar中
Java程序,使用Maven打包,将所有依赖的jar都打包到一个可执行的jar中,在pom.xml中增加以下配置即可: <build> <plugins> <plugin> <artifactId>maven-assembly-plugin</artifactId> <configuration&...原创 2019-06-18 15:52:57 · 2858 阅读 · 0 评论