maven 的问题

问题描述

初用maven 用别人的项目改,配置文件老报错:<project><build>//... <plugins>//...<plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-scr-plugin</artifactId> <version>1.7.2</version> <executions> <execution> <id> <executions></id> <goals> <goal>scr</goal> </goals> </execution> </executions> <configuration> <parseJavaDoc>false</parseJavaDoc> </configuration> </plugin> </plugins> </build></project>不知道这段除了神秘问题。。 问题补充:[ERROR] Plugin org.codehaus.mojo:aspectj-maven-plugin:1.2 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.codehaus.mojo:aspectj-maven-plugin:jar:1.2: Could not transfer artifact org.codehaus.mojo:aspectj-maven-plugin:pom:1.2 from/to nexus (http://10.78.68.122:9090/nexus-2.1.1/content/groups/public/): Connection to http://10.78.68.122:9090 refused: Connection timed out: connect -> [Help 1][ERROR] 好吧红字。不过好像不是先前那段有问题

解决方案

从贴上来的错误来看,是因为你配置的maven的私服无法访问。所以下载不到这个依赖jar包。直接用浏览器访问:http://10.78.68.122:9090/nexus-2.1.1 是不是访问不了?
解决方案二:
修改一下本地maven的settings文件,配置正确的mirror
解决方案三:
<id> <executions></id> 这个是什么东西。。。
解决方案四:
报什么错?如果是红色下划线的提示,一般是找不到指定的jar包

时间: 2024-09-20 10:41:16

maven 的问题的相关文章

Maven入门(含实例教程)

原文地址:http://blog.csdn.net/u013142781/article/details/50316383 Maven这个个项目管理和构建自动化工具,越来越多的开发人员使用它来管理项目中的jar包.接下来小宝鸽,将从下面几个方向介绍maven: (1)Maven简单介绍 (2)Maven安装与配置 (3)Maven携手eclipse构建项目 (4)Maven的常用命令 (5)Maven实例 猿友门抓紧了,马上起飞了: (1)Maven的简单介绍 Maven这个个项目管理和构建自动

使用maven 容易遇到的问题

项目中使用了maven,而且搭建了nexus 私服. 经常会遇到如下问题: (一) 使用maven构建的项目下面都有一个pom.xml文件,里面设置了该项目的依赖的jar包.第一次因为没有联网或者nexus服务未启动,导致下载jar失败,以后依然下载失败.后来终于找到了原因: 因为第一次下载失败时,会在C:\Users\huangwei\.m2\repository 中生成对应jar包的lastUpdated文件,如xwork-core-2.1.6.jar.lastUpdated.因为有这个la

关于maven多项目之间的引用问题

问题描述 关于maven多项目之间的引用问题 现在是我的test-rop maven web中想引用 api接口中的一个server方法 我如何建立依赖关系才能引用到呢?我将api建到了web的依赖中了 但是还是引不到 这是我web的pom.xml中引用的配置 是通过maven生成的 <dependency> <groupId>com-lyl-base-api</groupId> <artifactId>com-lyl-base-api</artifa

maven surefire-maven-surefire-plugin使用

问题描述 maven-surefire-plugin使用 maven-surefire-plugin到底怎么用啊??网上找资料就说在控制台运行mvn test就可以了...到底在哪运行啊?请教下到底怎么用,从第一步开始. 解决方案 首先安装maven,然后在工程pom.xml配置maven-surefire-plugin.

the exception &quot;Failure to transfer org.apache.maven:maven-parent&quot; about Maven

   今天使用Maven碰到了这个异常,异常信息如下: Html代码   Failure to transfer org.apache.maven:maven-parent:pom:17 from http://repo.maven.apache.org/maven2 was cached in the local repository, resolution will not be reattempted until the update interval of central has ela

maven pom聚合与继承

说到聚合与继承我们都很熟悉,maven同样也具备这样的设计原则,下面我们来看一下Maven的pom如何进行聚合与继承的配置实现. 一.为什么要聚合? 随着技术的飞速发展和各类用户对软件的要求越来越高,软件本身也变得越来越复杂,然后软件设计人员开始采用各种方式进行开发,于是就有了我们的分层架构.分模块开发,来提高代码的清晰和重用.针对于这一特性,maven也给予了相应的配置. 情景分析一: 我们在开发过程中,创建了2个以上的模块,每个模块都是一个独立的maven project,在开始的时候我们可

转 maven常用内置变量

Intro Because I couldn't find a clear overview of which properties are availabe in maven2 I started this page. It is a collection of things found in the offcial maven documentation and postings to the maven user mailing list. Note: In Maven 3.0, all 

【转载】Jenkins + Git + Maven + tomcat集成环境搭建

本文转载自http://shift-alt-ctrl.iteye.com/blog/2208786   折腾了好几天,终于吧Jenkins + Git + Maven + tomcat集成环境搭建起来了,最终主要实现"自动构建.部署"web应用.   1.安装环境     操作系统:Centos 6.5     JDK:1.7.x     Maven:3.1.x     Git: 1.7.1,自建GitLab平台     tomcat:7.x       上述宿主机器2台:192.16

常用Maven插件介绍(下)

转自:http://www.infoq.com/cn/news/2011/05/xxb-maven-8-plugin     我们都知道Maven本质上是一个插件框架,它的核心并不执行任何具体的构建任务,所有这些任务都交给插件来完成,例如编译源代码是由maven- compiler-plugin完成的.进一步说,每个任务对应了一个插件目标(goal),每个插件会有一个或者多个目标,例如maven- compiler-plugin的compile目标用来编译位于src/main/java/目录下的

Maven发布工程到公共库

1.发布工程 新建一个 Maven build 选择要发布的工程 转载:http://www.cnblogs.com/lovesong/p/4542692.html