Commit e6f34e326bdf3d32c976ce8cca53b8ac060de787

Authored by 娄高锋
1 parent 52418684

引入jia包com.alibaba.fastjson

Showing 1 changed file with 68 additions and 62 deletions
1 -<?xml version="1.0" encoding="UTF-8"?>  
2 -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
3 - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">  
4 - <modelVersion>4.0.0</modelVersion>  
5 - <parent>  
6 - <groupId>org.springframework.boot</groupId>  
7 - <artifactId>spring-boot-starter-parent</artifactId>  
8 - <version>2.2.2.RELEASE</version>  
9 - <relativePath/> <!-- lookup parent from repository -->  
10 - </parent>  
11 - <groupId>com.bsth</groupId>  
12 - <artifactId>control4cloud</artifactId>  
13 - <packaging>jar</packaging>  
14 - <version>0.0.1-SNAPSHOT</version>  
15 - <name>control4cloud</name>  
16 - <description>control4cloud</description>  
17 -  
18 - <dependencies>  
19 - <dependency>  
20 - <groupId>org.springframework.boot</groupId>  
21 - <artifactId>spring-boot-starter-web</artifactId>  
22 - </dependency>  
23 -  
24 - <dependency>  
25 - <groupId>mysql</groupId>  
26 - <artifactId>mysql-connector-java</artifactId>  
27 - <scope>runtime</scope>  
28 - </dependency>  
29 -  
30 - <dependency>  
31 - <groupId>org.springframework.boot</groupId>  
32 - <artifactId>spring-boot-starter-test</artifactId>  
33 - <scope>test</scope>  
34 - <exclusions>  
35 - <exclusion>  
36 - <groupId>org.junit.vintage</groupId>  
37 - <artifactId>junit-vintage-engine</artifactId>  
38 - </exclusion>  
39 - </exclusions>  
40 - </dependency>  
41 -  
42 - <dependency>  
43 - <groupId>org.springframework.boot</groupId>  
44 - <artifactId>spring-boot-starter-jdbc</artifactId>  
45 - </dependency>  
46 -  
47 - <dependency>  
48 - <groupId>joda-time</groupId>  
49 - <artifactId>joda-time</artifactId>  
50 - </dependency>  
51 - </dependencies>  
52 -  
53 - <build>  
54 - <plugins>  
55 - <plugin>  
56 - <groupId>org.springframework.boot</groupId>  
57 - <artifactId>spring-boot-maven-plugin</artifactId>  
58 - </plugin>  
59 - </plugins>  
60 - </build>  
61 -  
62 -</project> 1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3 + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4 + <modelVersion>4.0.0</modelVersion>
  5 + <parent>
  6 + <groupId>org.springframework.boot</groupId>
  7 + <artifactId>spring-boot-starter-parent</artifactId>
  8 + <version>2.2.2.RELEASE</version>
  9 + <relativePath/> <!-- lookup parent from repository -->
  10 + </parent>
  11 + <groupId>com.bsth</groupId>
  12 + <artifactId>control4cloud</artifactId>
  13 + <packaging>jar</packaging>
  14 + <version>0.0.1-SNAPSHOT</version>
  15 + <name>control4cloud</name>
  16 + <description>control4cloud</description>
  17 +
  18 + <dependencies>
  19 + <dependency>
  20 + <groupId>com.alibaba</groupId>
  21 + <artifactId>fastjson</artifactId>
  22 + <version>1.2.4</version>
  23 + </dependency>
  24 +
  25 + <dependency>
  26 + <groupId>org.springframework.boot</groupId>
  27 + <artifactId>spring-boot-starter-web</artifactId>
  28 + </dependency>
  29 +
  30 + <dependency>
  31 + <groupId>mysql</groupId>
  32 + <artifactId>mysql-connector-java</artifactId>
  33 + <scope>runtime</scope>
  34 + </dependency>
  35 +
  36 + <dependency>
  37 + <groupId>org.springframework.boot</groupId>
  38 + <artifactId>spring-boot-starter-test</artifactId>
  39 + <scope>test</scope>
  40 + <exclusions>
  41 + <exclusion>
  42 + <groupId>org.junit.vintage</groupId>
  43 + <artifactId>junit-vintage-engine</artifactId>
  44 + </exclusion>
  45 + </exclusions>
  46 + </dependency>
  47 +
  48 + <dependency>
  49 + <groupId>org.springframework.boot</groupId>
  50 + <artifactId>spring-boot-starter-jdbc</artifactId>
  51 + </dependency>
  52 +
  53 + <dependency>
  54 + <groupId>joda-time</groupId>
  55 + <artifactId>joda-time</artifactId>
  56 + </dependency>
  57 + </dependencies>
  58 +
  59 + <build>
  60 + <plugins>
  61 + <plugin>
  62 + <groupId>org.springframework.boot</groupId>
  63 + <artifactId>spring-boot-maven-plugin</artifactId>
  64 + </plugin>
  65 + </plugins>
  66 + </build>
  67 +
  68 +</project>