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 2013/02/15 22:00:36 UTC

svn commit: r1446764 - in /maven/plugins/trunk/maven-help-plugin/src/it/all-profiles: invoker.properties verify.groovy

Author: rfscholte
Date: Fri Feb 15 21:00:36 2013
New Revision: 1446764

URL: http://svn.apache.org/r1446764
Log:
Add verification script

Added:
    maven/plugins/trunk/maven-help-plugin/src/it/all-profiles/verify.groovy
Modified:
    maven/plugins/trunk/maven-help-plugin/src/it/all-profiles/invoker.properties

Modified: maven/plugins/trunk/maven-help-plugin/src/it/all-profiles/invoker.properties
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-help-plugin/src/it/all-profiles/invoker.properties?rev=1446764&r1=1446763&r2=1446764&view=diff
==============================================================================
--- maven/plugins/trunk/maven-help-plugin/src/it/all-profiles/invoker.properties (original)
+++ maven/plugins/trunk/maven-help-plugin/src/it/all-profiles/invoker.properties Fri Feb 15 21:00:36 2013
@@ -1 +1,2 @@
 invoker.goals = ${project.groupId}:${project.artifactId}:${project.version}:all-profiles
+invoker.maven.version = 3.0-, 3.0.4+

Added: maven/plugins/trunk/maven-help-plugin/src/it/all-profiles/verify.groovy
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-help-plugin/src/it/all-profiles/verify.groovy?rev=1446764&view=auto
==============================================================================
--- maven/plugins/trunk/maven-help-plugin/src/it/all-profiles/verify.groovy (added)
+++ maven/plugins/trunk/maven-help-plugin/src/it/all-profiles/verify.groovy Fri Feb 15 21:00:36 2013
@@ -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.
+ */
+def buildLog = new File( basedir, 'build.log' ); 
+assert buildLog.exists()
+
+assert buildLog.text.contains( '  Profile Id: it-repo (Active: true , Source: settings.xml)' )