68 lines
2.3 KiB
XML
68 lines
2.3 KiB
XML
<?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>carmis</artifactId>
|
|
<groupId>com.weiqi</groupId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>car-service</artifactId>
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.weiqi</groupId>
|
|
<artifactId>car-dao</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>druid</artifactId>
|
|
<version>1.1.2</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.kafka</groupId>
|
|
<artifactId>spring-kafka</artifactId>
|
|
<version>2.2.8.RELEASE</version>
|
|
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>fastjson</artifactId>
|
|
<version>1.2.61</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.weiqi</groupId>
|
|
<artifactId>car-common</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/com.github.pagehelper/pagehelper-spring-boot-starter -->
|
|
<dependency>
|
|
<groupId>com.github.pagehelper</groupId>
|
|
<artifactId>pagehelper-spring-boot-starter</artifactId>
|
|
<version>1.2.12</version>
|
|
</dependency>
|
|
</dependencies>
|
|
<!--<build>-->
|
|
<!--<plugins>-->
|
|
<!--<plugin>-->
|
|
<!--<groupId>org.springframework.boot</groupId>-->
|
|
<!--<artifactId>spring-boot-maven-plugin</artifactId>-->
|
|
<!--<configuration>-->
|
|
<!--<classifier>exec</classifier>-->
|
|
<!--</configuration>-->
|
|
<!--</plugin>-->
|
|
<!--</plugins>-->
|
|
<!--</build>-->
|
|
|
|
|
|
</project> |