All version changes are present. Fixed all Java-Doc Errors and warnings * Due to the stricter nature of the javadoc compiler we can't wrap <ul> / <ui> in <p> * We will also need to Push up a test app for taklauncher to work with. The old one fails to start now. Or use one of the task starters possibly. * Built on the work from TASK-439C. Wait for that merge before merging this one. * Replaced applicationFailedEvent class attribute with applicaitonFailedException * Also polished the app used by the taskLauncherSink integration test
= JPA Sample Task This is a Spring Cloud Task Boot Application that uses JPA to persist data to a data store. == Requirements: * Java 7 or Above == Classes: * JpaApplication - the Spring Boot Main Application. * TaskRunComponent - Component responsible for writing data to the repository. * TaskRunOutput - Entity to be written to the repository. == Build: [source,shell,indent=2] ---- $ mvn clean package ---- == Run: [source,shell,indent=2] ---- $ java -jar target/jpa-sample-1.2.1.RELEASE.jar ----