我无法使用 maven 下载 Oracle RIDC 客户端依赖项。我在 pom.xml 中添加了以下代码
<dependency>
<groupId>com.oracle.ucm</groupId>
<artifactId>ridc</artifactId>
<version>11.1.1</version>
</dependency>
我的问题是我需要添加任何插件还是无法使用 maven 下载ridc依赖项
我无法使用 maven 下载 Oracle RIDC 客户端依赖项。我在 pom.xml 中添加了以下代码
<dependency>
<groupId>com.oracle.ucm</groupId>
<artifactId>ridc</artifactId>
<version>11.1.1</version>
</dependency>
我的问题是我需要添加任何插件还是无法使用 maven 下载ridc依赖项
Oracle 依赖项通常在公共 maven 存储库中不可用。为此,您可以做一些事情。
mvn install:install-file -Dfile=<path>
-DgroupId=<group> -DartifactId=<id> -Dversion=<version> -Dpackaging=jar
从我的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>