maven.exasol.com artifactory链接不工作



使用exasol存储库失败,链接https://maven.exasol.com/artifactory/exasol-releases重定向到exasol.com新主页

无法获取我需要的依赖项:

<repository>  
<id>exasol-maven-repo</id>  
<name>Exasol Repository</name>  
<url>https://maven.exasol.com/artifactory/exasol-releases</url>;  
</repository>

尝试使用curl打开链接,但一无所获。

curl - 0 https://maven.exasol.com/artifactory/exasol-releases/org/scala-lang/scala-compiler/2.12.0/scala-compiler-2.12.0.pom

输入图片描述

maven.exasol.com已停产。如果您想获得例如jdbc驱动程序,现在可以使用maven central。参见JDBC文档。

<dependencies>
    <dependency>
        <groupId>com.exasol</groupId>
        <artifactId>exasol-jdbc</artifactId>
        <version>7.1.0</version>
    </dependency>
</dependencies>

看起来你对一些scala包感兴趣。import-export-udf-common-scala现在也可以在maven central上使用:https://central.sonatype.dev/artifact/com.exasol/import-export-udf-common-scala_2.13/1.0.0

最新更新