| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 | 
							- <?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>
 
-     <parent>
 
-         <groupId>org.springframework.boot</groupId>
 
-         <artifactId>spring-boot-starter-parent</artifactId>
 
-         <version>2.2.8.RELEASE</version>
 
-         <relativePath/>
 
-     </parent>
 
-     <artifactId>general-data</artifactId>
 
-     <groupId>com.huashe.common</groupId>
 
-     <version>1.0.0-SNAPSHOT</version>
 
-     <description>通用数据服务</description>
 
-     <properties>
 
-         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
 
-         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
 
-         <java.version>1.8</java.version>
 
-         <maven.compiler.source>${java.version}</maven.compiler.source>
 
-         <maven.compiler.target>${java.version}</maven.compiler.target>
 
-     </properties>
 
-     <dependencies>
 
-         <dependency>
 
-             <groupId>org.springframework.boot</groupId>
 
-             <artifactId>spring-boot-starter</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-web</artifactId>
 
-         </dependency>
 
-         <dependency>
 
-             <groupId>org.springframework.boot</groupId>
 
-             <artifactId>spring-boot-configuration-processor</artifactId>
 
-             <optional>true</optional>
 
-         </dependency>
 
-         <!-- mysql驱动 -->
 
-         <dependency>
 
-             <groupId>org.mariadb.jdbc</groupId>
 
-             <artifactId>mariadb-java-client</artifactId>
 
-             <version>2.2.6</version>
 
-         </dependency>
 
-         <!-- Druid 数据库连接池依赖 -->
 
-         <dependency>
 
-             <groupId>com.alibaba</groupId>
 
-             <artifactId>druid</artifactId>
 
-             <version>1.1.19</version>
 
-         </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.1.1</version>
 
-         </dependency>
 
-         <!-- https://mvnrepository.com/artifact/com.alibaba/fastjson -->
 
-         <dependency>
 
-             <groupId>com.alibaba</groupId>
 
-             <artifactId>fastjson</artifactId>
 
-             <version>1.2.83</version>
 
-         </dependency>
 
-         <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
 
-         <dependency>
 
-             <groupId>org.apache.commons</groupId>
 
-             <artifactId>commons-lang3</artifactId>
 
-         </dependency>
 
-         <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-collections4 -->
 
-         <dependency>
 
-             <groupId>org.apache.commons</groupId>
 
-             <artifactId>commons-collections4</artifactId>
 
-             <version>4.2</version>
 
-         </dependency>
 
-         <!-- 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/org.apache.httpcomponents/httpclient -->
 
-         <dependency>
 
-             <groupId>org.apache.httpcomponents</groupId>
 
-             <artifactId>httpclient</artifactId>
 
-             <version>4.5.12</version>
 
-         </dependency>
 
-         <dependency>
 
-             <groupId>junit</groupId>
 
-             <artifactId>junit</artifactId>
 
-             <version>4.12</version>
 
-             <scope>test</scope>
 
-         </dependency>
 
-         <dependency>
 
-             <groupId>com.huashe.common</groupId>
 
-             <artifactId>prod-commons</artifactId>
 
-             <version>1.0-SNAPSHOT</version>
 
-         </dependency>
 
-         <dependency>
 
-             <groupId>io.springfox</groupId>
 
-             <artifactId>springfox-boot-starter</artifactId>
 
-             <version>3.0.0</version>
 
-         </dependency>
 
-     </dependencies>
 
-     <build>
 
-         <plugins>
 
-             <plugin>
 
-                 <groupId>org.apache.maven.plugins</groupId>
 
-                 <artifactId>maven-compiler-plugin</artifactId>
 
-                 <version>3.8.0</version>
 
-                 <configuration>
 
-                     <source>${maven.compiler.source}</source>
 
-                     <target>${maven.compiler.target}</target>
 
-                 </configuration>
 
-             </plugin>
 
-             <plugin>
 
-                 <groupId>org.springframework.boot</groupId>
 
-                 <artifactId>spring-boot-maven-plugin</artifactId>
 
-                 <executions>
 
-                     <execution>
 
-                         <goals>
 
-                             <goal>repackage</goal>
 
-                         </goals>
 
-                     </execution>
 
-                 </executions>
 
-             </plugin>
 
-             <plugin>
 
-                 <groupId>org.apache.maven.plugins</groupId>
 
-                 <artifactId>maven-surefire-plugin</artifactId>
 
-                 <version>2.22.2</version>
 
-                 <configuration>
 
-                     <skipTests>true</skipTests>
 
-                 </configuration>
 
-             </plugin>
 
-         </plugins>
 
-     </build>
 
- </project>
 
 
  |