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

martin_s pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/archiva-redback-components-parent.git


The following commit(s) were added to refs/heads/master by this push:
     new a39c3ae  Adding Jenkins Pipeline file
a39c3ae is described below

commit a39c3aee686308aea18268805dc3399c4300ba40
Author: Martin Stockhammer <m.stockham...@web.de>
AuthorDate: Sun Apr 15 19:43:39 2018 +0200

    Adding Jenkins Pipeline file
---
 Jenkinsfile | 38 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 38 insertions(+)

diff --git a/Jenkinsfile b/Jenkinsfile
new file mode 100644
index 0000000..e4b9cb2
--- /dev/null
+++ b/Jenkinsfile
@@ -0,0 +1,38 @@
+/*
+ * 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.
+ */
+/**
+ *
+ *
+ * Jenkins Pipeline configuration.
+ *
+ */
+node {
+    stage ('Build') {
+
+        git url: 
'https://gitbox.apache.org/repos/asf/archiva-redback-components-parent.git'
+
+        withMaven(
+                // Maven installation declared in the Jenkins "Global Tool 
Configuration"
+                maven: 'Maven 3.5.2') {
+            // Run the maven build
+            sh "mvn clean install -B -U -e -fae -Dmaven.compiler.fork=false 
-Pci-build"
+
+        } // withMaven will discover the generated Maven artifacts, JUnit 
Surefire & FailSafe & FindBugs reports...
+    }
+}
\ No newline at end of file

-- 
To stop receiving notification emails like this one, please contact
marti...@apache.org.

Reply via email to