当前位置:网站首页>[atlas] atlas compilation error sorting (all)
[atlas] atlas compilation error sorting (all)
2022-07-28 17:28:00 【kiraraLou】
Preface
Recently compiling apache altas 1.1 edition . Many errors are reported during compilation , Organize and record here .
Question 1 :
org.restlet.jee The bag can't be found.
Question why
Maven The solution of the package cannot be found in the main warehouse ( Such as org.restlet.jee not found)
Solution :
Enter the error reporting project vim test-tools/pom.xml
stay pom At the end of the document, add the following
<repositories>
<repository>
<id>maven-restlet</id>
<name>Restlet repository</name>
<url>https://maven.restlet.talend.com</url>
</repository>
</repositories>
xml Content sources : https://restlet.talend.com/downloads/current/
Question two :
cant download je-7.4.5.jar with maven [ com.sleepycat:je:jar:7.4.5 ]
Solution :
For the following pom Add the following to the file :
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>
Question 3 :
Wrong content
[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]
Solution
For the following pom Add the following to the file :
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>
Question 4
Error message
[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 daily question (vl29 single port RAM)
- QR code generation of wechat applet with parameters
- Verilog daily question (vl24 multi bit MUX synchronizer cross time domain output)
- 微服务架构-服务注册中心和服务网关(6.8) (转载)
- WPF command button transparent style
- Verilog daily question (vl14 vending machine 1 -- FSM common question types)
- List of supplementary questions
- 在android开发过程中遇到.sqlite文件处理
- Verilog 每日一题(VL6 数据串转并电路)
猜你喜欢

Verilog daily question (vl14 vending machine 1 -- FSM common question types)

net框架

The practice of beego framework in goweb development: Section I Introduction to beego framework

22年多校第三场(F的证明

Use of influxdb2

Net framework

wpf命令按钮透明样式

Verilog 每日一题(VL29 单端口RAM)

Verilog 每日一题 (VL24 多bit MUX同步器 跨时域输出)

部署LAMP平台---Linux,Apache,MySQL,PHP的编译安装
随机推荐
Shell脚本之AWK
批量下载文件
Andthen of function interface
Verilog daily question (vl8 uses generate... For statement to simplify code)
火了 2 年的服务网格究竟给微服务带来了什么?(转载)
高速电路中电容的选型和应用——详解
MySQL detailed learning tutorial (recommended Collection)
高速电路设计实践——概述
Codeforces round 770 (Div. 2) F. Fibonacci additions (construction + difference)
Verilog daily question (simple implementation of VL30 RAM)
How do we do full link grayscale on the database?
Microservice Architecture - service registry and service gateway (6.8) (Reprint)
valarray数值库学习
Verilog 每日一题(VL2 异步复位的串联T触发器--牛客网)
Visual studio 2012/2015 releases web applications together with.Cs source code
堡垒机的作用
Application system log structure of elastic stack
Verilog daily question (vl6 data series to parallel circuit)
Introduction to vscade interface
Net framework