WeBankFinTech / Qualitis

Qualitis is a one-stop data quality management platform that supports quality verification, notification, and management for various datasource. It is used to solve various data quality problems caused by data processing. https://github.com/WeBankFinTech/Qualitis
Apache License 2.0
693 stars 303 forks source link

构建时报找不到jar包的错误 #159

Closed s19870620i closed 2 months ago

s19870620i commented 1 year ago

Describe the bug 构建时报找不到jar包的错误

To Reproduce Steps to reproduce the behavior: 1.run:“gradle clean distZip”

  1. see error: FAILURE: Build failed with an exception.

    Deprecated Gradle features were used in this build, making it incompatible with Gradle 5.0. See https://docs.gradle.org/4.6/userguide/command_line_interface.html#sec:command_line_warnings

    BUILD FAILED in 10s 55 actionable tasks: 46 executed, 9 up-to-date

yiyufxst commented 1 year ago

https://github.com/WeBankFinTech/Qualitis/releases release-0.9.1 上有解决方案,下载forgerock.zip,在本地.m2\repository\org解压,解决代码仓库拉取不到的问题。 参考:https://github.com/WeBankFinTech/Qualitis/issues/132

zhjdotxmsme commented 1 year ago

在build.gradle加入gluu的仓库就可以拉取成功了:

repositories {
  mavenLocal()
  maven {
    url "https://ox.gluu.org/maven/"
  }
  maven {
    url "http://maven.aliyun.com/nexus/content/groups/public/"
  }
}