idea项目打包到Maven私服

目的:打包 meite-shop-service-api-weixin 项目

如果你的项目也是下面这种结构:

idea项目打包到Maven私服

一、 找到maven 的conf文件下的setting.xml 文件 在servers里加上server

<server>
	<id>yt</id>
    <!-- username password   是你maven私服登录的用户名和密码 -->
	<username>yt</username>
	<password>123456</password>
  </server>

 

二、找到pom文件:

<?xml version="1.0" encoding="UTF-8"?>

<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">
    <parent>
        <artifactId>meite-shop-service-api</artifactId>
        <groupId>com.aexit</groupId>
        <version>1.0-SNAPSHOT</version>
    </parent>
    <!--注意限定版本一定为RELEASE,因为上传的对应仓库的存储类型为RELEASE -->
    <!--指定仓库地址 -->
    <distributionManagement>
        <repository>
            <!--此名称要和.m2/settings.xml中设置的ID一致  url为私服地址-->
            <id>yt</id>
            <url>http://192.168.114.132:8081/repository/yu_release/</url>
        </repository>
    </distributionManagement>
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.aexit</groupId>
    <artifactId>meite-shop-service-api-weixin</artifactId>
    <!-- 必须加上这个  RELEASE表示 正式版本 -->
    <version>1.0-RELEASE</version>

    <name>meite-shop-service-api-weixin Maven Webapp</name>
    <!-- FIXME change it to the project's website -->
    <url>http://www.example.com</url>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <maven.compiler.source>1.7</maven.compiler.source>
        <maven.compiler.target>1.7</maven.compiler.target>
    </properties>

    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.11</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
        <!-- 必须加上才能打包 -->
    <build>
        <plugins>
            <!--发布代码Jar插件 -->
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-deploy-plugin</artifactId>
                <version>2.7</version>
            </plugin>
            <!--发布源码插件 -->
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-source-plugin</artifactId>
                <version>2.2.1</version>
                <executions>
                    <execution>
                        <phase>package</phase>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>

</project>

三、打开Terminal,进入你要打包的项目下,执行mvn deploy 如图:

idea项目打包到Maven私服

四:如果出现如下,表示成功;

idea项目打包到Maven私服 

 注释: 如果 报400  错误,在pom文件里  把 SNAPSHOT 改为 RELEASE

上一篇:ios 自己定义导航栏和切割线


下一篇:vue 注意事项