diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..265b65a --- /dev/null +++ b/.gitignore @@ -0,0 +1,26 @@ +/target/ +!.mvn/wrapper/maven-wrapper.jar + +### STS ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans +.sts4-cache + +### IntelliJ IDEA ### +.idea +*.iws +*.iml +*.ipr + +### NetBeans ### +/nbproject/private/ +/build/ +/nbbuild/ +/dist/ +/nbdist/ +/.nb-gradle/ +nbactions.xml \ No newline at end of file diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..3722d8f --- /dev/null +++ b/pom.xml @@ -0,0 +1,64 @@ + + + 4.0.0 + + id.web.ard + spring-boot-webflux-jjwt + 0.0.1-SNAPSHOT + jar + + spring-boot-webflux-jjwt + Demo project for Spring Boot + + + org.springframework.boot + spring-boot-starter-parent + 2.0.2.RELEASE + + + + + UTF-8 + UTF-8 + 1.8 + + + + + org.springframework.boot + spring-boot-starter-security + + + org.springframework.boot + spring-boot-starter-webflux + + + + org.springframework.boot + spring-boot-starter-test + test + + + io.projectreactor + reactor-test + test + + + org.springframework.security + spring-security-test + test + + + + + + + org.springframework.boot + spring-boot-maven-plugin + + + + + + diff --git a/src/main/java/id/web/ard/springbootwebfluxjjwt/SpringBootWebfluxJjwtApplication.java b/src/main/java/id/web/ard/springbootwebfluxjjwt/SpringBootWebfluxJjwtApplication.java new file mode 100644 index 0000000..dad036e --- /dev/null +++ b/src/main/java/id/web/ard/springbootwebfluxjjwt/SpringBootWebfluxJjwtApplication.java @@ -0,0 +1,12 @@ +package id.web.ard.springbootwebfluxjjwt; + +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; + +@SpringBootApplication +public class SpringBootWebfluxJjwtApplication { + + public static void main(String[] args) { + SpringApplication.run(SpringBootWebfluxJjwtApplication.class, args); + } +} diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties new file mode 100644 index 0000000..e69de29 diff --git a/src/test/java/id/web/ard/springbootwebfluxjjwt/SpringBootWebfluxJjwtApplicationTests.java b/src/test/java/id/web/ard/springbootwebfluxjjwt/SpringBootWebfluxJjwtApplicationTests.java new file mode 100644 index 0000000..d9a60cb --- /dev/null +++ b/src/test/java/id/web/ard/springbootwebfluxjjwt/SpringBootWebfluxJjwtApplicationTests.java @@ -0,0 +1,16 @@ +package id.web.ard.springbootwebfluxjjwt; + +import org.junit.Test; +import org.junit.runner.RunWith; +import org.springframework.boot.test.context.SpringBootTest; +import org.springframework.test.context.junit4.SpringRunner; + +@RunWith(SpringRunner.class) +@SpringBootTest +public class SpringBootWebfluxJjwtApplicationTests { + + @Test + public void contextLoads() { + } + +}