2018-05-15 18:30:33 +08:00
|
|
|
<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/maven-v4_0_0.xsd">
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
<groupId>com.itstyle.seckill</groupId>
|
|
|
|
|
<artifactId>spring-boot-seckill</artifactId>
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
|
<name>spring-boot-seckill Maven</name>
|
|
|
|
|
<url>http://maven.apache.org</url>
|
|
|
|
|
<properties>
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
<docker.image.prefix>springboot</docker.image.prefix>
|
|
|
|
|
</properties>
|
|
|
|
|
<parent>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
|
|
|
<version>1.5.10.RELEASE</version>
|
|
|
|
|
<relativePath/>
|
|
|
|
|
</parent>
|
|
|
|
|
<dependencies>
|
|
|
|
|
<!-- 实现web功能 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- 模版 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>net.sourceforge.nekohtml</groupId>
|
|
|
|
|
<artifactId>nekohtml</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>mysql</groupId>
|
|
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-redis</artifactId>
|
|
|
|
|
<version>1.4.7.RELEASE</version>
|
|
|
|
|
</dependency>
|
2018-05-25 18:28:04 +08:00
|
|
|
<!-- freemarker 模版 生成静态页 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-freemarker</artifactId>
|
|
|
|
|
</dependency>
|
2018-05-17 18:16:37 +08:00
|
|
|
<!-- spring-session -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.session</groupId>
|
|
|
|
|
<artifactId>spring-session</artifactId>
|
|
|
|
|
</dependency>
|
2018-05-15 18:30:33 +08:00
|
|
|
<!-- 构建Restful API -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.springfox</groupId>
|
|
|
|
|
<artifactId>springfox-swagger2</artifactId>
|
|
|
|
|
<version>2.7.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.springfox</groupId>
|
|
|
|
|
<artifactId>springfox-swagger-ui</artifactId>
|
|
|
|
|
<version>2.7.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- Redisson实现分布式锁 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.redisson</groupId>
|
|
|
|
|
<artifactId>redisson</artifactId>
|
|
|
|
|
<version>2.11.5</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
|
|
<version>3.7</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!--kafka支持-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.kafka</groupId>
|
|
|
|
|
<artifactId>spring-kafka</artifactId>
|
|
|
|
|
<version>1.3.5.RELEASE</version><!--$NO-MVN-MAN-VER$-->
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- zookeeper 分布式锁、注意zookeeper版本 这里对应的是3.4.6-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.curator</groupId>
|
|
|
|
|
<artifactId>curator-recipes</artifactId>
|
|
|
|
|
<version>2.10.0</version>
|
|
|
|
|
</dependency>
|
2018-05-22 19:22:06 +08:00
|
|
|
<!-- disruptor 高效队列-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.lmax</groupId>
|
|
|
|
|
<artifactId>disruptor</artifactId>
|
|
|
|
|
<version>3.4.1</version>
|
|
|
|
|
</dependency>
|
2018-05-15 18:30:33 +08:00
|
|
|
</dependencies>
|
|
|
|
|
<build>
|
|
|
|
|
<finalName>spring-boot-seckill</finalName><plugins>
|
|
|
|
|
<!-- 打包项目 mvn clean package -->
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
|
<dependencies>
|
|
|
|
|
<!-- mvn spring-boot:run 热部署启动 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>springloaded</artifactId>
|
|
|
|
|
<version>1.2.7.RELEASE</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
</project>
|