spider-flow/spider-flow-web/pom.xml

39 lines
1.3 KiB
XML
Raw Normal View History

<?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>
</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>
<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>
</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>
</project>