从源代码构建activeMQ

使用git下载代码:

git clone https://git-wip-us.apache.org/repos/asf/activemq.git

通过命令行的方式构建

mvn -Dtest=false -DfailIfNoTests=false clean install

中间可能会报以下一些jar包无法从中央仓库下载的错误,手动从以下链接下载jar包

http://www.mvnrepository.com/artifact/xalan/xalan/2.7.2

http://mvnrepository.com/artifact/org.apache.derby/derby/10.11.1.1

然后手工把这些jar包安装到本地maven仓库即可

mvn install:install-file -DgroupId=xalan -DartifactId=xalan -Dversion=2.7.2 -Dpackaging=jar -Dfile=xalan-2.7.2.jar

mvn install:install-file -DgroupId=org.apache.derby -DartifactId=derby -Dversion=10.11.1.1 -Dpackaging=jar -Dfile=derby-10.11.1.1.jar


通过eclipse构建

使用命令行生成eclipse工程文件

mvn eclipse:eclipse

然后从eclipse导入工程

构建完成后,进入assembly目录下的target目录,其中的两个压缩文件就是了(以tar结尾的是linux下的文件,以zip结尾的是windows下的文件),解压即可。

你可能感兴趣的:(activemq,从源代码构建)