diff --git a/pom.xml b/pom.xml index a691a25..af47679 100644 --- a/pom.xml +++ b/pom.xml @@ -13,6 +13,7 @@ concurrent file-read kafka + spring-boot pom diff --git a/spring-boot/pom.xml b/spring-boot/pom.xml new file mode 100644 index 0000000..77d1730 --- /dev/null +++ b/spring-boot/pom.xml @@ -0,0 +1,33 @@ + + + + JavaBasiceDemo + com.wyl.example + 1.0-SNAPSHOT + + + 4.0.0 + + spring-boot-drools + + + spring-boot + pom + A Camel Spring Route + + UTF-8 + UTF-8 + + + + + org.springframework.boot + spring-boot-dependencies + 2.3.12.RELEASE + pom + import + + + + diff --git a/spring-boot/spring-boot-drools/pom.xml b/spring-boot/spring-boot-drools/pom.xml new file mode 100644 index 0000000..39a98e5 --- /dev/null +++ b/spring-boot/spring-boot-drools/pom.xml @@ -0,0 +1,22 @@ + + + + + spring-boot + com.wyl.example + 1.0-SNAPSHOT + ../pom.xml + + 4.0.0 + spring-boot-drools + spring-boot-drools + + UTF-8 + 1.8 + 1.8 + + + + + diff --git a/spring-boot/spring-boot-drools/src/test/java/com/wyl/example/AppTest.java b/spring-boot/spring-boot-drools/src/test/java/com/wyl/example/AppTest.java new file mode 100644 index 0000000..70b9b96 --- /dev/null +++ b/spring-boot/spring-boot-drools/src/test/java/com/wyl/example/AppTest.java @@ -0,0 +1,20 @@ +package com.wyl.example; + +import static org.junit.Assert.assertTrue; + +import org.junit.Test; + +/** + * Unit test for simple App. + */ +public class AppTest +{ + /** + * Rigorous Test :-) + */ + @Test + public void shouldAnswerWithTrue() + { + assertTrue( true ); + } +}