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 2019/03/20 15:00:18 UTC

[sling-tooling-scm] 09/35: SLING-3987 - move from Subversion to Git

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-tooling-scm.git

commit 7bf2acb1eb88829ba659ad00ac20fb62604b948e
Author: Robert Munteanu <ro...@apache.org>
AuthorDate: Thu Sep 28 18:33:20 2017 +0000

    SLING-3987 - move from Subversion to Git
    
    Create standalone modules for performance (modules must be executed
    together) and samples ( for easier discoverability )
    
    git-svn-id: https://svn.apache.org/repos/asf/sling/trunk@1810024 13f79535-47bb-0310-9956-ffa450edef68
---
 scripts/gen-repo-candidates.sh | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/scripts/gen-repo-candidates.sh b/scripts/gen-repo-candidates.sh
index a1c4fb9..22d6cc3 100755
--- a/scripts/gen-repo-candidates.sh
+++ b/scripts/gen-repo-candidates.sh
@@ -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"