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/04/19 15:54:27 UTC

[sling-ide-tooling] branch master updated (2d4283d -> fd21ba5)

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

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


    from 2d4283d  SLING-7587 - Create a CLI-only tool to sync content
     new 4585669  cli: assemble-app.sh now consults the remote repositories as well
     new fd21ba5  cli: cleanup feature

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.


Summary of changes:
 cli/dist/assemble-app.sh       |  2 +-
 cli/dist/features/clisync.json | 32 ++++++++++++++++++--------------
 2 files changed, 19 insertions(+), 15 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
rombert@apache.org.

[sling-ide-tooling] 01/02: cli: assemble-app.sh now consults the remote repositories as well

Posted by ro...@apache.org.
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-ide-tooling.git

commit 458566968cb8cf6c1e7069118ab77e223478a4b0
Author: Robert Munteanu <ro...@apache.org>
AuthorDate: Thu Apr 19 18:53:33 2018 +0300

    cli: assemble-app.sh now consults the remote repositories as well
---
 cli/dist/assemble-app.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cli/dist/assemble-app.sh b/cli/dist/assemble-app.sh
index e869306..b596c29 100755
--- a/cli/dist/assemble-app.sh
+++ b/cli/dist/assemble-app.sh
@@ -2,4 +2,4 @@
 
 rm -rf felix-cache launcher
 
-java -cp  ../../../whiteboard/featuremodel/feature-applicationbuilder/target/org.apache.sling.feature.applicationbuilder-0.0.1-SNAPSHOT.jar:${HOME}/.m2/repository/org/apache/felix/org.apache.felix.framework/5.6.8/org.apache.felix.framework-5.6.8.jar   org.apache.sling.feature.applicationbuilder.impl.Main   -d features/   -u file://${HOME}/.m2/repository   -o sling.json
+java -cp  ../../../whiteboard/featuremodel/feature-applicationbuilder/target/org.apache.sling.feature.applicationbuilder-0.0.1-SNAPSHOT.jar:${HOME}/.m2/repository/org/apache/felix/org.apache.felix.framework/5.6.8/org.apache.felix.framework-5.6.8.jar   org.apache.sling.feature.applicationbuilder.impl.Main   -d features/   -u file://${HOME}/.m2/repository,https://repo1.maven.org/maven2/   -o sling.json

-- 
To stop receiving notification emails like this one, please contact
rombert@apache.org.

[sling-ide-tooling] 02/02: cli: cleanup feature

Posted by ro...@apache.org.
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-ide-tooling.git

commit fd21ba5bf5c8d576bf02812a833814b5692d235c
Author: Robert Munteanu <ro...@apache.org>
AuthorDate: Thu Apr 19 18:54:00 2018 +0300

    cli: cleanup feature
    
    - use variables for versions
    - update to latest versions of dependencies
---
 cli/dist/features/clisync.json | 32 ++++++++++++++++++--------------
 1 file changed, 18 insertions(+), 14 deletions(-)

diff --git a/cli/dist/features/clisync.json b/cli/dist/features/clisync.json
index deca724..27b5b86 100644
--- a/cli/dist/features/clisync.json
+++ b/cli/dist/features/clisync.json
@@ -1,33 +1,37 @@
 {
 	"id": "org.apache.sling.ide/org.apache.sling.ide.cli-dist/1.0.0",
+	"variables": {
+		"ide.version": "1.2.3-SNAPSHOT",
+		"slf4j.version": "1.7.25"
+	},
 	"framework-properties": {
 		"felix.fileinstall.dir": "cfg"
 	},
 	"bundles": [
 		"org.apache.felix/org.apache.felix.eventadmin/1.4.10",
-		"org.apache.felix/org.apache.felix.fileinstall/3.6.0",
+		"org.apache.felix/org.apache.felix.fileinstall/3.6.4",
 		"org.apache.felix/org.apache.felix.configadmin/1.8.16/",
-		"org.slf4j/slf4j-api/1.7.25",
-		"org.slf4j/slf4j-simple/1.7.25",
-		"org.slf4j/jcl-over-slf4j/1.7.25",
-		"org.apache.felix/org.apache.felix.scr/2.0.12",
-		"org.apache.sling.ide/org.apache.sling.ide.api/1.2.3-SNAPSHOT",
-		"org.apache.sling.ide/org.apache.sling.ide.impl-vlt/1.2.3-SNAPSHOT",
-		"org.apache.sling.ide/org.apache.sling.ide.sync-fs/1.2.3-SNAPSHOT",
-		"org.apache.sling.ide/org.apache.sling.ide.cli/1.2.3-SNAPSHOT",
-		"org.apache.sling.ide/org.apache.sling.ide.vlt-wrapper/1.2.3-SNAPSHOT",
+		"org.slf4j/slf4j-api/${slf4j.version}",
+		"org.slf4j/slf4j-simple/${slf4j.version}",
+		"org.slf4j/jcl-over-slf4j/${slf4j.version}",
+		"org.apache.felix/org.apache.felix.scr/2.0.14",
+		"org.apache.sling.ide/org.apache.sling.ide.api/${ide.version}",
+		"org.apache.sling.ide/org.apache.sling.ide.impl-vlt/${ide.version}",
+		"org.apache.sling.ide/org.apache.sling.ide.sync-fs/${ide.version}",
+		"org.apache.sling.ide/org.apache.sling.ide.cli/${ide.version}",
+		"org.apache.sling.ide/org.apache.sling.ide.vlt-wrapper/${ide.version}",
 		"javax.servlet/javax.servlet-api/3.1.0",
 		"commons-collections/commons-collections/3.2.2",
 		"org.apache.sling/org.apache.sling.fragment.xml/1.0.2",
 		"org.apache.geronimo.bundles/commons-httpclient/3.1_2",
 		"commons-codec/commons-codec/1.11",
-		"com.google.code.gson/gson/2.2.4",
+		"com.google.code.gson/gson/2.8.2",
 		"commons-io/commons-io/2.6",
 		"org.apache.felix/org.apache.felix.gogo.command/1.0.2",
-		"org.apache.felix/org.apache.felix.gogo.runtime/1.0.6",
-		"org.apache.felix/org.apache.felix.gogo.jline/1.0.0",
+		"org.apache.felix/org.apache.felix.gogo.runtime/1.0.12",
+		"org.apache.felix/org.apache.felix.gogo.jline/1.0.12",
 		"org.apache.felix/org.apache.felix.gogo.shell/1.0.0",
-		"org.jline/jline/3.0.1",
+		"org.jline/jline/3.7.0",
 		"org.apache.geronimo.specs/geronimo-atinject_1.0_spec/1.0"
 	]
 }
\ No newline at end of file

-- 
To stop receiving notification emails like this one, please contact
rombert@apache.org.