zoukankan      html  css  js  c++  java
  • spring boot pom demo

    <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.0</modelVersion>
    
      <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.1.4.RELEASE</version>
      </parent>
    
      <groupId>com</groupId>
      <artifactId>example</artifactId>
      <version>0.0.1</version>
    
      <dependencies>
        <dependency>
          <groupId>org.springframework.boot</groupId>
          <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
    
        <dependency>
          <groupId>org.projectlombok</groupId>
          <artifactId>lombok</artifactId>
        </dependency>
      </dependencies>
    
    
      <build>
        <plugins>
          <plugin>
            <artifactId>maven-compiler-plugin</artifactId>
          </plugin>
    
          <plugin>
            <artifactId>maven-jar-plugin</artifactId>
          </plugin>
    
          <plugin>
            <artifactId>maven-shade-plugin</artifactId>
          </plugin>
    
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-eclipse-plugin</artifactId>
            <version>2.10</version>
            <configuration>
              <downloadSources>true</downloadSources>
              <downloadJavadocs>true</downloadJavadocs>
            </configuration>
          </plugin>
        </plugins>
      </build>
    
    
      <repositories>
        <repository>
          <id>rtr_repo</id>
          <name>RTR Maven Repository</name>
          <layout>default</layout>
          <url>http://xxx</url>
        </repository>
      </repositories>
    
    
      <pluginRepositories>
        <pluginRepository>
          <id>2_test</id>
          <name>Test Official Repo</name>
          <layout>default</layout>
          <url>https://test</url>
        </pluginRepository>
      </pluginRepositories>
    
    
    </project>
  • 相关阅读:
    js中'1'到1的转换
    js类型判断
    docker安装mysql5.7
    HMM隐马尔可夫模型学习
    [python] wgs84转为gcj02坐标
    python经纬度转enu坐标
    Centos7开放及查看端口
    设计模式笔记
    npm 全面介绍
    Yarn 安装与使用详细介绍
  • 原文地址:https://www.cnblogs.com/tonggc1668/p/11731453.html
Copyright © 2011-2022 走看看