You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ro...@apache.org on 2017/10/17 10:42:49 UTC

[sling-site] branch master updated: Add Jenkinsfile to enable testing PR integration

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

rombert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-site.git


The following commit(s) were added to refs/heads/master by this push:
     new 762ffc3  Add Jenkinsfile to enable testing PR integration
762ffc3 is described below

commit 762ffc330637cba884d9e5251ba5f710643d3d41
Author: Robert Munteanu <ro...@apache.org>
AuthorDate: Tue Oct 17 13:42:19 2017 +0300

    Add Jenkinsfile to enable testing PR integration
---
 Jenkinsfile | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

diff --git a/Jenkinsfile b/Jenkinsfile
new file mode 100644
index 0000000..3fa126d
--- /dev/null
+++ b/Jenkinsfile
@@ -0,0 +1,17 @@
+pipeline {
+    agent {
+        label 'ubuntu'
+    }
+
+    tools {
+        maven 'Maven 3.3.9'
+        jdk 'jdk8'
+    }
+    stages {
+        stage ('Build') {
+            steps {
+                sh 'mvn clean package' 
+            }
+        }
+    }
+}

-- 
To stop receiving notification emails like this one, please contact
['"commits@sling.apache.org" <co...@sling.apache.org>'].