124 lines
4.3 KiB
XML
124 lines
4.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>blog</artifactId>
|
|
<groupId>cn.celess</groupId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>blog-common</artifactId>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>cn.celess</groupId>
|
|
<artifactId>blog-resource</artifactId>
|
|
<version>${blog-resource.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>mysql</groupId>
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>com.sun</groupId>-->
|
|
<!-- <artifactId>tools</artifactId>-->
|
|
<!-- <version>1.8</version>-->
|
|
<!-- <scope>system</scope>-->
|
|
<!-- <systemPath>${project.basedir}/src/main/resources/lib/tools.jar</systemPath>-->
|
|
<!-- <optional>true</optional>-->
|
|
<!-- </dependency>-->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>com.sun</groupId>-->
|
|
<!-- <artifactId>jconsole</artifactId>-->
|
|
<!-- <version>1.8</version>-->
|
|
<!-- <scope>system</scope>-->
|
|
<!-- <systemPath>${project.basedir}/src/main/resources/lib/jconsole.jar</systemPath>-->
|
|
<!-- <optional>true</optional>-->
|
|
<!-- </dependency>-->
|
|
<!--druid-->
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>druid</artifactId>
|
|
<version>1.2.6</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>com.sun</groupId>
|
|
<artifactId>jconsole</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>com.sun</groupId>
|
|
<artifactId>tools</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
<!-- mybatis -->
|
|
<dependency>
|
|
<groupId>org.mybatis.spring.boot</groupId>
|
|
<artifactId>mybatis-spring-boot-starter</artifactId>
|
|
<version>2.2.0</version>
|
|
</dependency>
|
|
|
|
<!-- pageHelper -->
|
|
<dependency>
|
|
<groupId>com.github.pagehelper</groupId>
|
|
<artifactId>pagehelper-spring-boot-starter</artifactId>
|
|
<version>1.3.0</version>
|
|
</dependency>
|
|
|
|
|
|
<!--Email-->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-mail</artifactId>
|
|
</dependency>
|
|
<!-- TODO: remove this -->
|
|
<dependency>
|
|
<groupId>com.qiniu</groupId>
|
|
<artifactId>qiniu-java-sdk</artifactId>
|
|
<version>[7.2.0, 7.2.99]</version>
|
|
</dependency>
|
|
|
|
<!-- redis -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>net.sourceforge.htmlunit</groupId>
|
|
<artifactId>htmlunit</artifactId>
|
|
<version>2.45.0</version>
|
|
</dependency>
|
|
|
|
|
|
<!-- protostuff序列化依赖 -->
|
|
<dependency>
|
|
<groupId>com.dyuproject.protostuff</groupId>
|
|
<artifactId>protostuff-core</artifactId>
|
|
<version>1.1.6</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.dyuproject.protostuff</groupId>
|
|
<artifactId>protostuff-runtime</artifactId>
|
|
<version>1.1.6</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
</project>
|