| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 | 
							- <?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">
 
-     <modelVersion>4.0.0</modelVersion>
 
-     <groupId>org.example</groupId>
 
-     <artifactId>dil-api</artifactId>
 
-     <version>1.0-SNAPSHOT</version>
 
-     <parent>
 
-         <groupId>org.springframework.boot</groupId>
 
-         <artifactId>spring-boot-starter-parent</artifactId>
 
-         <version>2.0.7.RELEASE</version>
 
-     </parent>
 
-     <dependencyManagement>
 
-         <dependencies>
 
-             <dependency>
 
-                 <groupId>org.springframework.cloud</groupId>
 
-                 <artifactId>spring-cloud-dependencies</artifactId>
 
-                 <!--Spring Cloud的版本-->
 
-                 <version>Finchley.SR2</version>
 
-                 <type>pom</type>
 
-                 <scope>import</scope>
 
-             </dependency>
 
-         </dependencies>
 
-     </dependencyManagement>
 
-     <repositories>
 
-         <repository>
 
-             <id>maven-public</id>
 
-             <name>steerinfo maven-public</name>
 
-             <url>https://nexus.steerinfo.com/repository/maven-public/</url>
 
-         </repository>
 
-     </repositories>
 
-     <distributionManagement>
 
-         <repository>
 
-             <id>maven-releases</id>
 
-             <name>steerinfo nexus-releases</name>
 
-             <url>http://nexus.steerinfo.com/repository/maven-releases/</url>
 
-         </repository>
 
-         <snapshotRepository>
 
-             <id>maven-snapshots</id>
 
-             <url>http://nexus.steerinfo.com/repository/maven-snapshots/</url>
 
-         </snapshotRepository>
 
-     </distributionManagement>
 
-     <dependencies>
 
-         <!--websocket-->
 
-         <dependency>
 
-             <groupId>org.springframework.boot</groupId>
 
-             <artifactId>spring-boot-starter-websocket</artifactId>
 
-         </dependency>
 
-         <dependency>
 
-             <groupId>org.springframework.boot</groupId>
 
-             <artifactId>spring-boot-starter-web</artifactId>
 
-             <version>2.0.7.RELEASE</version>
 
-         </dependency>
 
-         <!--mybatisPlus-->
 
-         <dependency>
 
-             <groupId>com.baomidou</groupId>
 
-             <artifactId>mybatis-plus-boot-starter</artifactId>
 
-             <version>3.4.2</version>
 
-         </dependency>
 
-         <!--swagger-->
 
-         <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>org.apache.poi</groupId>
 
-             <artifactId>poi</artifactId>
 
-             <version>3.17</version>
 
-         </dependency>
 
-         <dependency>
 
-             <groupId>org.apache.poi</groupId>
 
-             <artifactId>poi-ooxml</artifactId>
 
-             <version>3.17</version>
 
-         </dependency>
 
-         <!--steerinfo-->
 
-         <dependency>
 
-             <groupId>com.steerinfo</groupId>
 
-             <artifactId>framework</artifactId>
 
-             <version>1.0</version>
 
-         </dependency>
 
-         <!-- https://mvnrepository.com/artifact/org.mybatis/mybatis -->
 
-         <dependency>
 
-             <groupId>org.mybatis</groupId>
 
-             <artifactId>mybatis</artifactId>
 
-             <version>3.5.6</version>
 
-         </dependency>
 
-     </dependencies>
 
-     <build>
 
-         <plugins>
 
-             <plugin>
 
-                 <groupId>org.springframework.boot</groupId>
 
-                 <artifactId>spring-boot-maven-plugin</artifactId>
 
-                 <executions>
 
-                     <execution>
 
-                         <goals>
 
-                             <goal>repackage</goal>
 
-                         </goals>
 
-                     </execution>
 
-                 </executions>
 
-             </plugin>
 
-         </plugins>
 
-         <resources>
 
-             <resource>
 
-                 <directory>src/main/resources</directory>
 
-                 <includes>
 
-                     <include>**/*.xml</include>
 
-                 </includes>
 
-             </resource>
 
-             <resource>
 
-                 <directory>src/main/resources</directory>
 
-             </resource>
 
-         </resources>
 
-     </build>
 
- </project>
 
 
  |