You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
2.1 KiB
71 lines
2.1 KiB
3 months ago
|
<?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>bolt-server</artifactId>
|
||
|
<groupId>com.jiluo.bolt</groupId>
|
||
|
<version>0.0.1-SNAPSHOT</version>
|
||
|
</parent>
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
||
|
<artifactId>bolt-web</artifactId>
|
||
|
|
||
|
<dependencies>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>com.jiluo.bolt</groupId>
|
||
|
<artifactId>bolt-kernel</artifactId>
|
||
|
<version>0.0.1-SNAPSHOT</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-web</artifactId>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- 热部署模块 -->
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-devtools</artifactId>
|
||
|
<optional>true</optional>
|
||
|
</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>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
|
||
|
<resources>
|
||
|
<resource>
|
||
|
<directory>src/main/resources</directory>
|
||
|
<includes>
|
||
|
<include>*.properties</include>
|
||
|
<include>*.xml</include>
|
||
|
<include>*.yml</include>
|
||
|
<include>**/*.so</include>
|
||
|
<include>**/*.dll</include>
|
||
|
<include>static/**</include>
|
||
|
</includes>
|
||
|
</resource>
|
||
|
</resources>
|
||
|
</build>
|
||
|
|
||
|
|
||
|
</project>
|