Update timestamp sample

* Log Level is now at DEBUG
* Removed H2 dependency
* Updated main readme to discuss how to build samples

resolves #165
This commit is contained in:
Glenn Renfro
2016-07-05 17:12:29 -04:00
committed by Michael Minella
parent de3d09664e
commit 02589b1b2d
3 changed files with 9 additions and 9 deletions

View File

@@ -9,13 +9,20 @@ process persists beyond the life of the task for future reporting.
* Java 7 or Above
== Build:
== Build Main Project:
[source,shell,indent=2]
----
$ ./mvnw clean install
----
== Build Samples:
[source,shell,indent=2]
----
$ ./mvnw -P samples clean install
----
== Example:
[source,java,indent=2]

View File

@@ -48,14 +48,6 @@
<artifactId>spring-cloud-task-starter</artifactId>
<version>1.0.1.BUILD-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jdbc</artifactId>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>

View File

@@ -1 +1,2 @@
spring.application.name=Demo Timestamp Task
logging.level.org.springframework.cloud.task=DEBUG