Hi Jamie, You can checkout the release build from [1] and follow the installation steps [2].
Or for a quick test which assumes you have a OSGi runtime with Felix WebConsole running at http://localhost:8080/system/console 1. Deploy the plugin bundle (staged build) from https://repository.apache.org/content/repositories/orgapachefelix-001/org/apache/felix/org.apache.felix.webconsole.plugins.scriptconsole/1.0.0/org.apache.felix.webconsole.plugins.scriptconsole-1.0.0.jar 2. Deploy Groovy bundle from http://repo1.maven.org/maven2/org/codehaus/groovy/groovy-all/2.1.6/groovy-all-2.1.6.jar 3. Access http://localhost:8080/system/console/sc 4. Execute the following script import org.osgi.service.http.HttpService import org.osgi.framework.FrameworkUtil import org.osgi.framework.Bundle def httpService = osgi.getService(HttpService.class) httpService.handlerRegistry.aliasMap.each{alias,servlet -> Bundle bnd = FrameworkUtil.getBundle(servlet.class) println "$alias : ${servlet.class.name} ($bnd.symbolicName)" } Or any scripts from [3] [1] https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.webconsole.plugins.scriptconsole-1.0.0/ [2] http://felix.apache.org/documentation/subprojects/apache-felix-script-console-plugin.html#installation [3] http://felix.apache.org/documentation/subprojects/apache-felix-script-console-plugin.html#sample-scripts Chetan Mehrotra On Wed, Jul 24, 2013 at 11:25 PM, Jamie G. <[email protected]> wrote: > Ran the check staged repo scripts, things looked ok. > > Do you have a link to the tag so i can source build test? > > > On Mon, Jul 22, 2013 at 12:28 PM, Chetan Mehrotra <[email protected] >> wrote: > >> I would like to call a vote on the initial release of the Apache Felix >> Script Console Plugin. For details on how to use it refer to >> >> http://felix.apache.org/documentation/subprojects/apache-felix-script-console-plugin.html >> >> Staging repository: >> https://repository.apache.org/content/repositories/orgapachefelix-001/ >> >> You can use this UNIX script to download the release and verify the >> signatures: >> http://svn.apache.org/repos/asf/felix/trunk/check_staged_release.sh >> >> Usage: >> sh check_staged_release.sh 001 /tmp/felix-staging >> >> Please vote to approve this release: >> >> [ ] +1 Approve the release >> [ ] -1 Veto the release (please provide specific comments) >> >> Initial Release 1.0.0 >> --------------------- >> >> ** Improvement >> * [FELIX-4122] - Felix Script Console Plugin. Initial import >> >> Chetan Mehrotra >>
