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/09/28 18:33:20 UTC

svn commit: r1810024 - /sling/trunk/tooling/scm/scripts/gen-repo-candidates.sh

Author: rombert
Date: Thu Sep 28 18:33:20 2017
New Revision: 1810024

URL: http://svn.apache.org/viewvc?rev=1810024&view=rev
Log:
SLING-3987 - move from Subversion to Git

Create standalone modules for performance (modules must be executed
together) and samples ( for easier discoverability )

Modified:
    sling/trunk/tooling/scm/scripts/gen-repo-candidates.sh

Modified: sling/trunk/tooling/scm/scripts/gen-repo-candidates.sh
URL: http://svn.apache.org/viewvc/sling/trunk/tooling/scm/scripts/gen-repo-candidates.sh?rev=1810024&r1=1810023&r2=1810024&view=diff
==============================================================================
--- sling/trunk/tooling/scm/scripts/gen-repo-candidates.sh (original)
+++ sling/trunk/tooling/scm/scripts/gen-repo-candidates.sh Thu Sep 28 18:33:20 2017
@@ -24,6 +24,8 @@ fi
 
 for pom in $(find . -name pom.xml  \
     | grep -v './tooling/ide' \
+    | grep -v './performance' \
+    | grep -v './samples' \
     | grep -v '/target/' \
     | grep -v '/archetype-resources/' \
     | grep -v '/src/test/resources/' \
@@ -41,4 +43,7 @@ for pom in $(find . -name pom.xml  \
     echo $pom
 done
 
-echo "tooling/ide" # by exception, this will be a standalone module
+# by exception, these will be standalone modules
+echo "tooling/ide"
+echo "samples"
+echo "performance"