2019-08-06 15:55:38 +08:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.spiderflow</groupId>
|
|
|
|
<artifactId>spider-flow</artifactId>
|
2019-12-09 10:52:30 +08:00
|
|
|
<version>0.3.0</version>
|
2019-08-06 15:55:38 +08:00
|
|
|
</parent>
|
|
|
|
<artifactId>spider-flow-web</artifactId>
|
|
|
|
<name>spider-flow-web</name>
|
2019-08-06 15:58:53 +08:00
|
|
|
<url>https://gitee.com/jmxd/spider-flow/tree/master/spider-flow-web</url>
|
2019-08-06 15:55:38 +08:00
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-websocket</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.spiderflow</groupId>
|
|
|
|
<artifactId>spider-flow-core</artifactId>
|
2019-10-30 10:27:43 +08:00
|
|
|
<version>${spider-flow.version}</version>
|
2019-08-06 15:55:38 +08:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2019-08-29 16:15:16 +08:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<finalName>spider-flow</finalName>
|
|
|
|
<mainClass>org.spiderflow.SpiderApplication</mainClass>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2019-08-06 15:55:38 +08:00
|
|
|
</project>
|