spring-boot/spring-boot-samples/spring-boot-sample-simple
Sebastien Deleuze ab6c8dfee3 Use org.springframework.boot groupId in spring-boot-samples
Use org.springframework.boot instead of ${project.groupId}
groupId in order to make it easier to use spring-boot-samples
modules as a starting point for new projects.
2014-03-07 17:02:20 +00:00
..
src Add support for Spring Loaded in Maven and Gradle 2014-02-18 10:05:28 +00:00
build.gradle Update Spring repository url in Gradle samples 2014-03-04 13:15:41 +00:00
pom.xml Use org.springframework.boot groupId in spring-boot-samples 2014-03-07 17:02:20 +00:00
README.md Add build.gradle samples and rename runJar->bootRun 2013-12-10 11:10:04 +00:00

Spring Boot Simple Sample

You can build this sample using Maven (>3) or Gradle (1.6).

With Maven:

$ mvn package
$ java -jar target/*.jar

The app prints a Hello message on the console.

With gradle:

$ gradle build
$ java -jar build/libs/*.jar