您好,欢迎来到五一七教育网。
搜索
您的当前位置:首页diversity.pom

diversity.pom

来源:五一七教育网

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="" xmlns:xsi=""
   xsi:schemaLocation="">
   <modelVersion>4.0.0</modelVersion>
  
   <groupId>com.paic</groupId>
   <artifactId>diversity</artifactId>
   <version>1.0.0-SNAPSHOT</version>
   <packaging>jar</packaging>
  
   <name>peimc-diversity</name>
   <description>Happy for diversity</description>
  
   <!-- 环境配置 -->
   <profiles>
      <profile>
         <id>dev</id>
         <activation>
            <activeByDefault>true</activeByDefault>
         </activation>
         <properties>
            <environment>dev</environment>
         </properties>
         <build>
            <finalName>peimc-diversity</finalName>
         </build>
      </profile>
      <profile>
         <id>stg</id>
         <properties>
            <environment>stg</environment>
         </properties>
         <build>
            <finalName>peimc-diversity</finalName>
         </build>
      </profile>
      <profile>
         <id>prd</id>
         <properties>
            <environment>prd</environment>
         </properties>
         <build>
            <finalName>peimc-diversity</finalName>
         </build>
      </profile>
      <profile>
         <id>caas</id>
         <properties>
            <environment>caas</environment>
         </properties>
         <build>
            <finalName>diversity</finalName>
         </build>
      </profile>
      <profile>
         <id>padis</id>
         <properties>
            <environment>padis</environment>
         </properties>
         <build>
            <finalName>peimc-diversity</finalName>
         </build>
      </profile>
      <profile>
         <id>gm</id>
         <properties>
            <environment>gm</environment>
         </properties>
         <build>
            <finalName>peimc-diversity</finalName>
         </build>
      </profile>
   </profiles>

   <!-- 系统默认属性配置 -->
   <properties>
      <!-- 文件拷贝时的编码 -->
      <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
      <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
      <!-- 编译时的编码 -->
      <maven.compiler.encoding>UTF-8</maven.compiler.encoding>
      <!-- 使用jdk1.8版本 -->
      <java.version>1.8</java.version>
      <cs.dir>${project.basedir}</cs.dir>
      <!-- Spring Boot和Spring Cloud的版本需对应 : boot 2.1.x  对应 cloud Greenwich -->
      <spring-cloud.version>Greenwich.RELEASE</spring-cloud.version>
   </properties>

   <parent>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-parent</artifactId>
      <version>2.1.8.RELEASE</version>
      <relativePath/> <!-- lookup parent from repository -->
   </parent>
  
   <dependencies>
      <!-- springmvc支持 -->
      <!-- -->
      <dependency>
         <groupId>org.springframework.boot</groupId>
         <artifactId>spring-boot-starter-web</artifactId>
      </dependency>
     
      <!-- tomcat支持 -->
      <!-- -->
      <dependency>
          <groupId>org.springframework.boot</groupId>
          <artifactId>spring-boot-starter-tomcat</artifactId>
         <!--<scope>provided</scope>-->
      </dependency>

      <!-- -->
      <dependency>
          <groupId>org.springframework.boot</groupId>
          <artifactId>spring-boot-configuration-processor</artifactId>
         <optional>true</optional>
      </dependency>
     
      <!-- 系统监控 -->
      <!-- -->
      <dependency>
          <groupId>org.springframework.boot</groupId>
          <artifactId>spring-boot-starter-actuator</artifactId>
      </dependency>

      <!-- 测试支持 -->
      <!-- -->
      <dependency>
         <groupId>org.springframework.boot</groupId>
         <artifactId>spring-boot-starter-test</artifactId>
         <scope>test</scope>
      </dependency>

      <!-- AOP支持 -->
      <!-- -->
      <dependency>
         <groupId>org.springframework.boot</groupId>
         <artifactId>spring-boot-starter-aop</artifactId>
      </dependency>

      <!-- hibernate validation支持 -->
      <dependency>
         <groupId>org.springframework.boot</groupId>
         <artifactId>spring-boot-starter-validation</artifactId>
      </dependency>
     
      <!-- redis支持 -->
      <dependency>
         <groupId>org.springframework.boot</groupId>
         <artifactId>spring-boot-starter-data-redis</artifactId>
      </dependency>
     
      <dependency>
          <groupId>org.apache.commons</groupId>
          <artifactId>commons-pool2</artifactId>
      </dependency>
     
      <!-- mogodb支持 -->
      <!-- -->
      <dependency>
         <groupId>org.springframework.boot</groupId>
         <artifactId>spring-boot-starter-data-mongodb</artifactId>
      </dependency>

      <!-- mybatis支持 -->
      <!-- -->
      <dependency>
         <groupId>org.mybatis.spring.boot</groupId>
         <artifactId>mybatis-spring-boot-starter</artifactId>
         <version>1.3.2</version>
      </dependency>
     
      <!-- 本地jar依赖 -->
      <dependency>
         <groupId>com.oracle</groupId>
         <artifactId>ojdbc6</artifactId>
         <version>1.0</version>
         <scope>system</scope>
         <systemPath>${cs.dir}/lib/ojdbc6.jar</systemPath>
      </dependency>
     
      <!-- dubbo依赖 -->
      <!-- -->
<!--      <dependency> -->
<!--          <groupId>com.alibaba.boot</groupId> -->
<!--          <artifactId>dubbo-spring-boot-starter</artifactId> -->
<!--          <version>0.2.0</version> -->
<!--      </dependency> -->

      <!-- -->
      <dependency>
          <groupId>com.alibaba</groupId>
          <artifactId>dubbo</artifactId>
          <version>2.6.5</version>
      </dependency>

        <!-- -->
      <dependency>
          <groupId>org.apache.zookeeper</groupId>
          <artifactId>zookeeper</artifactId>
          <version>3.4.13</version>
      </dependency>

        <!-- -->
      <dependency>
          <groupId>org.apache.curator</groupId>
          <artifactId>curator-framework</artifactId>
          <version>4.1.0</version>
      </dependency>
     
      <!-- swagger api文档 -->
      <!-- -->
      <dependency>
         <groupId>io.springfox</groupId>
         <artifactId>springfox-swagger2</artifactId>
         <version>2.9.2</version>
      </dependency>
      <dependency>
         <groupId>io.springfox</groupId>
         <artifactId>springfox-swagger-ui</artifactId>
         <version>2.9.2</version>
      </dependency>
      <!-- -->
      <dependency>
          <groupId>com.github.xiaoymin</groupId>
          <artifactId>swagger-bootstrap-ui</artifactId>
          <version>1.9.6</version>
      </dependency>
     
      <!-- -->
      <dependency>
         <groupId>commons-io</groupId>
         <artifactId>commons-io</artifactId>
         <version>2.6</version>
      </dependency>
     
      <!-- -->
      <dependency>
         <groupId>com.jayway.jsonpath</groupId>
         <artifactId>json-path</artifactId>
      </dependency>

      <!-- -->
      <dependency>
         <groupId>eu.bitwalker</groupId>
         <artifactId>UserAgentUtils</artifactId>
         <version>1.21</version>
      </dependency>
     
      <!-- -->
      <dependency>
          <groupId>com.alibaba</groupId>
          <artifactId>fastjson</artifactId>
          <version>1.2.60</version>
      </dependency>
     
      <!-- -->
      <dependency>
          <groupId>org.apache.httpcomponents</groupId>
          <artifactId>httpclient</artifactId>
      </dependency>
      <!-- -->
      <dependency>
          <groupId>org.apache.httpcomponents</groupId>
          <artifactId>httpmime</artifactId>
      </dependency>
      <dependency>
         <groupId>org.apache.httpcomponents</groupId>
         <artifactId>httpclient-win</artifactId>
      </dependency>
     
      
      <!-- -->
      <dependency>
          <groupId>org.postgresql</groupId>
          <artifactId>postgresql</artifactId>
      </dependency>

      <!-- -->
      <dependency>
         <groupId>org.springframework.retry</groupId>
         <artifactId>spring-retry</artifactId>
      </dependency>

      <!-- -->
      <dependency>
         <groupId>joda-time</groupId>
         <artifactId>joda-time</artifactId>
         <version>2.9.9</version>
      </dependency>
   </dependencies>

   <build>
      <plugins>
         <plugin>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-maven-plugin</artifactId>
            <configuration>
               <includeSystemScope>true</includeSystemScope>
            </configuration>
         </plugin>
      </plugins>
   </build>

</project>

转载于:https://www.cnblogs.com/xiaoyu666/p/11558104.html

因篇幅问题不能全部显示,请点此查看更多更全内容

Copyright © 2019- 517ttc.cn 版权所有 赣ICP备2024042791号-8

违法及侵权请联系:TEL:199 18 7713 E-MAIL:2724546146@qq.com

本站由北京市万商天勤律师事务所王兴未律师提供法律服务