参考:https://atlas.apache.org/InstallationSteps.html

https://blog.csdn.net/lingbo229/article/details/81161760

https://blog.csdn.net/jeffiny/article/details/82736832

1. 下载

wget https://www.apache.org/dyn/closer.cgi/atlas/1.1.0/apache-atlas-1.1.0-sources.tar.gz

2. 解压

tar xvfz apache-atlas-1.1.0-sources.tar.gz

3. 进入目录

cd apache-atlas-sources-1.1.0/

4. 查找并修改pom.xml

<plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>findbugs-maven-plugin</artifactId> <version>3.0.5</version> </plugin>

5. 构建编译

export MAVEN_OPTS="-Xms2g -Xmx2g" mvn clean -DskipTests install

成功

[INFO] Reactor Summary:
[INFO]
[INFO] Apache Atlas Server Build Tools 1.0 ................ SUCCESS [  5.021 s]
[INFO] apache-atlas 1.1.0 ................................. SUCCESS [ 17.376 s]
[INFO] Apache Atlas Test Utility Tools 1.1.0 .............. SUCCESS [ 59.551 s]
[INFO] Apache Atlas Integration 1.1.0 ..................... SUCCESS [01:37 min]
[INFO] Apache Atlas Common 1.1.0 .......................... SUCCESS [ 40.321 s]
[INFO] Apache Atlas Client 1.1.0 .......................... SUCCESS [  4.272 s]
[INFO] atlas-client-common 1.1.0 .......................... SUCCESS [01:06 min]
[INFO] atlas-client-v1 1.1.0 .............................. SUCCESS [ 35.525 s]
[INFO] Apache Atlas Server API 1.1.0 ...................... SUCCESS [ 21.817 s]
[INFO] Apache Atlas Notification 1.1.0 .................... SUCCESS [01:20 min]
[INFO] atlas-client-v2 1.1.0 .............................. SUCCESS [ 29.458 s]
[INFO] Apache Atlas Graph Database Projects 1.1.0 ......... SUCCESS [  2.438 s]
[INFO] Apache Atlas Graph Database API 1.1.0 .............. SUCCESS [ 38.442 s]
[INFO] Graph Database Common Code 1.1.0 ................... SUCCESS [ 27.705 s]
[INFO] Apache Atlas JanusGraph DB Impl 1.1.0 .............. SUCCESS [01:35 min]
[INFO] Apache Atlas Graph Database Implementation Dependencies 1.1.0 SUCCESS [  8.523 s]
[INFO] Shaded version of Apache hbase client 1.1.0 ........ SUCCESS [ 26.142 s]
[INFO] Shaded version of Apache hbase server 1.1.0 ........ SUCCESS [01:25 min]
[INFO] Apache Atlas Authorization 1.1.0 ................... SUCCESS [01:01 min]
[INFO] Apache Atlas Repository 1.1.0 ...................... SUCCESS [03:39 min]
[INFO] Apache Atlas UI 1.1.0 .............................. SUCCESS [05:09 min]
[INFO] Apache Atlas Web Application 1.1.0 ................. SUCCESS [03:24 min]
[INFO] Apache Atlas Documentation 1.1.0 ................... SUCCESS [ 22.205 s]
[INFO] Apache Atlas FileSystem Model 1.1.0 ................ SUCCESS [  9.707 s]
[INFO] Apache Atlas Plugin Classloader 1.1.0 .............. SUCCESS [ 22.935 s]
[INFO] Apache Atlas Hive Bridge Shim 1.1.0 ................ SUCCESS [ 20.930 s]
[INFO] Apache Atlas Hive Bridge 1.1.0 ..................... SUCCESS [ 46.877 s]
[INFO] Apache Atlas Falcon Bridge Shim 1.1.0 .............. SUCCESS [ 26.779 s]
[INFO] Apache Atlas Falcon Bridge 1.1.0 ................... SUCCESS [ 28.161 s]
[INFO] Apache Atlas Sqoop Bridge Shim 1.1.0 ............... SUCCESS [ 12.209 s]
[INFO] Apache Atlas Sqoop Bridge 1.1.0 .................... SUCCESS [ 26.829 s]
[INFO] Apache Atlas Storm Bridge Shim 1.1.0 ............... SUCCESS [ 17.462 s]
[INFO] Apache Atlas Storm Bridge 1.1.0 .................... SUCCESS [ 32.357 s]
[INFO] Apache Atlas Hbase Bridge Shim 1.1.0 ............... SUCCESS [ 29.377 s]
[INFO] Apache Atlas Hbase Bridge 1.1.0 .................... SUCCESS [ 52.236 s]
[INFO] Apache Atlas Kafka Bridge 1.1.0 .................... SUCCESS [ 45.091 s]
[INFO] Apache Atlas Distribution 1.1.0 .................... SUCCESS [ 19.957 s]
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time:  32:41 min
[INFO] Finished at: 2019-02-12T12:16:13+08:00
[INFO] ------------------------------------------------------------------------

问题:

[ERROR] Failed to execute goal org.codehaus.mojo:findbugs-maven-plugin:3.0.1:findbugs (findbugs) on project apache-atlas: Unable to parse configuration of mojo org.codehaus.mojo:findbugs-maven-plugin:3.0.1:findbugs for parameter pluginArtifacts: Cannot assign configuration entry 'pluginArtifacts' with value '${plugin.artifacts}' of type java.util.Collections.UnmodifiableRandomAccessList to property of type java.util.ArrayList -> [Help 1]

编辑pom.xml  查找3.0.1,修改为3.0.5

  <plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>3.0.</version>
</

apache atlas源码编译打包 centos的更多相关文章

  1. apache ranger源码编译

    官方文档 http://ranger.apache.org/quick_start_guide.html Quick Start Guide Build Process 1. Check out th ...

  2. kakfa源码编译打包

    kakfa项目编译: cd /home/zhaofuxin/workspace/kafka-0.8.2.1-src ./gradlew releaseTarGz 会出现如下异常: zhaofuxin@ ...

  3. linux应用之apache的源码安装(centos)

    第一部分:前期准备 需要下载的东西 下载 Apache 源码包  下载地址: http://httpd.apache.org/download.cgi                          ...

  4. Hadoop2.7.2源码编译过程

    目录 准备工作 jar包安装 源码编译 准备工作 CentOS可以联网,验证:ping www.baidu.com 是畅通的 jar 包准备(hadoop 源码.JDK8.maven.ant .pro ...

  5. centos 6.5源码编译安装subversion 1.8.10

    一.简介 CentOS 6.5的yum源可以安装的SVN客户端版本太低了,1.6.11,所以需要升级到1.8.10,而官网有没有找到1.8.10的安装包,只能选择源码编译安装. 二.安装步骤 参考官网 ...

  6. apache kafka & CDH kafka源码编译

    Apache kafka编译 前言 github网站kafka项目的README.md有关于kafka源码编译的说明 github地址:https://github.com/apache/kafka ...

  7. 基于cdh5.10.x hadoop版本的apache源码编译安装spark

    参考文档:http://spark.apache.org/docs/1.6.0/building-spark.html spark安装需要选择源码编译方式进行安装部署,cdh5.10.0提供默认的二进 ...

  8. Apache Spark源码走读之9 -- Spark源码编译

    欢迎转载,转载请注明出处,徽沪一郎. 概要 本来源码编译没有什么可说的,对于java项目来说,只要会点maven或ant的简单命令,依葫芦画瓢,一下子就ok了.但到了Spark上面,事情似乎不这么简单 ...

  9. CentOS 7上源码编译安装和配置LNMP Web+phpMyAdmin服务器环境

    CentOS 7上源码编译安装和配置LNMP Web+phpMyAdmin服务器环境 什么是LNMP? LNMP(别名LEMP)是指由Linux, Nginx, MySQL/MariaDB, PHP/ ...

随机推荐

  1. LeetCode--689_Maximum_Sum_of_3_NonOverlapping_Subarrays

    原题链接:点击这里 一道很水很水的背包问题? 大概算不上背包吧QAQ 自己的dp 真的是太差劲啦,以后每天一道LeetCode 备战秋招! package leetcode; public class ...

  2. mysql 修改表结构、表字段注释语句

    虽然现在有各种各样的工具可以直接对表结构进行修改,但是我还是喜欢使用语句进行修改.以下语句是对表增加字段.给字段加注释的语句 alter table orders add column isupdyq ...

  3. Tomcat系列(11)——Tomcat 部署web应用的4种方法

    核心内容 1.在Tomcat中有四种部署Web应用的方式,分别是: (1)利用Tomcat自动部署(项目直接拷贝OR WAR包拷贝 到webapps下) (2)利用控制台进行部署(tomcat的man ...

  4. java 多线程 synchronized与lock的通信机制等问题,结合相应实例说明

    1. 利用多线程实现如下需求: 写两个线程,一个线程打印1~52,另一个线程打印A~Z,打印顺序是12A34B...5152Z: 2. 使用synchronized 实现 public class T ...

  5. 微信小程序 开发文档

    官方开发文档: 小程序公众平台 小程序开发者指南 小程序开发者文档 学习资源: 微信:官方入门教程 微信:WeUI 是一套同微信原生视觉体验一致的基础样式库 微信:微信小程序示例 视频: 学堂在线:学 ...

  6. 桥接模式-Bridge(Java实现)

    桥接模式-Bridge 桥梁模式的用意是"将抽象化(Abstraction)与实现化(Implementation)脱耦, 将"类的功能层次结构" 与 "类的实 ...

  7. 转---Google Python编程风格指南

    为帮助读者能够将代码准确格式化,我们提供了针对 Vim的配置文件 .对于Emacs用户,保持默认设置即可. 背景 Python 是 Google主要的脚本语言.这本风格指南主要包含的是针对python ...

  8. centos 7.2 下 nginx 1.14.1 安装部署

    Nginx1.14.1安装部署 1.环境: 所有源码在跳板机kx的/web/soft下 2.安装依赖: [root@bogon src]# yum install -y libxml2 openssl ...

  9. LOJ #6539 奇妙数论题

    不想咕太久..就随便找个题更一下 LOJ#6539 题意 求题面里那个式子 题解 有一个常用的小式子 $$\sum_{x|a,x|b}\varphi(x)=\gcd(a,b)$$ 用这个式子直接对题面 ...

  10. Ansible-----循环

    with_dict迭代字典项 使用"with_dict"可以迭代字典项.迭代时,使用"item.key"表示字典的key,"item.value&qu ...