diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..b1fa2d9 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,17 @@ +{ + "language": "java", + "sudo": false, + "install": true, + "jdk": "oraclejdk8", + "script": [ + "mvn clean package -Dmaven.test.skip=true" + ], + "cache": { + "directories": [ + "$HOME/.m2/repository" + ] + }, + "group": "stable", + "dist": "trusty", + "os": "linux" +} diff --git a/README.md b/README.md index 4cebf9e..0c7c834 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,10 @@ springboot-angularjs-demo ========================= -This code is an example of how to step by step develop an application with Spring Boot and AngularJS. It includes: +This code is an example of how to step by step develop an application with Spring Boot and AngularJS. + +It includes: + 0. Start a project (Maven & Spring Boot) 1. Develop the business (Spring Core, JUnit) 2. Persist data (Spring Data JPA, Hibernate) @@ -14,4 +17,3 @@ This code is an example of how to step by step develop an application with Sprin 9. Deploy the application ('fat' JAR file, WAR file) You can find the presentation slide for this code at http://www.slideshare.net/Soddino/developing-an-application-with-spring-boot-34661781 -