当前位置:网站首页>【atlas】atlas 编译报错整理(全)
【atlas】atlas 编译报错整理(全)
2022-07-28 16:23:00 【kiraraLou】
前言
最近在编译 apache altas 1.1版本。在编译过程中遇到很多报错,这里整理并记录一下。
问题一:
org.restlet.jee 包找不到
问题原因
Maven主仓库中找不到包的解决办法(如org.restlet.jee not found)
解决方案:
进入报错的工程 vim test-tools/pom.xml
在pom文件最后添加如下内容
<repositories>
<repository>
<id>maven-restlet</id>
<name>Restlet repository</name>
<url>https://maven.restlet.talend.com</url>
</repository>
</repositories>
xml 内容来源: https://restlet.talend.com/downloads/current/
问题二:
cant download je-7.4.5.jar with maven [ com.sleepycat:je:jar:7.4.5 ]
解决方案:
对以下几个pom 文件添加如下内容:
webapp/pom.xmlgraphdb/graphdb-impls/pom.xmlgraphdb/janus/pom.xml
<repositories>
<repository>
<id>oracleReleases</id>
<name>Oracle Released Java Packages</name>
<url>https://download.oracle.com/maven</url>
<layout>default</layout>
</repository>
</repositories>
问题三:
报错内容
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-remote-resources-plugin:1.5:process (default) on project storm-bridge-shim: Error resolving project artifact: Could not transfer artifact ring-cors:ring-cors:pom:0.1.5 from/to typesafe (http://repo.typesafe.com/typesafe/releases/): transfer failed for http://repo.typesafe.com/typesafe/releases/ring-cors/ring-cors/0.1.5/ring-cors-0.1.5.pom for project ring-cors:ring-cors:jar:0.1.5: Connect to repo.typesafe.com:80 [repo.typesafe.com/34.231.6.143, repo.typesafe.com/54.81.173.17, repo.typesafe.com/34.199.146.42] failed: Connection refused (Connection refused) -> [Help 1]
解决方案
对以下几个pom 文件添加如下内容:
addons/storm-bridge/pom.xmladdons/storm-bridge-shim/pom.xml
<repositories>
<repository>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
<id>clojars</id>
<url>https://clojars.org/repo/</url>
</repository>
</repositories>
问题四
报错信息
[INFO] ------------------< org.apache.atlas:atlas-testtools >------------------
[INFO] Building Apache Atlas Test Utility Tools 1.1.0 [3/37]
[INFO] --------------------------------[ jar ]---------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Summary:
[INFO]
[INFO] Apache Atlas Server Build Tools 1.0 ................ SUCCESS [ 0.431 s]
[INFO] apache-atlas 1.1.0 ................................. SUCCESS [ 1.152 s]
[INFO] Apache Atlas Test Utility Tools 1.1.0 .............. FAILURE [ 0.117 s]
[INFO] Apache Atlas Integration 1.1.0 ..................... SKIPPED
[INFO] Apache Atlas Common 1.1.0 .......................... SKIPPED
[INFO] Apache Atlas Client 1.1.0 .......................... SKIPPED
[INFO] atlas-client-common 1.1.0 .......................... SKIPPED
[INFO] atlas-client-v1 1.1.0 .............................. SKIPPED
[INFO] Apache Atlas Server API 1.1.0 ...................... SKIPPED
[INFO] Apache Atlas Notification 1.1.0 .................... SKIPPED
[INFO] atlas-client-v2 1.1.0 .............................. SKIPPED
[INFO] Apache Atlas Graph Database Projects 1.1.0 ......... SKIPPED
[INFO] Apache Atlas Graph Database API 1.1.0 .............. SKIPPED
[INFO] Graph Database Common Code 1.1.0 ................... SKIPPED
[INFO] Apache Atlas JanusGraph DB Impl 1.1.0 .............. SKIPPED
[INFO] Apache Atlas Graph Database Implementation Dependencies 1.1.0 SKIPPED
[INFO] Shaded version of Apache hbase client 1.1.0 ........ SKIPPED
[INFO] Shaded version of Apache hbase server 1.1.0 ........ SKIPPED
[INFO] Apache Atlas Authorization 1.1.0 ................... SKIPPED
[INFO] Apache Atlas Repository 1.1.0 ...................... SKIPPED
[INFO] Apache Atlas UI 1.1.0 .............................. SKIPPED
[INFO] Apache Atlas Web Application 1.1.0 ................. SKIPPED
[INFO] Apache Atlas Documentation 1.1.0 ................... SKIPPED
[INFO] Apache Atlas FileSystem Model 1.1.0 ................ SKIPPED
[INFO] Apache Atlas Plugin Classloader 1.1.0 .............. SKIPPED
[INFO] Apache Atlas Hive Bridge Shim 1.1.0 ................ SKIPPED
[INFO] Apache Atlas Hive Bridge 1.1.0 ..................... SKIPPED
[INFO] Apache Atlas Falcon Bridge Shim 1.1.0 .............. SKIPPED
[INFO] Apache Atlas Falcon Bridge 1.1.0 ................... SKIPPED
[INFO] Apache Atlas Sqoop Bridge Shim 1.1.0 ............... SKIPPED
[INFO] Apache Atlas Sqoop Bridge 1.1.0 .................... SKIPPED
[INFO] Apache Atlas Storm Bridge Shim 1.1.0 ............... SKIPPED
[INFO] Apache Atlas Storm Bridge 1.1.0 .................... SKIPPED
[INFO] Apache Atlas Hbase Bridge Shim 1.1.0 ............... SKIPPED
[INFO] Apache Atlas Hbase Bridge 1.1.0 .................... SKIPPED
[INFO] Apache Atlas Kafka Bridge 1.1.0 .................... SKIPPED
[INFO] Apache Atlas Distribution 1.1.0 .................... SKIPPED
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 2.323 s
[INFO] Finished at: 2022-02-17T15:24:45+05:30
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal on project atlas-testtools: Could not resolve dependencies for project org.apache.atlas:atlas-testtools:jar:1.1.0: Failed to collect dependencies at org.apache.solr:solr-test-framework:jar:7.0.0 -> org.restlet.jee:org.restlet:jar:2.3.0: Failed to read artifact descriptor for org.restlet.jee:org.restlet:jar:2.3.0: Could not transfer artifact org.restlet.jee:org.restlet:pom:2.3.0 from/to maven-default-http-blocker (http://0.0.0.0/): Blocked mirror for repositories: [maven-restlet (http://maven.restlet.org, default, releases+snapshots), central (http://repo1.maven.org/maven2, default, releases), hortonworks.repo (http://repo.hortonworks.com/content/repositories/releases, default, releases), typesafe (http://repo.typesafe.com/typesafe/releases/, default, releases+snapshots), apache.snapshots (http://repository.apache.org/snapshots, default, snapshots)] -> [Help 1]

边栏推荐
- Verilog 每日一题 (VL5 信号发生器)
- Goweb开发之Beego框架实战:第三节 程序执行流程分析
- Codeforces round 768 (Div. 2) e.paint the middle (greedy / interval relationship processing)
- Unity shader global fog effect
- Round 1A 2022 - Code jam 2022 c.weightlifting (interval DP)
- Atcoder regular contest 133 d.range XOR (digital dp+ classification discussion)
- Verilog 每日一题(VL8 使用generate…for语句简化代码)
- The 2021 ICPC ASIA Taipei Regional programming contest L. leadfoot (combinatorics /2-adic assignment function +kummer theorem)
- Ugui learning notes (I) rendering level
- 《Kubernetes》你需要掌握的 Service 和 Ingress
猜你喜欢

wpf命令按钮透明样式

Games101-assignment05 ray tracing - rays intersect triangles

Unity3d shader achieves ablation effect

Net framework

Goweb开发之Beego框架实战:第四节 数据库配置及连接

Verilog 每日一题 (VL5 信号发生器)

Goweb开发之Beego框架实战:第五节 项目搭建及注册用户

Microservice Architecture - service registry and service gateway (6.8) (Reprint)

Visual Studio 2012/2015发布Web应用连同.cs源码一起发布
Read excel xlsx format file in unity
随机推荐
Goweb开发之Iris框架实战:项目总结与回顾
Verilog 每日一题 (VL28 加减计数器)
Ugui learning notes (III) summary of the use of each control
Unity3d simple implementation of water surface shader
Verilog 每日一题(VL6 数据串转并电路)
Reasoning Over Semantic-Level Graph for Fact Checking
Goweb开发之Beego框架实战:第二节 项目初始化配置
Algorithm learning: leetcode interview question 09. implement queue with two stacks
GEAR: Graph-based Evidence Aggregating and Reasoning for Fact Verification
Round 1A 2022 - Code jam 2022 c.weightlifting (interval DP)
List of supplementary questions
Goweb开发之Beego框架实战:第三节 程序执行流程分析
Valarray Library Learning
Codeworks round 801 (Div. 2) and epic Institute of technology round D. tree queries (tree DP)
利用SQL Server代理作业对数据库进行定时还原
Global mobile communication base station market in 2019: Ericsson, Huawei and Nokia ranked in the top three
kubernetes service 原理解析
Ugui learning notes (I) rendering level
Easypoi --- excel file export
Unity shader depth of field effect