You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by rf...@apache.org on 2019/04/19 08:46:29 UTC

[maven-site-plugin] branch stabilize created (now 37b30d2)

This is an automated email from the ASF dual-hosted git repository.

rfscholte pushed a change to branch stabilize
in repository https://gitbox.apache.org/repos/asf/maven-site-plugin.git.


      at 37b30d2  Verify build.log of IT validate

This branch includes the following new commits:

     new 37b30d2  Verify build.log of IT validate

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[maven-site-plugin] 01/01: Verify build.log of IT validate

Posted by rf...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

rfscholte pushed a commit to branch stabilize
in repository https://gitbox.apache.org/repos/asf/maven-site-plugin.git

commit 37b30d27aa1d2418b140eab77f2a1d4e1115543d
Author: rfscholte <rf...@apache.org>
AuthorDate: Fri Apr 19 10:46:21 2019 +0200

    Verify build.log of IT validate
---
 src/it/projects/validate/pom.xml       |  7 -------
 src/it/projects/validate/verify.groovy | 22 ++++++++++++++++++++++
 2 files changed, 22 insertions(+), 7 deletions(-)

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 @@ under the License.
           <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..e70064f
--- /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, 'buildlog' )
+
+assert buildlog.text.contains('BUILD SUCCESS')
\ No newline at end of file