137 lines
4.5 KiB
XML
137 lines
4.5 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>com.datang.pet</artifactId>
|
|
<groupId>com.datang</groupId>
|
|
<version>1.0</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>com.datang.pet.common</artifactId>
|
|
|
|
<dependencies>
|
|
|
|
<!-- springboot web-->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
</dependency>
|
|
<!-- springboot web-->
|
|
<!-- springboot test-->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
</dependency>
|
|
<!-- springboot test-->
|
|
|
|
<!-- webSockete-->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-websocket</artifactId>
|
|
</dependency>
|
|
<!-- webSockete-->
|
|
|
|
<!--Redis-->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
|
</dependency>
|
|
<!--Redis-->
|
|
|
|
<!-- 去除logback-->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
<exclusions><!-- 去掉springboot默认配置 -->
|
|
<exclusion>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-logging</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<!-- 去除logback-->
|
|
|
|
<!-- 引入log4j2依赖 -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-log4j2</artifactId>
|
|
</dependency>
|
|
<!-- 引入log4j2依赖 -->
|
|
|
|
|
|
<!-- mysql -->
|
|
<dependency>
|
|
<groupId>mysql</groupId>
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
<version>8.0.11</version>
|
|
</dependency>
|
|
<!-- mysql -->
|
|
|
|
<!--mybatis-->
|
|
<dependency>
|
|
<groupId>org.mybatis.spring.boot</groupId>
|
|
<artifactId>mybatis-spring-boot-starter</artifactId>
|
|
<version>1.3.1</version>
|
|
</dependency>
|
|
<!--mybatis-->
|
|
|
|
<!-- mybatis-generator-core 反向生成java代码-->
|
|
<dependency>
|
|
<groupId>org.mybatis.generator</groupId>
|
|
<artifactId>mybatis-generator-core</artifactId>
|
|
<version>1.3.5</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.ibatis</groupId>
|
|
<artifactId>ibatis-core</artifactId>
|
|
<version>3.0</version>
|
|
</dependency>
|
|
<!-- mybatis-generator-core 反向生成java代码-->
|
|
|
|
<!-- http请求-->
|
|
<dependency>
|
|
<groupId>commons-httpclient</groupId>
|
|
<artifactId>commons-httpclient</artifactId>
|
|
<version>3.1-rc1</version>
|
|
</dependency>
|
|
<!-- http请求-->
|
|
|
|
|
|
<!-- 爸爸家的数据源听说全球最好的~~~ -->
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>druid</artifactId>
|
|
<version>1.1.0</version>
|
|
</dependency>
|
|
<!-- 爸爸家的数据源听说全球最好的~~~ -->
|
|
|
|
<!-- 阿里爸爸家的oss对象存储-->
|
|
<dependency>
|
|
<groupId>com.aliyun.oss</groupId>
|
|
<artifactId>aliyun-sdk-oss</artifactId>
|
|
<version>2.8.3</version>
|
|
</dependency>
|
|
<!-- 阿里爸爸家的oss对象存储-->
|
|
|
|
<!-- 阿里爸爸家的json转换包,牛逼~~~牛逼-->
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>fastjson</artifactId>
|
|
<version>1.2.41</version>
|
|
</dependency>
|
|
<!-- 阿里爸爸家的json转换包,牛逼~~~牛逼-->
|
|
|
|
<!-- mq消息队列-->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-activemq</artifactId>
|
|
</dependency>
|
|
<!-- mq消息队列-->
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
</project> |