当前位置: 首页 > ai >正文

如何安装ojdbc6-12.1.0.1与je-5.0.58的mvn构建依赖jar包?

如何安装ojdbc6-12.1.0.1与je-5.0.58的mvn构建依赖jar包?

1. 安装ojdbc6-12.1.0.1的mvn构建依赖jar包

Failed to read artifact descriptor for com.oracle:ojdbc6:jar:12.1.0.1-atlassian-hosted: The following artifacts could not be resolved: com.oracle:ojdbc6:pom:12.1.0.1-atlassian-hosted (absent): Could not transfer artifact com.oracle:ojdbc6:pom:12.1.0.1-atlassian-hosted from/to SPRING-LIBS-snapshot (https://repo.spring.io/libs-milestone): status code: 401, reason phrase: (401)解决方案

# 链接1,下载ojdbc6-12.1.0.1-atlassian-hosted.jar
wget https://maven.artifacts.atlassian.com/com/oracle/ojdbc6/12.1.0.1-atlassian-hosted/ojdbc6-12.1.0.1-atlassian-hosted.jar# 链接2,链接1访问异常,可以基于下载jar包
wget https://github.com/hcc391/jar/blob/main/ojdbc6-12.1.0.1-atlassian-hosted.jar# 安装ojdbc6-12.1.0.1-atlassian-hosted.jar到mvn本地仓库
mvn install:install-file -Dfile=ojdbc6-12.1.0.1-atlassian-hosted.jar -DgroupId=com.oracle -DartifactId=ojdbc6 -Dversion=12.1.0.1-atlassian-hosted -Dpackaging=jar

2. 安装je-5.0.58的mvn构建依赖jar包

Failed to collect dependencies at com.sleepycat:je:jar:5.0.58: Failed to read artifact descriptor for com.sleepycat:je:jar:5.0.58: The following artifacts could not be resolved: com.sleepycat:je:pom:5.0.58 (absent): Could not transfer artifact com.sleepycat:je:pom:5.0.58 from/to SPRING-LIBS-snapshot (https://repo.spring.io/libs-milestone): status code: 401, reason phrase: (401) -> [Help 1]解决方案

wget https://github.com/hcc391/jar/blob/main/je-5.0.58.jarmvn install:install-file -Dfile=je-5.0.58.jar -DgroupId=com.sleepycat -DartifactId=je -Dversion=5.0.58 -Dpackaging=jar
http://www.xdnf.cn/news/10469.html

相关文章:

  • 问题 D: 学 DP 导致的
  • Camera相机人脸识别系列专题分析之十:人脸特征检测FFD算法之低功耗libvega_face.so人脸识别检测流程详解
  • 超标量处理器设计6-指令解码
  • SPA-RL:通过Stepwise Progress Attribution训练LLM智能体
  • 第十一讲 | 多态
  • ∑ 1/n 调和级数 是 发散的
  • 解决 Win11 睡眠后黑屏无法唤醒的问题
  • C语言 — 文件
  • 初学者如何微调大模型?从0到1详解
  • 串口通信技术及USART应用研究
  • IDEA PyCharm 等工具如何同时打开多个窗口
  • Redis笔记
  • 英一真题阅读单词笔记 06年
  • 系统性学习C语言-第十三讲-深入理解指针(3)
  • 使用langchain实现五种分块策略:语义分块、父文档分块、递归分块、特殊格式、固定长度分块
  • 计算机网络技术
  • 【PostgreSQL 05】PostgreSQL扩展开发实战:从自定义函数到插件开发的完整指南
  • C# 类和继承(构造函数的执行)
  • 数据结构测试模拟题(3)
  • 【STM32开发板】接口部分
  • 象棋里的卧槽马、侧面虎、金钩马的方位与解析
  • 13.三种低功耗和RTC实时时钟
  • CppCon 2014 学习: C++ on Mars
  • Go中MAP底层原理分析
  • Python打卡第42天
  • 建筑兔零基础python自学记录102|Beautiful Soup库(1)-15
  • JDBC连不上mysql:Unable to load authentication plugin ‘caching_sha2_password‘.
  • 在线音乐平台测试报告
  • Go Channel 详解
  • 怎样在PyQt5中使用信号与槽机制?