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 2018/12/17 23:22:34 UTC

[sling-whiteboard] branch feature/SLING-7245 created (now 5de10e1)

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

rombert pushed a change to branch feature/SLING-7245
in repository https://gitbox.apache.org/repos/asf/sling-whiteboard.git.


      at 5de10e1  mdresourceprovider - ignore md files from rat checks

This branch includes the following new commits:

     new 66c16aa  SLING-7245 - Validate pull requests using Jenkins
     new 5de10e1  mdresourceprovider - ignore md files from rat checks

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[sling-whiteboard] 02/02: mdresourceprovider - ignore md files from rat checks

Posted by ro...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

rombert pushed a commit to branch feature/SLING-7245
in repository https://gitbox.apache.org/repos/asf/sling-whiteboard.git

commit 5de10e17545eb4341c4226ed2af26a00d0709aa0
Author: Robert Munteanu <ro...@apache.org>
AuthorDate: Tue Dec 18 00:22:05 2018 +0100

    mdresourceprovider - ignore md files from rat checks
---
 mdresourceprovider/pom.xml | 11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/mdresourceprovider/pom.xml b/mdresourceprovider/pom.xml
index 91e353a..8a8ec16 100644
--- a/mdresourceprovider/pom.xml
+++ b/mdresourceprovider/pom.xml
@@ -38,6 +38,15 @@
                     </execution>
                 </executions>
             </plugin>
+            <plugin>
+                <groupId>org.apache.rat</groupId>
+                <artifactId>apache-rat-plugin</artifactId>
+                <configuration>
+                    <excludes>
+                        <exclude>**/*.md</exclude>
+                    </excludes>
+                </configuration>
+            </plugin>
         </plugins>
     </build>
 
@@ -98,4 +107,4 @@
     <properties>
         <sling.java.version>8</sling.java.version>
     </properties>
-</project>
\ No newline at end of file
+</project>


[sling-whiteboard] 01/02: SLING-7245 - Validate pull requests using Jenkins

Posted by ro...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

rombert pushed a commit to branch feature/SLING-7245
in repository https://gitbox.apache.org/repos/asf/sling-whiteboard.git

commit 66c16aa84eab16d79018731c027d627674e67b0d
Author: Robert Munteanu <ro...@apache.org>
AuthorDate: Tue Dec 18 00:06:40 2018 +0100

    SLING-7245 - Validate pull requests using Jenkins
    
    Switch to using the shared pipeline
---
 Jenkinsfile | 21 +--------------------
 1 file changed, 1 insertion(+), 20 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 38426cc..d86168a 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -1,20 +1 @@
-pipeline {
-    agent {
-        label 'ubuntu'
-    }
-
-    tools {
-        maven 'Maven 3.3.9'
-        jdk 'JDK 1.8 (latest)'
-    }
-
-    stages {
-        stage ('Build') {
-            steps {
-                dir('mdresourceprovider') {
-                    sh 'mvn clean install' 
-                }
-            }
-        }
-    }
-}
\ No newline at end of file
+slingOsgiBundleBuild('moduleDir': 'mdResourceProvider')
\ No newline at end of file