如何将Oracle ons.jar添加到maven项目中
所有,
我们敬爱的 DBA 提出了一个请求,要求我们为 Oracle JDBC 连接添加 hibernate onsconfiguration。现在,为了使其正常工作,我们需要 Oracle 提供类路径中的ons.jar。
我们对 oracle jdbc 库的当前节是
<dependency>
<groupId>com.oracle</groupId>
<artifactId>ojdbc14</artifactId>
<version>10.2.0.2.0</version>
<scope>compile</scope>
</dependency>
我试图环顾四周是否可以将ons.jar 添加到maven 依赖项列表中,但不能。任何人都可以提供有关如何添加此内容的任何意见吗?
我浏览了ibiblio maven存储库,它只有 ojdbc14 ,什么也没有对于ons.jar。
干杯!
All,
Our beloved DBA's have come up with a request for us to add hibernate onsconfiguration for our Oracle JDBC connection. Now, for this to work, we need to have Oracle provided ons.jar in the classpath.
The current stanza we have for oracle jdbc library is
<dependency>
<groupId>com.oracle</groupId>
<artifactId>ojdbc14</artifactId>
<version>10.2.0.2.0</version>
<scope>compile</scope>
</dependency>
I tried to look around if we can add ons.jar to maven dependency list, but could not. Could anyone please provide any inputs on how to add this?
I browsed through the ibiblio maven repository, it only has ojdbc14 and nothing for ons.jar.
Cheers!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于 ons.jar 在您的存储库中不可用,因此您必须手动下载它,然后将其添加到您的存储库中。
您可以将其添加到本地存储库:
如果您有远程存储库,则可以使用以下命令部署到它:
更多信息位于:Maven - 将 3rd 方 JAR 部署到远程存储库的指南
将文件安装到存储库中后,您可以将依赖项添加到项目的 pom.xml 中:
Since ons.jar is not available in your repos, you have to download it manually and then add it to your repos.
You can add it to your local repository:
If you have a remote repository, you can deploy to it with the following command:
More at: Maven - Guide to deploying 3rd party JARs to remote repository
With the files installed in your repo, you can add the dependency to your project's pom.xml: