
maven
文章平均质量分 53
iteye_1713
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
同事的maven学习笔记
目录 前言 maven概要 maven不是什么 maven是什么 maven的生命周期 maven的"约定优于配置" maven的版本规范 maven的组成部分 maven的依赖管理 多项目管理 属性 maven...原创 2011-01-17 14:05:10 · 831 阅读 · 0 评论 -
maven笔记
手动下载maven依赖(without pom): 使用dependency:get。 如: mvn dependency:get -DrepoUrl=http://10.2.2.10:8081/nexus/content/repositories/releases -DgroupId=org.apache.httpcomponents -DartifactId=httpclient -Dv...原创 2011-11-16 18:01:54 · 96 阅读 · 0 评论 -
maven集成tomcat进行web应用测试
1、环境介绍 maven:apache-maven-3.0.3 tomcat:apache-tomcat-6.0.32 jdk:jdk1.5.0_11 eclipse:3.7.2 2、配置tomcat-maven-plugin 在pom.xml中加入如下配置 [code="xml"] org.codehaus.mojo tomcat-maven-pl...原创 2012-06-15 16:13:21 · 176 阅读 · 0 评论 -
eclipse maven 起服务debug无法关联源码
1. 安装sourcelookup插件: update site: 1) http://bjmi.github.io/update-site/ (3.8.2可用,后续描述均针对此插件) 2) http://ifedorenko.github.io/m2e-extras/ (3.8.2不可用) 参考: https://github.com/bjmi/m2e.sourcelookup ...原创 2015-07-31 10:20:19 · 373 阅读 · 0 评论 -
maven远程库列表
[table] |远程库|地址| | central | [url]http://search.maven.org/[/url] [url]http://repo.maven.apache.org/maven2[/url] | | apache | [url]https://repository.apache.org/content/groups/public/[/url] | | app...原创 2012-11-10 22:21:09 · 139 阅读 · 0 评论 -
[maven]Multiple annotations found at this line
旧版本m2e插件报以下错: [quote] Multiple annotations found at this line: - Plugin execution not covered by lifecycle configuration: org.apache.maven.plugins:maven- compiler-plugin:3.0:compile (execution:...原创 2012-12-04 15:02:22 · 172 阅读 · 0 评论 -
maven无法自动产生.classpath文件
在导入maven工程时,eclipse无法自动产生.classpath文件,被配置忽略的goal不会执行(以下配置则不会自动compile),原因是因为pom.xml里配了以下的代码: [code="xml"] org.eclipse.m2e lifecycle-mapping 1.0.0 ...原创 2012-12-04 19:22:04 · 777 阅读 · 0 评论