1

我无法使用 maven 下载 Oracle RIDC 客户端依赖项。我在 pom.xml 中添加了以下代码

<dependency>
<groupId>com.oracle.ucm</groupId>
<artifactId>ridc</artifactId>
<version>11.1.1</version>
</dependency>

我的问题是我需要添加任何插件还是无法使用 maven 下载ridc依赖项

4

2 回答 2

2

Oracle 依赖项通常在公共 maven 存储库中不可用。为此,您可以做一些事情。

  • 在您的存储库中本地安装该项目。使用这个mvn install:install-file -Dfile=<path> -DgroupId=<group> -DartifactId=<id> -Dversion=<version> -Dpackaging=jar
  • 如果你有像 nexus、artifactory 这样的本地 repo,你可以在那里安装它。
  • 或者,您可以将该依赖项标记为已提供,并确保您的运行时已将其安装到位。
于 2017-12-19T07:21:08.947 回答
2

从我的Maven 仓库

<?xml version="1.0" encoding="UTF-8" ?>
<settings xsi:schemaLocation='http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd'
          xmlns='http://maven.apache.org/SETTINGS/1.0.0' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'>

    <profiles>
        <profile>
            <repositories>
                <repository>
                    <snapshots>
                        <enabled>false</enabled>
                    </snapshots>
                    <id>bintray-jhult-maven</id>
                    <name>bintray</name>
                    <url>https://dl.bintray.com/jhult/maven</url>
                </repository>
            </repositories>
            <pluginRepositories>
                <pluginRepository>
                    <snapshots>
                        <enabled>false</enabled>
                    </snapshots>
                    <id>bintray-jhult-maven</id>
                    <name>bintray-plugins</name>
                    <url>https://dl.bintray.com/jhult/maven</url>
                </pluginRepository>
            </pluginRepositories>
            <id>bintray</id>
        </profile>
    </profiles>
    <activeProfiles>
        <activeProfile>bintray</activeProfile>
    </activeProfiles>
</settings>
于 2017-12-21T14:49:12.250 回答