├── .editorconfig ├── .gitignore ├── README.md ├── pom.xml └── src └── main └── java └── com └── auth0 └── samples └── bootfaces └── Application.java /.editorconfig: -------------------------------------------------------------------------------- 1 | # Unix-style newlines with a newline ending every file 2 | [*] 3 | end_of_line = lf 4 | insert_final_newline = true 5 | 6 | [*.{js,java,css,html,xml,xhtml,ftl}] 7 | charset = utf-8 8 | indent_style = tab 9 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | *.iml 3 | data/ 4 | /target/ 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## JavaServer Faces with Spring Boot -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 4.0.0 6 | 7 | com.auth0.samples 8 | spring-boot-faces 9 | 1.0-SNAPSHOT 10 | 11 | 12 | 13 | org.springframework.boot 14 | spring-boot-starter-parent 15 | 1.5.2.RELEASE 16 | 17 | 18 | 19 | 20 | 21 | 22 | org.springframework.boot 23 | spring-boot-starter-web 24 | 25 | 26 | org.springframework.boot 27 | spring-boot-starter-validation 28 | 29 | 30 | org.springframework.boot 31 | spring-boot-starter-data-jpa 32 | 33 | 34 | 35 | 36 | org.hsqldb 37 | hsqldb 38 | 2.3.4 39 | 40 | 41 | org.flywaydb 42 | flyway-core 43 | 4.1.2 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | org.springframework.boot 52 | spring-boot-maven-plugin 53 | 54 | 55 | 56 | 57 | -------------------------------------------------------------------------------- /src/main/java/com/auth0/samples/bootfaces/Application.java: -------------------------------------------------------------------------------- 1 | package com.auth0.samples.bootfaces; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.EnableAutoConfiguration; 5 | import org.springframework.boot.web.support.SpringBootServletInitializer; 6 | import org.springframework.context.annotation.ComponentScan; 7 | 8 | @EnableAutoConfiguration 9 | @ComponentScan({"com.auth0.samples.bootfaces"}) 10 | public class Application extends SpringBootServletInitializer { 11 | 12 | public static void main(String[] args) { 13 | SpringApplication.run(Application.class, args); 14 | } 15 | } 16 | --------------------------------------------------------------------------------