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.
  • 相关阅读:
    微服务治理istio
    基于Kubernetes构建Jenkins微服务发布平台
    gitlab
    微服务链路监控系统-Pinpoint
    Ceph Dashboard Promethus+Grafana监控
    kubernetes使用ceph存储
    ceph日常运维管理
    ceph-mimic版
    kubernetes集群网络
    Helm v3
  • 原文地址:https://www.cnblogs.com/yushizhang/p/13029199.html
Copyright © 2011-2022 走看看