File tree Expand file tree Collapse file tree 4 files changed +71
-0
lines changed Expand file tree Collapse file tree 4 files changed +71
-0
lines changed Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3
+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" >
4
+ <modelVersion >4.0.0</modelVersion >
5
+
6
+ <parent >
7
+ <groupId >com.jonssonyan</groupId >
8
+ <artifactId >spring-demo</artifactId >
9
+ <version >0.0.1-SNAPSHOT</version >
10
+ <relativePath >../pom.xml</relativePath > <!-- lookup parent from repository -->
11
+ </parent >
12
+
13
+ <artifactId >springboot-liteflow</artifactId >
14
+ <version >0.0.1-SNAPSHOT</version >
15
+ <name >springboot-liteflow</name >
16
+ <description >Demo project for Spring Boot LiteFlow</description >
17
+
18
+ <properties >
19
+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
20
+ <encoding >UTF-8</encoding >
21
+ <java .version>8</java .version>
22
+ <maven .compiler.source>${java.version} </maven .compiler.source>
23
+ <maven .compiler.target>${java.version} </maven .compiler.target>
24
+
25
+ <liteflow .version>2.6.14</liteflow .version>
26
+ </properties >
27
+
28
+ <dependencies >
29
+ <dependency >
30
+ <groupId >com.yomahub</groupId >
31
+ <artifactId >liteflow-spring-boot-starter</artifactId >
32
+ <version >${liteflow.version} </version >
33
+ </dependency >
34
+ </dependencies >
35
+
36
+ <build >
37
+ <plugins >
38
+ <plugin >
39
+ <groupId >org.springframework.boot</groupId >
40
+ <artifactId >spring-boot-maven-plugin</artifactId >
41
+ </plugin >
42
+ </plugins >
43
+ </build >
44
+ </project >
Original file line number Diff line number Diff line change
1
+ package com .jonssonyan ;
2
+
3
+ import org .springframework .boot .SpringApplication ;
4
+ import org .springframework .boot .autoconfigure .SpringBootApplication ;
5
+
6
+ @ SpringBootApplication
7
+ public class SpringbootLiteflowApplication {
8
+
9
+ public static void main (String [] args ) {
10
+ SpringApplication .run (SpringbootLiteflowApplication .class , args );
11
+ }
12
+
13
+ }
Original file line number Diff line number Diff line change
1
+ liteflow.rule-source =config/**
Original file line number Diff line number Diff line change
1
+ package com .jonssonyan ;
2
+
3
+ import org .junit .jupiter .api .Test ;
4
+ import org .springframework .boot .test .context .SpringBootTest ;
5
+
6
+ @ SpringBootTest
7
+ class SpringbootLiteflowApplicationTests {
8
+
9
+ @ Test
10
+ void contextLoads () {
11
+ }
12
+
13
+ }
You can’t perform that action at this time.
0 commit comments