mirror of
https://gitee.com/52itstyle/spring-boot-seckill.git
synced 2025-12-30 02:12:27 +00:00
185 lines
6.3 KiB
XML
185 lines
6.3 KiB
XML
<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</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>
|
||
<!-- freemarker 模版 生成静态页 -->
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-freemarker</artifactId>
|
||
</dependency>
|
||
<!-- spring-session -->
|
||
<dependency>
|
||
<groupId>org.springframework.session</groupId>
|
||
<artifactId>spring-session</artifactId>
|
||
</dependency>
|
||
<!-- 构建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 参考:https://blog.52itstyle.com/archives/3202/ -->
|
||
<dependency>
|
||
<groupId>org.apache.curator</groupId>
|
||
<artifactId>curator-recipes</artifactId>
|
||
<version>2.10.0</version>
|
||
</dependency>
|
||
<!-- disruptor 高效队列-->
|
||
<dependency>
|
||
<groupId>com.lmax</groupId>
|
||
<artifactId>disruptor</artifactId>
|
||
<version>3.4.1</version>
|
||
</dependency>
|
||
<!-- webSocket 秒杀通知-->
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-websocket</artifactId>
|
||
</dependency>
|
||
<!-- guava 限流 -->
|
||
<dependency>
|
||
<groupId>com.google.guava</groupId>
|
||
<artifactId>guava</artifactId>
|
||
<version>25.1-jre</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>commons-codec</groupId>
|
||
<artifactId>commons-codec</artifactId>
|
||
<version>1.11</version><!--$NO-MVN-MAN-VER$-->
|
||
</dependency>
|
||
<!-- activemq -->
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-activemq</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.alibaba</groupId>
|
||
<artifactId>fastjson</artifactId>
|
||
<version>1.2.49</version>
|
||
</dependency>
|
||
<!-- 监控 -->
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-actuator</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.alibaba.csp</groupId>
|
||
<artifactId>sentinel-core</artifactId>
|
||
<version>1.6.3</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.projectlombok</groupId>
|
||
<artifactId>lombok</artifactId>
|
||
<version>1.18.8</version>
|
||
<scope>provided</scope>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>io.netty</groupId>
|
||
<artifactId>netty-common</artifactId>
|
||
<version>4.1.23.Final</version>
|
||
</dependency>
|
||
<!--beanstalkd消息队列-->
|
||
<dependency>
|
||
<groupId>com.dinstone</groupId>
|
||
<artifactId>beanstalkc</artifactId>
|
||
<version>2.3.0</version>
|
||
</dependency>
|
||
</dependencies>
|
||
<build>
|
||
<finalName>spring-boot-seckill</finalName>
|
||
<!-- 打包项目 mvn clean package -->
|
||
<plugins>
|
||
<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>
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-compiler-plugin</artifactId>
|
||
<version>3.7.0</version>
|
||
<configuration>
|
||
<source>1.8</source>
|
||
<target>1.8</target>
|
||
</configuration>
|
||
</plugin>
|
||
</plugins>
|
||
</build>
|
||
</project>
|