maven问题,新手求解!
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了maven问题,新手求解!相关的知识,希望对你有一定的参考价值。
[ERROR] Failure executing javac, but could not parse the error:
错误: 读取E:\相关资料\maven\apache-maven-3.3.3-bin\apache-maven-3.3.3\org\xerial\sqlite-jdbc\3.8.11\sqlite-jdbc-3.8.11.jar时出错; error in opening zip file
1 个错误
Eclipse使用Maven创建Web时找不到maven-archetype-webap或报
Could not resolve archetype org.apache.maven.archetypes:maven-archetype-webapp:RELEASE from any of the configured repositories
解决方法:
window-->preferences-->Maven-->Archetypes-->Add Remote Catalog中添加
catalog File:http://repo1.maven.org/maven2/archetype-catalog.xml
Description: 随便填写
2.为Eclipse添加自己的maven环境
选择window-->preferences-->Maven-->Installations-->Add
选择本地maven安装目录,-->Apply
选择User Settings-->选择本地maven安装目录下conf-->settings.xml-->ok
重启Eclipse。
3.修改本地maven库地址
在settings.xml中<settings ...></settings>添加<localRepository>E:/localMaven/</localRepository>
4.启用jetty-run命令
settings.xml中添加<pluginGroup>org.mortbay.jetty</pluginGroup>
5.规范maven库
settings.xml中的<profiles></profiles>增加<repositories><repository><id></id><url>可以为局域网地址</url></repository></repositoories>
6.安装jar包到本地maven库
mvn install:install-file -Dfile=E:\jodconverter-2.2.2.jar -DgroupId=com.arto
fsolving -DartifactId=jodconverter -Dversion=2.2.2 -Dpackaging=jar -DgeneratePom
=true -DcreateChecksum=true
7.maven 关联本地项目jar包
<dependency>
<groupId>com.artofsolving</groupId>
<artifactId>jodconverter-core</artifactId>
<version>3.0-beta-4</version>
<scope>system</scope>
<systemPath>$basedir/lib/jodconverter-core-3.0-beta-4.jar</systemPath>
</dependency>
lib目录必须与pom.xml同级
8.can not calculate build plan:
选中项目右键—》maven-->Update Dependencies.
以上是关于maven问题,新手求解!的主要内容,如果未能解决你的问题,请参考以下文章
jquery easyui 布局问题 ,能不能把style="height:100px;" 设置成按分辨的百分比设置啊 求解,新手求解