hboutemy commented on a change in pull request #11:
URL: https://github.com/apache/maven-verifier/pull/11#discussion_r825470984



##########
File path: src/site/markdown/index.md
##########
@@ -0,0 +1,24 @@
+<!--
+#
+# 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.
+#
+-->
+
+# About Apache Verifier Maven Component
+
+Provides a test harness for Maven integration tests. This is a library which 
can be used in own Java-based integration tests. Look at the [Getting Started 
guide](./getting-started.html) for more information on how to use it.
+
+More complex example usages can be found in the integration tests of [Apache 
Maven](https://github.com/apache/maven-integration-testing). 

Review comment:
       the integration tests of [Apache 
Maven](https://github.com/apache/maven-integration-testing
   =>
   the [different integration 
tests](https://github.com/apache/maven-integration-testing/tree/master/core-it-suite/src/test/java/org/apache/maven/it)
 of [Maven Core Integration 
Tests](https://github.com/apache/maven-integration-testing)

##########
File path: src/site/markdown/getting-started.md
##########
@@ -0,0 +1,133 @@
+<!--
+#
+# 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.
+#
+-->
+
+# Getting Started
+
+## Overview
+
+Using the `Verifier` consists out of three different phases
+
+1. Configure
+2. Run
+3. Verify
+
+## Configure
+
+The `Verifier` instance is constructed in the simplest case with just one 
argument taking the path name of the base directory containing the `pom.xml` of 
the project you want to build.
+
+```
+String baseDir = ...
+Verifier verifier = new Verifier( baseDir );
+```
+
+The configuration can be further tweaked with additional setter methods and/or 
constructors taking more parameters.
+
+### System Properties
+
+The following systen properties/environment variables are evaluated. None of 
them are required and in most cases the same behavior can also be achieved 
through constructor or setter method programmatically.

Review comment:
       s/systen/system/

##########
File path: src/site/markdown/index.md
##########
@@ -0,0 +1,24 @@
+<!--
+#
+# 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.
+#
+-->
+
+# About Apache Verifier Maven Component

Review comment:
       Apache Maven Verifier :)




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@maven.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Reply via email to