Teradata tdgssconfig.jar 和 terajdbc4.jar,传输失败 500 内部服务器错误

Teradata tdgssconfig.jar and terajdbc4.jar, Transfer failed 500 Internal Server Error

请问有关 Teradata 驱动程序的小问题。

Maven 中提供了 Teradata 驱动程序,link 此处:

https://mvnrepository.com/artifact/com.teradata.jdbc.com.teradata.jdbc/terajdbc4/16.20.00.12

https://mvnrepository.com/artifact/com.teradata.jdbc/tdgssconfig/16.0.0.28

并且 maven 明确指出存储库:

Note: this artifact is located at EBIPublic repository (https://www.ebi.ac.uk/intact/maven/nexus/content/repositories/public/)

因此,在我的 Maven POM 中,我尝试这样做:

    <dependencies>
        <dependency>
            <groupId>com.teradata.jdbc</groupId>
            <artifactId>tdgssconfig</artifactId>
            <version>16.0.0.28</version>
        </dependency>
        <dependency>
            <groupId>com.teradata.jdbc.com.teradata.jdbc</groupId>
            <artifactId>terajdbc4</artifactId>
            <version>16.20.00.12</version>
        </dependency>
   <repositories>
        <repository>
            <id>teradata</id>
            <name>teradata Snapshots</name>
            <url>https://www.ebi.ac.uk/intact/maven/nexus/content/repositories/public/</url>
            <snapshots>
                <enabled>true</enabled>
            </snapshots>
        </repository>
    </repositories>
    <pluginRepositories>
        <pluginRepository>
            <id>teradata</id>
            <name>teradata Snapshots</name>
            <url>https://www.ebi.ac.uk/intact/maven/nexus/content/repositories/public/</url>
            <snapshots>
                <enabled>true</enabled>
            </snapshots>
        </pluginRepository>
    </pluginRepositories>

但是,在下载依赖项时:

Could not transfer artifact com.teradata.jdbc:tdgssconfig:pom:16.0.0.28 from/to teradata (https://www.ebi.ac.uk/intact/maven/nexus/content/repositories/public/): Transfer failed for https://www.ebi.ac.uk/intact/maven/nexus/content/repositories/public/com/teradata/jdbc/tdgssconfig/16.0.0.28/tdgssconfig-16.0.0.28.pom 500 Internal Server Error

我很清楚可以在这里下载 jar,例如: https://downloads.teradata.com/download/connectivity/jdbc-driver

但我想知道问题出在哪里,从 Maven 获取这些 jar 的可能解决方法是什么?

谢谢

500 问题意味着您尝试访问的网站通常有问题。如果您无法从 Web 浏览器访问 https://www.ebi.ac.uk/intact/maven/nexus/content/repositories/public/,则与该存储库无关。