Repository: maven-resolver
Updated Branches:
  refs/heads/jenkinsfile dafc4bcaf -> f721684a5 (forced update)


Add Jenkinsfile


Project: http://git-wip-us.apache.org/repos/asf/maven-resolver/repo
Commit: http://git-wip-us.apache.org/repos/asf/maven-resolver/commit/f721684a
Tree: http://git-wip-us.apache.org/repos/asf/maven-resolver/tree/f721684a
Diff: http://git-wip-us.apache.org/repos/asf/maven-resolver/diff/f721684a

Branch: refs/heads/jenkinsfile
Commit: f721684a51baf2dba9f2e3adadf3fb6802c0ae95
Parents: 8bd8c53
Author: Stephen Connolly <stephen.alan.conno...@gmail.com>
Authored: Sun Jan 15 20:41:01 2017 +0000
Committer: Stephen Connolly <stephen.alan.conno...@gmail.com>
Committed: Sun Jan 15 21:02:26 2017 +0000

----------------------------------------------------------------------
 Jenkinsfile | 47 +++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 47 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/maven-resolver/blob/f721684a/Jenkinsfile
----------------------------------------------------------------------
diff --git a/Jenkinsfile b/Jenkinsfile
new file mode 100644
index 0000000..acaba9b
--- /dev/null
+++ b/Jenkinsfile
@@ -0,0 +1,47 @@
+/*
+ * 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.
+ */
+
+properties([buildDiscarder(logRotator(artifactNumToKeepStr: '5', numToKeepStr: 
env.BRANCH_NAME=='master'?'10':'5'))])
+
+node('ubuntu') {
+    try {
+        stage('Checkout') 
+            def MAVEN_BUILD=tool name: 'Maven 3.3.9', type: 
'hudson.tasks.Maven$MavenInstallation'
+            echo "Driving build and unit tests using Maven $MAVEN_BUILD"
+            def JAVA7_HOME=tool name: 'JDK 1.7 (latest)', type: 
'hudson.model.JDK'
+            echo "Running build and unit tests with Java $JAVA7_HOME"
+            dir('build') {
+                deleteDir()
+            }
+            dir('build') {
+                checkout scm
+            }
+        stage('Build/Test')
+            def WORK_DIR=pwd()
+            dir('build') {
+                
withEnv(["PATH+MAVEN=$MAVEN_BUILD/bin","PATH+JDK=$JAVA7_HOME/bin"]) {
+                    sh "mvn clean verify -B -U -e -fae -V 
-Dmaven.test.failure.ignore=true -Dmaven.repo.local=$WORK_DIR/.repository"
+                }
+                junit allowEmptyResults: true, 
testResults:'**/target/*-reports/*.xml'
+                archiveArtifacts allowEmptyArchive: true, artifacts: 
'target/rat.txt'
+            }
+    } finally {
+        emailext body: "See ${env.BUILD_URL}", recipientProviders: [[$class: 
'CulpritsRecipientProvider'], [$class: 'FailingTestSuspectsRecipientProvider'], 
[$class: 'FirstFailingBuildSuspectsRecipientProvider']], replyTo: 
'd...@maven.apache.org', subject: "Maven Resolver Jenkinsfile finished with 
${currentBuild.result}", to: 'notificati...@maven.apache.org'
+    }
+}

Reply via email to