zoukankan      html  css  js  c++  java
  • maven应用

    parent增加

    <distributionManagement>
    <repository>
    <id>maven-release</id>
    <name>Nexus Release Repository</name>
    <url>http://******:8081/repository/maven-snapshots/</url> <!--镜像路径-->
    </repository>

    <snapshotRepository>
    <id>maven-snapshots</id>
    <name>Nexus Release Repository</name>
    <url>http://*******:8081/repository/maven-snapshots/</url>
    </snapshotRepository>
    </distributionManagement>

    增加插件

    <build>
        <plugins>
    <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-compiler-plugin</artifactId>
    <configuration>
    <compilerVersion>1.8</compilerVersion>
    <source>1.8</source>
    <target>1.8</target>
    </configuration>
    <version>3.6.0</version>
    </plugin>
    <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-source-plugin</artifactId>
    <version>2.1</version>
    <configuration>
    <attach>true</attach>
    </configuration>
    <executions>
    <execution>
    <phase>compile</phase>
    <goals>
    <goal>jar</goal>
    </goals>
    </execution>
    </executions>
    </plugin>
    </plugins>
    </build>
    子项目增加
     <build>
    <plugins>
    <plugin>
    <artifactId>maven-compiler-plugin</artifactId>
    <configuration>
    <source>1.8</source>
    <target>1.8</target>
    <encoding>UTF-8</encoding>
    </configuration>
    </plugin>
    <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-jar-plugin</artifactId>
    <version>2.6</version>
    </plugin>
    </plugins>
    </build>

     
    talk is cheap. show me the code.
  • 相关阅读:
    NGINX高并发配置
    一致性哈希算法——PHP实现代码
    TCP三次握手详解
    一致性哈希算法——转载来自张洋
    ngx_http_upstream_keepalive
    高情商人的十一种表现
    Nginx中的upstream轮询机制介绍
    主从读写分离----mysql-proxy0.8.5安装与配置
    分布式事务XA
    微信小程序API
  • 原文地址:https://www.cnblogs.com/yushizhang/p/13029199.html
Copyright © 2011-2022 走看看