Verify build.log of IT validate
diff --git a/Jenkinsfile b/Jenkinsfile
index a915d0f..81caf8c 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -17,4 +17,4 @@
  * under the License.
  */
 
-asfMavenTlpPlgnBuild(jdk:['8','11'], maven:['3.0.x', '3.2.x', '3.3.x', '3.5.x'])
+asfMavenTlpPlgnBuild(jdk:['8','11','12'], maven:['3.0.x', '3.2.x', '3.3.x', '3.5.x'])
diff --git a/src/it/projects/validate/pom.xml b/src/it/projects/validate/pom.xml
index 4f5f3f7..3b42c89 100644
--- a/src/it/projects/validate/pom.xml
+++ b/src/it/projects/validate/pom.xml
@@ -43,13 +43,6 @@
           <validate>true</validate>
           <generateReports>false</generateReports>
         </configuration>
-        <dependencies><!-- TODO remove when prerequisite is Java 7 -->
-          <dependency>
-            <groupId>org.apache.maven.doxia</groupId>
-            <artifactId>doxia-module-markdown</artifactId>
-            <version>1.7</version>
-          </dependency>
-        </dependencies>
       </plugin>
     </plugins>
   </build>
diff --git a/src/it/projects/validate/verify.groovy b/src/it/projects/validate/verify.groovy
new file mode 100644
index 0000000..87087b6
--- /dev/null
+++ b/src/it/projects/validate/verify.groovy
@@ -0,0 +1,22 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+buildlog = new File( basedir, 'build.log' )
+
+assert buildlog.text.contains('BUILD SUCCESS')
\ No newline at end of file