nexus 3.x maven倉庫jarコマンドラインアップロード
4650 ワード
nexus 3.x maven倉庫jarコマンドラインアップロードローカルmavenインストールディレクトリ、例えばC:Program FilesJetBrainsIntelliJ IDEA 2017.3.5\plugins\maven\lib\maven3\bin; このディレクトリの下にpomを入れる.xmlファイル、ファイルの内容は以下の通りです:
3.mavenインストールディレクトリのconfig/settingを変更する.xml、新規
4.コマンドラインウィンドウを開き、次のコマンドを入力します.
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0modelVersion>
<groupId>com.yszdgroupId>
<artifactId>yszd-testartifactId>
<version>2018.06.25version>
<packaging>jarpackaging>
<distributionManagement>
<repository>
<id>nexusid>
<name>3rdPartyname>
<url>http://127.0.0.1:8081/repository/3rdParty/url>
repository>
distributionManagement>
<build>
<defaultGoal>compiledefaultGoal>
build>
project>
3.mavenインストールディレクトリのconfig/settingを変更する.xml、新規
<server>
<id>nexusid>
<username>adminusername>
<password>admin123password>
server>
4.コマンドラインウィンドウを開き、次のコマンドを入力します.
./mvn deploy:deploy-file -DgroupId="com.yszd" -DartifactId=yszd-test -Dversion="2018.06.25" -Dpackaging=jar -Dfile=D:\yszd-test.jar -Durl=http://127.0.0.1:8081/repository/3rdParty/ -DrepositoryId=nexus