|
| 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.0.9.RELEASE</version> |
| 9 | + <relativePath/> <!-- lookup parent from repository --> |
| 10 | + </parent> |
| 11 | + <groupId>io.kimmking</groupId> |
| 12 | + <artifactId>dtx01</artifactId> |
| 13 | + <version>0.0.1-SNAPSHOT</version> |
| 14 | + <name>dtx01</name> |
| 15 | + <description>Demo project for Spring Boot</description> |
| 16 | + |
| 17 | + <properties> |
| 18 | + <java.version>1.8</java.version> |
| 19 | + </properties> |
| 20 | + |
| 21 | + <dependencies> |
| 22 | + <dependency> |
| 23 | + <groupId>org.springframework.boot</groupId> |
| 24 | + <artifactId>spring-boot-starter-jdbc</artifactId> |
| 25 | + </dependency> |
| 26 | + <dependency> |
| 27 | + <groupId>org.springframework.boot</groupId> |
| 28 | + <artifactId>spring-boot-starter</artifactId> |
| 29 | + </dependency> |
| 30 | + <dependency> |
| 31 | + <groupId>org.springframework.boot</groupId> |
| 32 | + <artifactId>spring-boot-starter-web</artifactId> |
| 33 | + </dependency> |
| 34 | + <dependency> |
| 35 | + <groupId>org.mybatis.spring.boot</groupId> |
| 36 | + <artifactId>mybatis-spring-boot-starter</artifactId> |
| 37 | + <version>2.1.4</version> |
| 38 | + </dependency> |
| 39 | + <dependency> |
| 40 | + <groupId>mysql</groupId> |
| 41 | + <artifactId>mysql-connector-java</artifactId> |
| 42 | + <version>5.1.47</version> |
| 43 | + </dependency> |
| 44 | + |
| 45 | + <dependency> |
| 46 | + <groupId>org.apache.dubbo</groupId> |
| 47 | + <artifactId>dubbo</artifactId> |
| 48 | + <version>2.7.8</version> |
| 49 | + </dependency> |
| 50 | + |
| 51 | + <dependency> |
| 52 | + <groupId>org.projectlombok</groupId> |
| 53 | + <artifactId>lombok</artifactId> |
| 54 | + </dependency> |
| 55 | +<!-- <dependency>--> |
| 56 | +<!-- <groupId>org.springframework.boot</groupId>--> |
| 57 | +<!-- <artifactId>spring-boot-starter-cache</artifactId>--> |
| 58 | +<!-- </dependency>--> |
| 59 | +<!-- <dependency>--> |
| 60 | +<!-- <groupId>org.springframework.boot</groupId>--> |
| 61 | +<!-- <artifactId>spring-boot-starter-data-redis</artifactId>--> |
| 62 | +<!-- </dependency>--> |
| 63 | +<!-- <dependency>--> |
| 64 | +<!-- <groupId>io.lettuce</groupId>--> |
| 65 | +<!-- <artifactId>lettuce-core</artifactId>--> |
| 66 | +<!-- </dependency>--> |
| 67 | +<!-- <dependency>--> |
| 68 | +<!-- <groupId>org.apache.commons</groupId>--> |
| 69 | +<!-- <artifactId>commons-pool2</artifactId>--> |
| 70 | +<!-- </dependency>--> |
| 71 | +<!-- <dependency>--> |
| 72 | +<!-- <groupId>net.sf.ehcache</groupId>--> |
| 73 | +<!-- <artifactId>ehcache</artifactId>--> |
| 74 | +<!-- <version>2.8.3</version>--> |
| 75 | +<!-- </dependency>--> |
| 76 | +<!-- <dependency>--> |
| 77 | +<!-- <groupId>org.mybatis</groupId>--> |
| 78 | +<!-- <artifactId>mybatis-ehcache</artifactId>--> |
| 79 | +<!-- <version>1.0.0</version>--> |
| 80 | +<!-- </dependency>--> |
| 81 | + |
| 82 | + <dependency> |
| 83 | + <groupId>org.springframework.boot</groupId> |
| 84 | + <artifactId>spring-boot-starter-test</artifactId> |
| 85 | + <scope>test</scope> |
| 86 | + <exclusions> |
| 87 | + <exclusion> |
| 88 | + <groupId>org.junit.vintage</groupId> |
| 89 | + <artifactId>junit-vintage-engine</artifactId> |
| 90 | + </exclusion> |
| 91 | + </exclusions> |
| 92 | + </dependency> |
| 93 | + |
| 94 | +<!-- <dependency>--> |
| 95 | +<!-- <groupId>io.seata</groupId>--> |
| 96 | +<!-- <artifactId>seata-all</artifactId>--> |
| 97 | +<!-- <version>1.4.2</version>--> |
| 98 | +<!-- </dependency>--> |
| 99 | + |
| 100 | +<!-- <dependency>--> |
| 101 | +<!-- <groupId>org.dromara</groupId>--> |
| 102 | +<!-- <artifactId>hmily-annotation</artifactId>--> |
| 103 | +<!-- <version>2.1.1</version>--> |
| 104 | +<!-- </dependency>--> |
| 105 | + |
| 106 | + </dependencies> |
| 107 | + |
| 108 | + <build> |
| 109 | + <plugins> |
| 110 | + <plugin> |
| 111 | + <groupId>org.springframework.boot</groupId> |
| 112 | + <artifactId>spring-boot-maven-plugin</artifactId> |
| 113 | + </plugin> |
| 114 | + </plugins> |
| 115 | + </build> |
| 116 | + |
| 117 | +</project> |
0 commit comments