|  |  |  |  | <?xml version="1.0" encoding="UTF-8"?> | 
					
						
							|  |  |  |  | <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"> | 
					
						
							|  |  |  |  |     <parent> | 
					
						
							|  |  |  |  |         <artifactId>api</artifactId> | 
					
						
							|  |  |  |  |         <groupId>com.glxp</groupId> | 
					
						
							|  |  |  |  |         <version>0.0.1</version> | 
					
						
							|  |  |  |  |     </parent> | 
					
						
							|  |  |  |  |     <modelVersion>4.0.0</modelVersion> | 
					
						
							|  |  |  |  |     <packaging>war</packaging> | 
					
						
							|  |  |  |  |     <artifactId>api-admin</artifactId> | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |     <dependencies> | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         <!--引入公共模块,版本继承父级--> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>com.glxp</groupId> | 
					
						
							|  |  |  |  |             <artifactId>api-common</artifactId> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>org.apache.commons</groupId> | 
					
						
							|  |  |  |  |             <artifactId>commons-lang3</artifactId> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>org.springframework.boot</groupId> | 
					
						
							|  |  |  |  |             <artifactId>spring-boot-starter-web</artifactId> | 
					
						
							|  |  |  |  |             <exclusions> | 
					
						
							|  |  |  |  |                 <exclusion> | 
					
						
							|  |  |  |  |                     <groupId>org.springframework.boot</groupId> | 
					
						
							|  |  |  |  |                     <artifactId>spring-boot-starter-tomcat</artifactId> | 
					
						
							|  |  |  |  |                 </exclusion> | 
					
						
							|  |  |  |  |             </exclusions> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>javax.servlet</groupId> | 
					
						
							|  |  |  |  |             <artifactId>javax.servlet-api</artifactId> | 
					
						
							|  |  |  |  |             <version>3.1.0</version> | 
					
						
							|  |  |  |  |             <scope>provided</scope> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  |         <!--让配置文件有提示--> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>org.springframework.boot</groupId> | 
					
						
							|  |  |  |  |             <artifactId>spring-boot-configuration-processor</artifactId> | 
					
						
							|  |  |  |  |             <optional>true</optional> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         <!--AOP拦截--> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>org.springframework.boot</groupId> | 
					
						
							|  |  |  |  |             <artifactId>spring-boot-starter-aop</artifactId> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         <!--Redis--> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>org.springframework.boot</groupId> | 
					
						
							|  |  |  |  |             <artifactId>spring-boot-starter-data-redis</artifactId> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         <!--热启动--> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>org.springframework.boot</groupId> | 
					
						
							|  |  |  |  |             <artifactId>spring-boot-devtools</artifactId> | 
					
						
							|  |  |  |  |             <optional>true</optional> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         <!--数据库相关--> | 
					
						
							|  |  |  |  |         <!--MySQL--> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>org.springframework.boot</groupId> | 
					
						
							|  |  |  |  |             <artifactId>spring-boot-starter-jdbc</artifactId> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>mysql</groupId> | 
					
						
							|  |  |  |  |             <artifactId>mysql-connector-java</artifactId> | 
					
						
							|  |  |  |  |             <version>8.0.21</version> | 
					
						
							|  |  |  |  |             <scope>runtime</scope> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         <!--        <dependency>--> | 
					
						
							|  |  |  |  |         <!--            <groupId>com.oracle</groupId>--> | 
					
						
							|  |  |  |  |         <!--            <artifactId>ojdbc6</artifactId>--> | 
					
						
							|  |  |  |  |         <!--            <version>11.2.0.4</version>--> | 
					
						
							|  |  |  |  |         <!--            <scope>runtime</scope>--> | 
					
						
							|  |  |  |  |         <!--        </dependency>--> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>com.oracle</groupId> | 
					
						
							|  |  |  |  |             <artifactId>ojdbc14</artifactId> | 
					
						
							|  |  |  |  |             <version>10.2.0.4.0</version> | 
					
						
							|  |  |  |  |             <type>pom</type> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  |         <!--连接池--> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>com.alibaba</groupId> | 
					
						
							|  |  |  |  |             <artifactId>druid-spring-boot-starter</artifactId> | 
					
						
							|  |  |  |  |             <version>1.1.10</version> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  |         <!--mybatis --> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>org.mybatis.spring.boot</groupId> | 
					
						
							|  |  |  |  |             <artifactId>mybatis-spring-boot-starter</artifactId> | 
					
						
							|  |  |  |  |             <version>1.3.2</version> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>com.itfsw</groupId> | 
					
						
							|  |  |  |  |             <artifactId>mybatis-generator-plugin</artifactId> | 
					
						
							|  |  |  |  |             <version>1.3.8</version> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  |         <!--分页插件--> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>com.github.pagehelper</groupId> | 
					
						
							|  |  |  |  |             <artifactId>pagehelper</artifactId> | 
					
						
							|  |  |  |  |             <version>5.1.7</version> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         <!--自动生成 GET SET--> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>org.projectlombok</groupId> | 
					
						
							|  |  |  |  |             <artifactId>lombok</artifactId> | 
					
						
							|  |  |  |  |             <optional>true</optional> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         <!--JWT--> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>io.jsonwebtoken</groupId> | 
					
						
							|  |  |  |  |             <artifactId>jjwt</artifactId> | 
					
						
							|  |  |  |  |             <version>0.9.1</version> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         <!--Json 操作--> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>com.alibaba</groupId> | 
					
						
							|  |  |  |  |             <artifactId>fastjson</artifactId> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>org.springframework.boot</groupId> | 
					
						
							|  |  |  |  |             <artifactId>spring-boot-starter-test</artifactId> | 
					
						
							|  |  |  |  |             <scope>test</scope> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>org.springframework.boot</groupId> | 
					
						
							|  |  |  |  |             <artifactId>spring-boot-starter-tomcat</artifactId> | 
					
						
							|  |  |  |  |             <scope>provided</scope> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>javax.xml.bind</groupId> | 
					
						
							|  |  |  |  |             <artifactId>jaxb-api</artifactId> | 
					
						
							|  |  |  |  |             <version>2.3.0</version> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>com.fasterxml.jackson.core</groupId> | 
					
						
							|  |  |  |  |             <artifactId>jackson-databind</artifactId> | 
					
						
							|  |  |  |  |             <version>2.9.2</version> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>com.github.pagehelper</groupId> | 
					
						
							|  |  |  |  |             <artifactId>pagehelper-spring-boot-autoconfigure</artifactId> | 
					
						
							|  |  |  |  |             <version>1.2.5</version> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>org.springframework.boot</groupId> | 
					
						
							|  |  |  |  |             <artifactId>spring-boot-starter-websocket</artifactId> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         <!--解析excel--> | 
					
						
							|  |  |  |  |         <!--xls--> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>org.apache.poi</groupId> | 
					
						
							|  |  |  |  |             <artifactId>poi</artifactId> | 
					
						
							|  |  |  |  |             <version>4.0.0</version> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  |         <!--xlsx--> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>org.apache.poi</groupId> | 
					
						
							|  |  |  |  |             <artifactId>poi-ooxml</artifactId> | 
					
						
							|  |  |  |  |             <version>4.0.0</version> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         <!-- PDF打印 --> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>com.glxp</groupId> | 
					
						
							|  |  |  |  |             <artifactId>tochina</artifactId> | 
					
						
							|  |  |  |  |             <version>1.0</version> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>com.itextpdf</groupId> | 
					
						
							|  |  |  |  |             <artifactId>itextpdf</artifactId> | 
					
						
							|  |  |  |  |             <version>5.5.13.1</version> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>com.itextpdf</groupId> | 
					
						
							|  |  |  |  |             <artifactId>itext-asian</artifactId> | 
					
						
							|  |  |  |  |             <version>5.2.0</version> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         <!--Hutool是一个小而全的Java工具类库--> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>cn.hutool</groupId> | 
					
						
							|  |  |  |  |             <artifactId>hutool-all</artifactId> | 
					
						
							|  |  |  |  |             <version>5.7.9</version> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>com.belerweb</groupId> | 
					
						
							|  |  |  |  |             <artifactId>pinyin4j</artifactId> | 
					
						
							|  |  |  |  |             <version>2.5.0</version> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  |         <!-- 二维码工具 考虑到Hutool的非强制依赖性,因此zxing需要用户自行引入 --> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>com.google.zxing</groupId> | 
					
						
							|  |  |  |  |             <artifactId>core</artifactId> | 
					
						
							|  |  |  |  |             <version>3.3.3</version> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>com.google.zxing</groupId> | 
					
						
							|  |  |  |  |             <artifactId>javase</artifactId> | 
					
						
							|  |  |  |  |             <version>3.3.3</version> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>org.olap4j</groupId> | 
					
						
							|  |  |  |  |             <artifactId>olap4j</artifactId> | 
					
						
							|  |  |  |  |             <version>1.2.0</version> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         <!-- jasperreports-dependency-begin --> | 
					
						
							|  |  |  |  |         <!-- jasperreports--> | 
					
						
							|  |  |  |  |         <!-- https://mvnrepository.com/artifact/net.sf.barcode4j/barcode4j --> | 
					
						
							|  |  |  |  |         <!-- jasperreports相关 --> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>net.sf.barcode4j</groupId> | 
					
						
							|  |  |  |  |             <artifactId>barcode4j</artifactId> | 
					
						
							|  |  |  |  |             <version>2.1</version> | 
					
						
							|  |  |  |  |             <exclusions> | 
					
						
							|  |  |  |  |                 <exclusion> | 
					
						
							|  |  |  |  |                     <groupId>org.olap4je</groupId> | 
					
						
							|  |  |  |  |                     <artifactId>olap4j</artifactId> | 
					
						
							|  |  |  |  |                 </exclusion> | 
					
						
							|  |  |  |  |             </exclusions> | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>net.sf.jasperreports</groupId> | 
					
						
							|  |  |  |  |             <artifactId>jasperreports</artifactId> | 
					
						
							|  |  |  |  |             <version>6.5.1</version> | 
					
						
							|  |  |  |  |             <exclusions> | 
					
						
							|  |  |  |  |                 <exclusion> | 
					
						
							|  |  |  |  |                     <groupId>com.lowagie</groupId> | 
					
						
							|  |  |  |  |                     <artifactId>itext</artifactId> | 
					
						
							|  |  |  |  |                 </exclusion> | 
					
						
							|  |  |  |  |             </exclusions> | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>net.sf.jasperreports</groupId> | 
					
						
							|  |  |  |  |             <artifactId>jasperreports-fonts</artifactId> | 
					
						
							|  |  |  |  |             <version>6.0.0</version> | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>com.itextpdf</groupId> | 
					
						
							|  |  |  |  |             <artifactId>itext-pdfa</artifactId> | 
					
						
							|  |  |  |  |             <version>5.5.0</version> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>org.codehaus.groovy</groupId> | 
					
						
							|  |  |  |  |             <artifactId>groovy</artifactId> | 
					
						
							|  |  |  |  |             <version>3.0.7</version> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>cn.lesper</groupId> | 
					
						
							|  |  |  |  |             <artifactId>iTextAsian</artifactId> | 
					
						
							|  |  |  |  |             <version>3.0</version> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         <!-- https://mvnrepository.com/artifact/org.apache.xmlgraphics/batik-bridge --> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>org.apache.xmlgraphics</groupId> | 
					
						
							|  |  |  |  |             <artifactId>batik-bridge</artifactId> | 
					
						
							|  |  |  |  |             <version>1.11</version> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  |         <!-- https://mvnrepository.com/artifact/org.apache.xmlgraphics/batik-dom --> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>org.apache.xmlgraphics</groupId> | 
					
						
							|  |  |  |  |             <artifactId>batik-dom</artifactId> | 
					
						
							|  |  |  |  |             <version>1.11</version> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>org.eclipse.birt.runtime.3_7_1</groupId> | 
					
						
							|  |  |  |  |             <artifactId>com.lowagie.text</artifactId> | 
					
						
							|  |  |  |  |             <version>2.1.7</version> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  |         <dependency> | 
					
						
							|  |  |  |  |             <groupId>com.squareup.okhttp3</groupId> | 
					
						
							|  |  |  |  |             <artifactId>okhttp</artifactId> | 
					
						
							|  |  |  |  |             <version>3.10.0</version> | 
					
						
							|  |  |  |  |         </dependency> | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         <!-- jasperreports end--> | 
					
						
							|  |  |  |  |         <!-- jasperreports-dependency-end --> | 
					
						
							|  |  |  |  |     </dependencies> | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |     <build> | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         <finalName>UDI_WMS_MC</finalName> | 
					
						
							|  |  |  |  |         <plugins> | 
					
						
							|  |  |  |  |             <plugin> | 
					
						
							|  |  |  |  |                 <groupId>org.springframework.boot</groupId> | 
					
						
							|  |  |  |  |                 <artifactId>spring-boot-maven-plugin</artifactId> | 
					
						
							|  |  |  |  |                 <configuration> | 
					
						
							|  |  |  |  |                     <skip>true</skip> | 
					
						
							|  |  |  |  |                     <includeSystemScope>true</includeSystemScope> | 
					
						
							|  |  |  |  |                 </configuration> | 
					
						
							|  |  |  |  |             </plugin> | 
					
						
							|  |  |  |  |             <!-- 5、添加插件指定jdk --> | 
					
						
							|  |  |  |  |             <plugin> | 
					
						
							|  |  |  |  |                 <artifactId>maven-compiler-plugin</artifactId> | 
					
						
							|  |  |  |  |                 <configuration> | 
					
						
							|  |  |  |  |                     <source>11</source> | 
					
						
							|  |  |  |  |                     <target>11</target> | 
					
						
							|  |  |  |  |                     <!-- executable 可指定也可不用 --> | 
					
						
							|  |  |  |  |                     <!--<executable>C:\Program Files\Java\jdk1.8.0_191\bin\javac</executable>--> | 
					
						
							|  |  |  |  |                 </configuration> | 
					
						
							|  |  |  |  |             </plugin> | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |             <plugin> | 
					
						
							|  |  |  |  |                 <groupId>org.springframework.boot</groupId> | 
					
						
							|  |  |  |  |                 <artifactId>spring-boot-maven-plugin</artifactId> | 
					
						
							|  |  |  |  |                 <configuration> | 
					
						
							|  |  |  |  |                     <fork>true</fork><!-- 如果没有该项配置,肯呢个devtools不会起作用,即应用不会restart --> | 
					
						
							|  |  |  |  |                 </configuration> | 
					
						
							|  |  |  |  |             </plugin> | 
					
						
							|  |  |  |  |             <plugin> | 
					
						
							|  |  |  |  |                 <groupId>org.apache.maven.plugins</groupId> | 
					
						
							|  |  |  |  |                 <artifactId>maven-surefire-plugin</artifactId> | 
					
						
							|  |  |  |  |                 <configuration> | 
					
						
							|  |  |  |  |                     <skipTests>true</skipTests> | 
					
						
							|  |  |  |  |                 </configuration> | 
					
						
							|  |  |  |  |             </plugin> | 
					
						
							|  |  |  |  |         </plugins> | 
					
						
							|  |  |  |  |     </build> | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |     <profiles> | 
					
						
							|  |  |  |  |         <profile> | 
					
						
							|  |  |  |  |             <!--生产--> | 
					
						
							|  |  |  |  |             <id>pro</id> | 
					
						
							|  |  |  |  |             <properties> | 
					
						
							|  |  |  |  |                 <profiles.active>pro</profiles.active> | 
					
						
							|  |  |  |  |             </properties> | 
					
						
							|  |  |  |  |             <!--是否默认,默认打包开发环境配置--> | 
					
						
							|  |  |  |  |             <activation> | 
					
						
							|  |  |  |  |                 <activeByDefault>true</activeByDefault> | 
					
						
							|  |  |  |  |             </activation> | 
					
						
							|  |  |  |  |         </profile> | 
					
						
							|  |  |  |  |         <profile> | 
					
						
							|  |  |  |  |             <!--开发--> | 
					
						
							|  |  |  |  |             <id>dev</id> | 
					
						
							|  |  |  |  |             <properties> | 
					
						
							|  |  |  |  |                 <profiles.active>dev</profiles.active> | 
					
						
							|  |  |  |  |             </properties> | 
					
						
							|  |  |  |  |         </profile> | 
					
						
							|  |  |  |  |         <profile> | 
					
						
							|  |  |  |  |             <!--测试1--> | 
					
						
							|  |  |  |  |             <id>test1</id> | 
					
						
							|  |  |  |  |             <properties> | 
					
						
							|  |  |  |  |                 <profiles.active>test1</profiles.active> | 
					
						
							|  |  |  |  |             </properties> | 
					
						
							|  |  |  |  |         </profile> | 
					
						
							|  |  |  |  |         <profile> | 
					
						
							|  |  |  |  |             <!--测试2--> | 
					
						
							|  |  |  |  |             <id>test2</id> | 
					
						
							|  |  |  |  |             <properties> | 
					
						
							|  |  |  |  |                 <profiles.active>test2</profiles.active> | 
					
						
							|  |  |  |  |             </properties> | 
					
						
							|  |  |  |  |         </profile> | 
					
						
							|  |  |  |  |     </profiles> | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | </project> |