
maven
-小末
这个作者很懒,什么都没留下…
展开
-
解决Downloading: http://repo.maven.apache.org/maven2/下载依赖
问题描述:最近发现使用nexus之后,居然有的依赖还是去http://repo.maven.apache.org/maven2/下载:Downloaded from central: http://repo.maven.apache.org/maven2/...那我配的私服岂不是白配了。注意日志是从“central”这个id下载的,说明你的maven配置文件没有配置id为central的repository。我一看,果然我写的nexus的repository的id是自定义的,不是cen原创 2021-11-26 19:13:25 · 2246 阅读 · 0 评论 -
编译大数据组件几个常用的maven远程仓库
最近编译各种大数据组件源码,各种包找不到,于是搭建了一个nexus,把下面几个常用的maven远程仓库地址都加上去。记录一下:1.http://maven.aliyun.com/nexus/content/groups/public2.https://repo1.maven.org/maven2/3.http://packages.confluent.io/maven/4.http://conjars.org/repo5.https://repository.jboss.org.原创 2020-09-07 09:27:42 · 448 阅读 · 0 评论 -
手动添加maven依赖
例如: <dependency> <groupId>org.wso2.carbon</groupId> <artifactId>org.wso2.carbon.core</artifactId> <version>4.4.3</version></d原创 2018-07-19 11:44:34 · 5741 阅读 · 0 评论 -
Eclipse正确解决Missing artifact jdk.tools:jdk.tools:jar:1.8
我的eclipse的pom.xml报错:Missing artifact jdk.tools:jdk.tools:jar:1.8网上90%解决的方法 like this: <dependency> <groupId>jdk.tools</groupId> <artifactId>...原创 2019-07-04 16:40:52 · 12168 阅读 · 13 评论