增加对yaml文件格式的支持 #3

Open
p90524618 wants to merge 2 commits from yamkl into master
2 changed files with 36 additions and 0 deletions

15
package.json Normal file
View File

@ -0,0 +1,15 @@
{
"private": true,
"scripts": {
"dev:github": "anywhere -d github -h localhost 8080",
"dev:gitlab": "anywhere -d gitlab -h localhost 8080",
"dev:bitbucket": "anywhere -d bitbucket -h localhost 8080",
"dev:gitee": "anywhere -d gitee -h localhost 8080",
"dev:vuepress": "vuepress dev vuepress"
},
"devDependencies": {
"@vssue/vuepress-plugin-vssue": "^0.1.5",
"anywhere": "^1.5.0",
"vuepress": "^1.0.0-alpha.30"
}
}

21
pom.xml Normal file
View File

@ -0,0 +1,21 @@
<?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>
<version>0.5.0</version>
</parent>
<artifactId>spider-flow-core</artifactId>
<name>spider-flow-core</name>
<url>https://gitee.com/jmxd/spider-flow/tree/master/spider-flow-core</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>org.spiderflow</groupId>
<artifactId>spider-flow-api</artifactId>
</dependency>
</dependencies>
</project>