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

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

#安装 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