From ba5bc3908a036b6e964b951f3cf46560d8e7fe46 Mon Sep 17 00:00:00 2001 From: Michael Minella Date: Mon, 30 Apr 2018 12:02:11 -0500 Subject: [PATCH] Documentation fixes prior to GA release This commit addresses two formatting issues with the documentation as well as should fix the publishing of the javadocs. Resolves #417 --- pom.xml | 2 +- spring-cloud-task-docs/src/main/asciidoc/features.adoc | 7 +++---- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/pom.xml b/pom.xml index 35ba4b47..cdd6a428 100755 --- a/pom.xml +++ b/pom.xml @@ -183,7 +183,7 @@ aggregate - site + package aggregate diff --git a/spring-cloud-task-docs/src/main/asciidoc/features.adoc b/spring-cloud-task-docs/src/main/asciidoc/features.adoc index ed7fa41e..6ecebd0b 100644 --- a/spring-cloud-task-docs/src/main/asciidoc/features.adoc +++ b/spring-cloud-task-docs/src/main/asciidoc/features.adoc @@ -277,7 +277,7 @@ exception is thrown by the task. The following example shows the three annotations in use: [source,java] ---- +---- public class MyBean { @BeforeTask @@ -292,7 +292,8 @@ The following example shows the three annotations in use: public void methodC(TaskExecution taskExecution, Throwable throwable) { } } ---- +---- + [[features-task-execution-listener-Exceptions]] ==== Exceptions Thrown by Task Execution Listener @@ -358,7 +359,6 @@ To use this feature, you must add the following Spring Integration dependencies application: [source,xml] ---- org.springframework.integration spring-integration-core @@ -367,4 +367,3 @@ application: org.springframework.integration spring-integration-jdbc ----