Skip to content

Instantly share code, notes, and snippets.

@nibocn
Last active August 29, 2015 14:15
Show Gist options
  • Save nibocn/9d256196736c8edc60e5 to your computer and use it in GitHub Desktop.
Save nibocn/9d256196736c8edc60e5 to your computer and use it in GitHub Desktop.
maven 安装本地jar包到本地仓库或远程仓库
  • 安装到本地仓库

mvn install:install-file -DgroupId=com.baidu.push -DartifactId=push -Dversion=1.1.2 -Dpackaging=jar -Dfile=push-1.1.2.jar

  • 安装到远程仓库

mvn deploy:deploy-file -DgroupId=com.baidu.push -DartifactId=push -Dversion=1.1.2 -Dpackaging=jar -Dfile=push-1.1.2.jar -Durl=[url] -DrepositoryId=[id]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment