使用myeclipse构建maven项目 -凯发k8网页登录

专注于javaweb开发
随笔 - 39, 文章 - 310, 评论 - 411, 引用 - 0
数据加载中……

使用myeclipse构建maven项目

这里用的是myeclpise的自带的maven插件。
maven最好配置成你自己安装的那个,myeclipse自带会有些许bug。


用nexus代理maven的中央仓库,setting.xml的配置文件修改内容如下:
<mirrors>
     <mirror>
          <id>nexusid>
          <mirrorof>*mirrorof>
          <name>nexus mirrorname>
          <url>http://localhost:8081/nexus/content/groups/publicurl>
     mirror>
  mirrors>
  
  <profiles>
     <profile>
      <id>nexusid>
      <repositories>
        <repository>
          <id>centralid>
          <url>http://centralurl>
          <releases><enabled>trueenabled>releases>
          <snapshots><enabled>trueenabled>snapshots>
        repository>
      repositories>
     <pluginrepositories>
        <pluginrepository>
          <id>centralid>
          <url>http://centralurl>
          <releases><enabled>trueenabled>releases>
          <snapshots><enabled>trueenabled>snapshots>
        pluginrepository>
      pluginrepositories>
    profile>
  profiles>
  <activeprofiles>
    <activeprofile>nexusactiveprofile>
  activeprofiles>
http://localhost:8081/nexus/content/groups/public 是仓库组的地址。
打下myeclipse新建工程的界面,选择maven下的maven project,打开如下图的向导:

这里我们要选中create a simple project。
点击下一步,填写gav相关内容。

点击完成后,我们就已经成功创建了一个maven project了。
工程的默认目录结构如下:


所有的java源文件都要写在src/main/java目录下,所有的测试类都要写在src/test/java下面,这是maven的默认值。
此时,pom.xml里只有默认的属性
<project xmlns="http://maven.apache.org/pom/4.0.0" xmlns:xsi="http://www.w3.org/2001/xmlschema-instance" xsi:schemalocation="http://maven.apache.org/pom/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  <modelversion>4.0.0modelversion>
  <groupid>com.testgroupid>
  <artifactid>testartifactid>
  <version>0.0.1-snapshotversion>
project>
这是最精简的pom.xml了。
这时我们加入junit的支持,新建一个测试类。
在项目上右键maven-add dependency,显示如下界面:

输入junit加入测试支持类库。
在src/test/java下新建一个测试类如下:
package com;
import org.junit.test;
public class testrun
{
@test
public void testa()
{
system.out.println("test a method ");
}
@test
public void testb()
{
system.out.println("test b method ");
}
}
右键run as ----- maven test,进行测试,显示结果如下:



[info] scanning for projects
[info]                                                                         
[info] ------------------------------------------------------------------------
[info] building test 0.0.1-snapshot
[info] ------------------------------------------------------------------------
[info] 
[info] --- maven-resources-plugin:2.5:resources (default-resources) @ test ---
[debug] execute contextualize
[warning] using platform encoding (gbk actually) to copy filtered resources, i.e. build is platform dependent!
[info] copying 0 resource
[info] 
[info] --- maven-compiler-plugin:2.3.2:compile (default-compile) @ test ---
[info] nothing to compile - all classes are up to date
[info] 
[info] --- maven-resources-plugin:2.5:testresources (default-testresources) @ test ---
[debug] execute contextualize
[warning] using platform encoding (gbk actually) to copy filtered resources, i.e. build is platform dependent!
[info] copying 0 resource
[info] 
[info] --- maven-compiler-plugin:2.3.2:testcompile (default-testcompile) @ test ---
[info] nothing to compile - all classes are up to date
[info] 
[info] --- maven-surefire-plugin:2.10:test (default-test) @ test ---
[info] surefire report directory: d:\workspace\test\target\surefire-reports

-------------------------------------------------------
 t e s t s
-------------------------------------------------------
running com.testrun
test a method 
test b method 
tests run: 2, failures: 0, errors: 0, skipped: 0, time elapsed: 0.071 sec

results :

tests run: 2, failures: 0, errors: 0, skipped: 0

[info] ------------------------------------------------------------------------
[info] build success
[info] ------------------------------------------------------------------------
[info] total time: 1.847s
[info] finished at: tue sep 11 14:20:59 cst 2012
[info] final memory: 3m/6m
[info] ------------------------------------------------------------------------
ok,一个基本的maven项目已经构建完成。我们还可以将现存的java项目利用myclipse方便的转换成maven project,此部分内容我们在下一节里讨论。

posted on 2012-09-11 14:25 々上善若水々 阅读(67383) 评论(9)  编辑  收藏 所属分类: maven

# re: 使用myeclipse构建maven项目  回复     

看你写的挺好的 ,但是为什么没有图片呀???求图关注中
2013-02-25 20:35 |

# re: 使用myeclipse构建maven项目  回复     

up主,你的图片挂了。求补
教程不错=.=
2013-03-21 09:48 |

# re: 使用myeclipse构建maven项目  回复     

@mr.zhan9
已修复
2013-03-26 17:26 | 々上善若水々

# re: 使用myeclipse构建maven项目  回复     

myeclipse的版本?
2013-09-17 19:38 |

# re: 使用myeclipse构建maven项目  回复     

不错,写的很好。
2013-12-11 09:32 |

# re: 使用myeclipse构建maven项目[未登录]  回复     

2015-04-18 14:15 |

# re: 使用myeclipse构建maven项目[未登录]  回复     

用nexus代理maven的中央仓库,setting.xml的配置文件修改内容如下:

这里的setting.xml 必须这样吗? 可以默认的吧
2015-10-13 10:40 |

# re: 使用myeclipse构建maven项目  回复     

nexus需要安装吗?
2016-02-26 11:50 |

# re: 使用myeclipse构建maven项目  回复     


nexus


central

true
true




central

true
true





这一块去掉了貌似也没什么问题
2016-08-29 15:08 |

只有注册用户后才能发表评论。


网站导航:
              
 
网站地图