
maven
小主早安
这个作者很懒,什么都没留下…
展开
-
将第三方Jar安装到maven私服
mvn deploy:deploy-file -Dfile=E:\ojdbc14.jar -DgroupId=com.oracle -DartifactId=ojdbc14 -Dversion=10.2.0.4.0 -Dpackaging=jar -Durl=http://localhost:8081/nexus/content/repositories/thirdparty/ -DrepositoryId=thirdparty注意:E:\ojdbc14.jar 这个文件我是提前下载好了,放在了E.原创 2021-02-12 16:06:51 · 129 阅读 · 0 评论 -
用Maven命令,把我们提前下载好的Jar包安装到本地的仓库。
mvn install:install-file -Dfile=E:\ojdbc14.jar -DgroupId=com.oracle -DartifactId=ojdbc14 -Dversion=10.2.0.4.0 -Dpackaging=jar用Maven命令,把我们提前下载好的Jar包安装到本地的仓库。我的位置是在C:\Users\Administrator.m2\repository...原创 2021-02-12 15:57:37 · 216 阅读 · 0 评论 -
nexus搭建即入门使用001
执行mvn deploy 命令进行安装mvn deploy:deploy-file -Dfile=E:\ojdbc14.jar -DgroupId=com.oracle -DartifactId=ojdbc14 -Dversion=10.2.0.4.0 -Dpackaging=jar -Durl=http://localhost:8081/nexus/content/repositories/thirdparty/ -DrepositoryId=thirdparty原创 2021-02-12 12:56:01 · 160 阅读 · 0 评论 -
Loading class `com.mysql.jdbc.Driver‘. This is deprecated.
Loading class `com.mysql.jdbc.Driver'. This is deprecated. The new driver class is `com.mysql.cj.jdbc.Driver'. The driver is automatically registered via the SPI and manual loading of the driver class is generally unnecessary.二月 11, 2021 8:30:30 下午 com.al原创 2021-02-11 20:55:57 · 238 阅读 · 0 评论 -
新建Maven项目
不让IDE去下载MAVEN仓库里面的插件,使用本地的插件,我们使用这个archetypecatalog原创 2021-02-11 13:48:48 · 72 阅读 · 0 评论