You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
admin-client-temperature/maven_install.sh

27 lines
787 B
Bash

7 months ago
#安装 oracle 执行这个命令
mvn install:install-file -Dfile=/Users/admin/ojdbc6.jar -DgroupId=com.oracle -DartifactId=ojdbc6 -Dversion=11.2.0.1.0 -Dpackaging=jar
mvn install:install-file -Dfile=C:\Users\Administrator\ojdbc6.jar -DgroupId=com.oracle -DartifactId=ojdbc6 -Dversion=11.2.0.1.0 -Dpackaging=jar
#git推送失败,文件太多过或文件过大fatal: the remote end hung up unexpectedly
git config http.postBuffer 524288000
#取消每次git拉取代码时都需要输入帐号密码
#进入git项目目录输入
git config --global credential.helper store
#在开发工具中拉取或提交一次代码输入一次用户名和密码会自动保存git帐号
#密码,以后就不需要再输入了
#maven查看依赖树命令
mvn dependency:tree