diversity.pom 比眉伴天荒 2023-08-17 16:27 86阅读 0赞 <?xml version="1.0" encoding="UTF-8"?> <project xmlns="[http://maven.apache.org/POM/4.0.0][http_maven.apache.org_POM_4.0.0]" xmlns:xsi="[http://www.w3.org/2001/XMLSchema-instance][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][http_maven.apache.org_POM_4.0.0 http_maven.apache.org_xsd_maven-4.0.0.xsd]"> <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支持 --> <!-- [https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-web][https_mvnrepository.com_artifact_org.springframework.boot_spring-boot-starter-web] \--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <!-- tomcat支持 --> <!-- [https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-tomcat][https_mvnrepository.com_artifact_org.springframework.boot_spring-boot-starter-tomcat] \--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-tomcat</artifactId> <!--<scope>provided</scope>--> </dependency> <!-- [https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-configuration-processor][https_mvnrepository.com_artifact_org.springframework.boot_spring-boot-configuration-processor] \--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-configuration-processor</artifactId> <optional>true</optional> </dependency> <!-- 系统监控 --> <!-- [https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-actuator][https_mvnrepository.com_artifact_org.springframework.boot_spring-boot-starter-actuator] \--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency> <!-- 测试支持 --> <!-- [https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-test][https_mvnrepository.com_artifact_org.springframework.boot_spring-boot-starter-test] \--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> <!-- AOP支持 --> <!-- [https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-aop][https_mvnrepository.com_artifact_org.springframework.boot_spring-boot-starter-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支持 --> <!-- [https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-data-mongodb][https_mvnrepository.com_artifact_org.springframework.boot_spring-boot-starter-data-mongodb] \--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-mongodb</artifactId> </dependency> <!-- mybatis支持 --> <!-- [https://mvnrepository.com/artifact/org.mybatis.spring.boot/mybatis-spring-boot-starter][https_mvnrepository.com_artifact_org.mybatis.spring.boot_mybatis-spring-boot-starter] \--> <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依赖 --> <!-- [https://mvnrepository.com/artifact/com.alibaba.boot/dubbo-spring-boot-starter][https_mvnrepository.com_artifact_com.alibaba.boot_dubbo-spring-boot-starter] \--> <!-- <dependency> --> <!-- <groupId>com.alibaba.boot</groupId> --> <!-- <artifactId>dubbo-spring-boot-starter</artifactId> --> <!-- <version>0.2.0</version> --> <!-- </dependency> --> <!-- [https://mvnrepository.com/artifact/com.alibaba/dubbo][https_mvnrepository.com_artifact_com.alibaba_dubbo] \--> <dependency> <groupId>com.alibaba</groupId> <artifactId>dubbo</artifactId> <version>2.6.5</version> </dependency> <!-- [https://mvnrepository.com/artifact/org.apache.zookeeper/zookeeper][https_mvnrepository.com_artifact_org.apache.zookeeper_zookeeper] \--> <dependency> <groupId>org.apache.zookeeper</groupId> <artifactId>zookeeper</artifactId> <version>3.4.13</version> </dependency> <!-- [https://mvnrepository.com/artifact/org.apache.curator/curator-framework][https_mvnrepository.com_artifact_org.apache.curator_curator-framework] \--> <dependency> <groupId>org.apache.curator</groupId> <artifactId>curator-framework</artifactId> <version>4.1.0</version> </dependency> <!-- swagger api文档 --> <!-- [https://mvnrepository.com/artifact/io.springfox/springfox-swagger2][https_mvnrepository.com_artifact_io.springfox_springfox-swagger2] \--> <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> <!-- [https://mvnrepository.com/artifact/com.github.xiaoymin/swagger-bootstrap-ui][https_mvnrepository.com_artifact_com.github.xiaoymin_swagger-bootstrap-ui] \--> <dependency> <groupId>com.github.xiaoymin</groupId> <artifactId>swagger-bootstrap-ui</artifactId> <version>1.9.6</version> </dependency> <!-- [https://mvnrepository.com/artifact/commons-io/commons-io][https_mvnrepository.com_artifact_commons-io_commons-io] \--> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.6</version> </dependency> <!-- [https://mvnrepository.com/artifact/com.jayway.jsonpath/json-path][https_mvnrepository.com_artifact_com.jayway.jsonpath_json-path] \--> <dependency> <groupId>com.jayway.jsonpath</groupId> <artifactId>json-path</artifactId> </dependency> <!-- [https://mvnrepository.com/artifact/eu.bitwalker/UserAgentUtils][https_mvnrepository.com_artifact_eu.bitwalker_UserAgentUtils] \--> <dependency> <groupId>eu.bitwalker</groupId> <artifactId>UserAgentUtils</artifactId> <version>1.21</version> </dependency> <!-- [https://mvnrepository.com/artifact/com.alibaba/fastjson][https_mvnrepository.com_artifact_com.alibaba_fastjson] \--> <dependency> <groupId>com.alibaba</groupId> <artifactId>fastjson</artifactId> <version>1.2.60</version> </dependency> <!-- [https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient][https_mvnrepository.com_artifact_org.apache.httpcomponents_httpclient] \--> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> </dependency> <!-- [https://mvnrepository.com/artifact/org.apache.httpcomponents/httpmime][https_mvnrepository.com_artifact_org.apache.httpcomponents_httpmime] \--> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpmime</artifactId> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient-win</artifactId> </dependency> <!-- [https://mvnrepository.com/artifact/org.postgresql/postgresql][https_mvnrepository.com_artifact_org.postgresql_postgresql] \--> <dependency> <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> </dependency> <!-- [https://mvnrepository.com/artifact/org.springframework.retry/spring-retry][https_mvnrepository.com_artifact_org.springframework.retry_spring-retry] \--> <dependency> <groupId>org.springframework.retry</groupId> <artifactId>spring-retry</artifactId> </dependency> <!-- [https://mvnrepository.com/artifact/joda-time/joda-time][https_mvnrepository.com_artifact_joda-time_joda-time] \--> <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 [http_maven.apache.org_POM_4.0.0]: http://maven.apache.org/POM/4.0.0 [http_www.w3.org_2001_XMLSchema-instance]: http://www.w3.org/2001/XMLSchema-instance [http_maven.apache.org_POM_4.0.0 http_maven.apache.org_xsd_maven-4.0.0.xsd]: http://maven.apache.org/POM/4.0.0%20http:/maven.apache.org/xsd/maven-4.0.0.xsd [https_mvnrepository.com_artifact_org.springframework.boot_spring-boot-starter-web]: https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-web [https_mvnrepository.com_artifact_org.springframework.boot_spring-boot-starter-tomcat]: https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-tomcat [https_mvnrepository.com_artifact_org.springframework.boot_spring-boot-configuration-processor]: https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-configuration-processor [https_mvnrepository.com_artifact_org.springframework.boot_spring-boot-starter-actuator]: https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-actuator [https_mvnrepository.com_artifact_org.springframework.boot_spring-boot-starter-test]: https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-test [https_mvnrepository.com_artifact_org.springframework.boot_spring-boot-starter-aop]: https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-aop [https_mvnrepository.com_artifact_org.springframework.boot_spring-boot-starter-data-mongodb]: https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-data-mongodb [https_mvnrepository.com_artifact_org.mybatis.spring.boot_mybatis-spring-boot-starter]: https://mvnrepository.com/artifact/org.mybatis.spring.boot/mybatis-spring-boot-starter [https_mvnrepository.com_artifact_com.alibaba.boot_dubbo-spring-boot-starter]: https://mvnrepository.com/artifact/com.alibaba.boot/dubbo-spring-boot-starter [https_mvnrepository.com_artifact_com.alibaba_dubbo]: https://mvnrepository.com/artifact/com.alibaba/dubbo [https_mvnrepository.com_artifact_org.apache.zookeeper_zookeeper]: https://mvnrepository.com/artifact/org.apache.zookeeper/zookeeper [https_mvnrepository.com_artifact_org.apache.curator_curator-framework]: https://mvnrepository.com/artifact/org.apache.curator/curator-framework [https_mvnrepository.com_artifact_io.springfox_springfox-swagger2]: https://mvnrepository.com/artifact/io.springfox/springfox-swagger2 [https_mvnrepository.com_artifact_com.github.xiaoymin_swagger-bootstrap-ui]: https://mvnrepository.com/artifact/com.github.xiaoymin/swagger-bootstrap-ui [https_mvnrepository.com_artifact_commons-io_commons-io]: https://mvnrepository.com/artifact/commons-io/commons-io [https_mvnrepository.com_artifact_com.jayway.jsonpath_json-path]: https://mvnrepository.com/artifact/com.jayway.jsonpath/json-path [https_mvnrepository.com_artifact_eu.bitwalker_UserAgentUtils]: https://mvnrepository.com/artifact/eu.bitwalker/UserAgentUtils [https_mvnrepository.com_artifact_com.alibaba_fastjson]: https://mvnrepository.com/artifact/com.alibaba/fastjson [https_mvnrepository.com_artifact_org.apache.httpcomponents_httpclient]: https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient [https_mvnrepository.com_artifact_org.apache.httpcomponents_httpmime]: https://mvnrepository.com/artifact/org.apache.httpcomponents/httpmime [https_mvnrepository.com_artifact_org.postgresql_postgresql]: https://mvnrepository.com/artifact/org.postgresql/postgresql [https_mvnrepository.com_artifact_org.springframework.retry_spring-retry]: https://mvnrepository.com/artifact/org.springframework.retry/spring-retry [https_mvnrepository.com_artifact_joda-time_joda-time]: https://mvnrepository.com/artifact/joda-time/joda-time
还没有评论,来说两句吧...