我收到错误
“缺少工件 com.oracle:ojdbc14:jar:10.2.0.4”
当我输入命令时,在 pom.xml 中,
jpa 设置 --provider ECLIPSELINK --database ORACLE
我用谷歌搜索发现
“oracle jar 目前无法自动添加。我们必须手动配置它。”
我可以手动进行 maven 依赖相关的 jar 项目吗?如果是,如何?
我收到错误
“缺少工件 com.oracle:ojdbc14:jar:10.2.0.4”
当我输入命令时,在 pom.xml 中,
jpa 设置 --provider ECLIPSELINK --database ORACLE
我用谷歌搜索发现
“oracle jar 目前无法自动添加。我们必须手动配置它。”
我可以手动进行 maven 依赖相关的 jar 项目吗?如果是,如何?
在命令提示符下,使用 . 将驱动程序安装到 Maven 的本地存储库mvn install:install-file
。
> mvn install:install-file -Dfile=your_ojdbc.jar -DgroupId=com.oracle -DartifactId=oracle -Dversion=10.2.0.2.0 -Dpackaging=jar -DgeneratePom=true
现在您将依赖项添加到pom.xml
<dependency>
<groupId>com.oracle</groupId>
<artifactId>oracle</artifactId>
<version>10.2.0.2.0</version>
</dependency>