Copied: servicemix/smx4/kernel/trunk/gshell/gshell-features/src/main/java/org/apache/servicemix/kernel/gshell/features/commands/RemoveUrlCommand.java (from r707428, servicemix/smx4/kernel/trunk/gshell/gshell-features/src/main/java/org/apache/servicemix/kernel/gshell/features/internal/commands/RemoveUrlCommand.java) URL: http://svn.apache.org/viewvc/servicemix/smx4/kernel/trunk/gshell/gshell-features/src/main/java/org/apache/servicemix/kernel/gshell/features/commands/RemoveUrlCommand.java?p2=servicemix/smx4/kernel/trunk/gshell/gshell-features/src/main/java/org/apache/servicemix/kernel/gshell/features/commands/RemoveUrlCommand.java&p1=servicemix/smx4/kernel/trunk/gshell/gshell-features/src/main/java/org/apache/servicemix/kernel/gshell/features/internal/commands/RemoveUrlCommand.java&r1=707428&r2=707430&rev=707430&view=diff ============================================================================== --- servicemix/smx4/kernel/trunk/gshell/gshell-features/src/main/java/org/apache/servicemix/kernel/gshell/features/internal/commands/RemoveUrlCommand.java (original) +++ servicemix/smx4/kernel/trunk/gshell/gshell-features/src/main/java/org/apache/servicemix/kernel/gshell/features/commands/RemoveUrlCommand.java Thu Oct 23 11:04:50 2008 @@ -14,7 +14,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.servicemix.kernel.gshell.features.internal.commands; +package org.apache.servicemix.kernel.gshell.features.commands; import java.util.List; import java.net.URI;
Copied: servicemix/smx4/kernel/trunk/gshell/gshell-features/src/main/java/org/apache/servicemix/kernel/gshell/features/commands/UninstallFeatureCommand.java (from r707428, servicemix/smx4/kernel/trunk/gshell/gshell-features/src/main/java/org/apache/servicemix/kernel/gshell/features/internal/commands/UninstallFeatureCommand.java) URL: http://svn.apache.org/viewvc/servicemix/smx4/kernel/trunk/gshell/gshell-features/src/main/java/org/apache/servicemix/kernel/gshell/features/commands/UninstallFeatureCommand.java?p2=servicemix/smx4/kernel/trunk/gshell/gshell-features/src/main/java/org/apache/servicemix/kernel/gshell/features/commands/UninstallFeatureCommand.java&p1=servicemix/smx4/kernel/trunk/gshell/gshell-features/src/main/java/org/apache/servicemix/kernel/gshell/features/internal/commands/UninstallFeatureCommand.java&r1=707428&r2=707430&rev=707430&view=diff ============================================================================== --- servicemix/smx4/kernel/trunk/gshell/gshell-features/src/main/java/org/apache/servicemix/kernel/gshell/features/internal/commands/UninstallFeatureCommand.java (original) +++ servicemix/smx4/kernel/trunk/gshell/gshell-features/src/main/java/org/apache/servicemix/kernel/gshell/features/commands/UninstallFeatureCommand.java Thu Oct 23 11:04:50 2008 @@ -14,10 +14,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.servicemix.kernel.gshell.features.internal.commands; - -import java.util.List; -import java.net.URL; +package org.apache.servicemix.kernel.gshell.features.commands; import org.apache.geronimo.gshell.clp.Argument; import org.apache.servicemix.kernel.gshell.features.FeaturesService; Modified: servicemix/smx4/kernel/trunk/gshell/gshell-features/src/main/resources/META-INF/spring/gshell-features.xml URL: http://svn.apache.org/viewvc/servicemix/smx4/kernel/trunk/gshell/gshell-features/src/main/resources/META-INF/spring/gshell-features.xml?rev=707430&r1=707429&r2=707430&view=diff ============================================================================== --- servicemix/smx4/kernel/trunk/gshell/gshell-features/src/main/resources/META-INF/spring/gshell-features.xml (original) +++ servicemix/smx4/kernel/trunk/gshell/gshell-features/src/main/resources/META-INF/spring/gshell-features.xml Thu Oct 23 11:04:50 2008 @@ -39,25 +39,25 @@ <gshell:command-bundle> <gshell:command name="features/addUrl"> - <gshell:action class="org.apache.servicemix.kernel.gshell.features.internal.commands.AddUrlCommand" /> + <gshell:action class="org.apache.servicemix.kernel.gshell.features.commands.AddUrlCommand" /> </gshell:command> <gshell:command name="features/listUrl"> - <gshell:action class="org.apache.servicemix.kernel.gshell.features.internal.commands.ListUrlCommand" /> + <gshell:action class="org.apache.servicemix.kernel.gshell.features.commands.ListUrlCommand" /> </gshell:command> <gshell:command name="features/remoteUrl"> - <gshell:action class="org.apache.servicemix.kernel.gshell.features.internal.commands.RemoveUrlCommand" /> + <gshell:action class="org.apache.servicemix.kernel.gshell.features.commands.RemoveUrlCommand" /> </gshell:command> <gshell:command name="features/refreshUrl"> - <gshell:action class="org.apache.servicemix.kernel.gshell.features.internal.commands.RefreshUrlCommand" /> + <gshell:action class="org.apache.servicemix.kernel.gshell.features.commands.RefreshUrlCommand" /> </gshell:command> <gshell:command name="features/install"> - <gshell:action class="org.apache.servicemix.kernel.gshell.features.internal.commands.InstallFeatureCommand" /> + <gshell:action class="org.apache.servicemix.kernel.gshell.features.commands.InstallFeatureCommand" /> </gshell:command> <gshell:command name="features/uninstall"> - <gshell:action class="org.apache.servicemix.kernel.gshell.features.internal.commands.UninstallFeatureCommand" /> + <gshell:action class="org.apache.servicemix.kernel.gshell.features.commands.UninstallFeatureCommand" /> </gshell:command> <gshell:command name="features/listFeatures"> - <gshell:action class="org.apache.servicemix.kernel.gshell.features.internal.commands.ListFeaturesCommand" /> + <gshell:action class="org.apache.servicemix.kernel.gshell.features.commands.ListFeaturesCommand" /> </gshell:command> </gshell:command-bundle> Added: servicemix/smx4/kernel/trunk/gshell/gshell-features/src/main/resources/org/apache/servicemix/kernel/gshell/features/commands/AddUrlCommand.properties URL: http://svn.apache.org/viewvc/servicemix/smx4/kernel/trunk/gshell/gshell-features/src/main/resources/org/apache/servicemix/kernel/gshell/features/commands/AddUrlCommand.properties?rev=707430&view=auto ============================================================================== --- servicemix/smx4/kernel/trunk/gshell/gshell-features/src/main/resources/org/apache/servicemix/kernel/gshell/features/commands/AddUrlCommand.properties (added) +++ servicemix/smx4/kernel/trunk/gshell/gshell-features/src/main/resources/org/apache/servicemix/kernel/gshell/features/commands/AddUrlCommand.properties Thu Oct 23 11:04:50 2008 @@ -0,0 +1,27 @@ +## +## Licensed to the Apache Software Foundation (ASF) under one +## or more contributor license agreements. See the NOTICE file +## distributed with this work for additional information +## regarding copyright ownership. The ASF licenses this file +## to you under the Apache License, Version 2.0 (the +## "License"); you may not use this file except in compliance +## with the License. You may obtain a copy of the License at +## +## http://www.apache.org/licenses/LICENSE-2.0 +## +## Unless required by applicable law or agreed to in writing, +## software distributed under the License is distributed on an +## "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +## KIND, either express or implied. See the License for the +## specific language governing permissions and limitations +## under the License. +## + +## +## $Rev: 703511 $ $Date: 2008-10-10 18:07:36 +0200 (Fri, 10 Oct 2008) $ +## + +command.description=Add a list of repository URLs to the features service. + +command.manual=\ + TODO: date manual \ No newline at end of file Added: servicemix/smx4/kernel/trunk/gshell/gshell-features/src/main/resources/org/apache/servicemix/kernel/gshell/features/commands/InstallFeatureCommand.properties URL: http://svn.apache.org/viewvc/servicemix/smx4/kernel/trunk/gshell/gshell-features/src/main/resources/org/apache/servicemix/kernel/gshell/features/commands/InstallFeatureCommand.properties?rev=707430&view=auto ============================================================================== --- servicemix/smx4/kernel/trunk/gshell/gshell-features/src/main/resources/org/apache/servicemix/kernel/gshell/features/commands/InstallFeatureCommand.properties (added) +++ servicemix/smx4/kernel/trunk/gshell/gshell-features/src/main/resources/org/apache/servicemix/kernel/gshell/features/commands/InstallFeatureCommand.properties Thu Oct 23 11:04:50 2008 @@ -0,0 +1,27 @@ +## +## Licensed to the Apache Software Foundation (ASF) under one +## or more contributor license agreements. See the NOTICE file +## distributed with this work for additional information +## regarding copyright ownership. The ASF licenses this file +## to you under the Apache License, Version 2.0 (the +## "License"); you may not use this file except in compliance +## with the License. You may obtain a copy of the License at +## +## http://www.apache.org/licenses/LICENSE-2.0 +## +## Unless required by applicable law or agreed to in writing, +## software distributed under the License is distributed on an +## "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +## KIND, either express or implied. See the License for the +## specific language governing permissions and limitations +## under the License. +## + +## +## $Rev: 703511 $ $Date: 2008-10-10 18:07:36 +0200 (Fri, 10 Oct 2008) $ +## + +command.description=Install a feature. + +command.manual=\ + TODO: date manual \ No newline at end of file Added: servicemix/smx4/kernel/trunk/gshell/gshell-features/src/main/resources/org/apache/servicemix/kernel/gshell/features/commands/ListFeaturesCommand.properties URL: http://svn.apache.org/viewvc/servicemix/smx4/kernel/trunk/gshell/gshell-features/src/main/resources/org/apache/servicemix/kernel/gshell/features/commands/ListFeaturesCommand.properties?rev=707430&view=auto ============================================================================== --- servicemix/smx4/kernel/trunk/gshell/gshell-features/src/main/resources/org/apache/servicemix/kernel/gshell/features/commands/ListFeaturesCommand.properties (added) +++ servicemix/smx4/kernel/trunk/gshell/gshell-features/src/main/resources/org/apache/servicemix/kernel/gshell/features/commands/ListFeaturesCommand.properties Thu Oct 23 11:04:50 2008 @@ -0,0 +1,27 @@ +## +## Licensed to the Apache Software Foundation (ASF) under one +## or more contributor license agreements. See the NOTICE file +## distributed with this work for additional information +## regarding copyright ownership. The ASF licenses this file +## to you under the Apache License, Version 2.0 (the +## "License"); you may not use this file except in compliance +## with the License. You may obtain a copy of the License at +## +## http://www.apache.org/licenses/LICENSE-2.0 +## +## Unless required by applicable law or agreed to in writing, +## software distributed under the License is distributed on an +## "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +## KIND, either express or implied. See the License for the +## specific language governing permissions and limitations +## under the License. +## + +## +## $Rev: 703511 $ $Date: 2008-10-10 18:07:36 +0200 (Fri, 10 Oct 2008) $ +## + +command.description=List existing features. + +command.manual=\ + TODO: date manual \ No newline at end of file Added: servicemix/smx4/kernel/trunk/gshell/gshell-features/src/main/resources/org/apache/servicemix/kernel/gshell/features/commands/ListUrlCommand.properties URL: http://svn.apache.org/viewvc/servicemix/smx4/kernel/trunk/gshell/gshell-features/src/main/resources/org/apache/servicemix/kernel/gshell/features/commands/ListUrlCommand.properties?rev=707430&view=auto ============================================================================== --- servicemix/smx4/kernel/trunk/gshell/gshell-features/src/main/resources/org/apache/servicemix/kernel/gshell/features/commands/ListUrlCommand.properties (added) +++ servicemix/smx4/kernel/trunk/gshell/gshell-features/src/main/resources/org/apache/servicemix/kernel/gshell/features/commands/ListUrlCommand.properties Thu Oct 23 11:04:50 2008 @@ -0,0 +1,27 @@ +## +## Licensed to the Apache Software Foundation (ASF) under one +## or more contributor license agreements. See the NOTICE file +## distributed with this work for additional information +## regarding copyright ownership. The ASF licenses this file +## to you under the Apache License, Version 2.0 (the +## "License"); you may not use this file except in compliance +## with the License. You may obtain a copy of the License at +## +## http://www.apache.org/licenses/LICENSE-2.0 +## +## Unless required by applicable law or agreed to in writing, +## software distributed under the License is distributed on an +## "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +## KIND, either express or implied. See the License for the +## specific language governing permissions and limitations +## under the License. +## + +## +## $Rev: 703511 $ $Date: 2008-10-10 18:07:36 +0200 (Fri, 10 Oct 2008) $ +## + +command.description=Display the repository URLs currently associated with the features service. + +command.manual=\ + TODO: date manual \ No newline at end of file Added: servicemix/smx4/kernel/trunk/gshell/gshell-features/src/main/resources/org/apache/servicemix/kernel/gshell/features/commands/RefreshUrlCommand.properties URL: http://svn.apache.org/viewvc/servicemix/smx4/kernel/trunk/gshell/gshell-features/src/main/resources/org/apache/servicemix/kernel/gshell/features/commands/RefreshUrlCommand.properties?rev=707430&view=auto ============================================================================== --- servicemix/smx4/kernel/trunk/gshell/gshell-features/src/main/resources/org/apache/servicemix/kernel/gshell/features/commands/RefreshUrlCommand.properties (added) +++ servicemix/smx4/kernel/trunk/gshell/gshell-features/src/main/resources/org/apache/servicemix/kernel/gshell/features/commands/RefreshUrlCommand.properties Thu Oct 23 11:04:50 2008 @@ -0,0 +1,27 @@ +## +## Licensed to the Apache Software Foundation (ASF) under one +## or more contributor license agreements. See the NOTICE file +## distributed with this work for additional information +## regarding copyright ownership. The ASF licenses this file +## to you under the Apache License, Version 2.0 (the +## "License"); you may not use this file except in compliance +## with the License. You may obtain a copy of the License at +## +## http://www.apache.org/licenses/LICENSE-2.0 +## +## Unless required by applicable law or agreed to in writing, +## software distributed under the License is distributed on an +## "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +## KIND, either express or implied. See the License for the +## specific language governing permissions and limitations +## under the License. +## + +## +## $Rev: 703511 $ $Date: 2008-10-10 18:07:36 +0200 (Fri, 10 Oct 2008) $ +## + +command.description=Reload the repositories to obtain a fresh list of features. + +command.manual=\ + TODO: date manual \ No newline at end of file Added: servicemix/smx4/kernel/trunk/gshell/gshell-features/src/main/resources/org/apache/servicemix/kernel/gshell/features/commands/RemoveUrlCommand.properties URL: http://svn.apache.org/viewvc/servicemix/smx4/kernel/trunk/gshell/gshell-features/src/main/resources/org/apache/servicemix/kernel/gshell/features/commands/RemoveUrlCommand.properties?rev=707430&view=auto ============================================================================== --- servicemix/smx4/kernel/trunk/gshell/gshell-features/src/main/resources/org/apache/servicemix/kernel/gshell/features/commands/RemoveUrlCommand.properties (added) +++ servicemix/smx4/kernel/trunk/gshell/gshell-features/src/main/resources/org/apache/servicemix/kernel/gshell/features/commands/RemoveUrlCommand.properties Thu Oct 23 11:04:50 2008 @@ -0,0 +1,27 @@ +## +## Licensed to the Apache Software Foundation (ASF) under one +## or more contributor license agreements. See the NOTICE file +## distributed with this work for additional information +## regarding copyright ownership. The ASF licenses this file +## to you under the Apache License, Version 2.0 (the +## "License"); you may not use this file except in compliance +## with the License. You may obtain a copy of the License at +## +## http://www.apache.org/licenses/LICENSE-2.0 +## +## Unless required by applicable law or agreed to in writing, +## software distributed under the License is distributed on an +## "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +## KIND, either express or implied. See the License for the +## specific language governing permissions and limitations +## under the License. +## + +## +## $Rev: 703511 $ $Date: 2008-10-10 18:07:36 +0200 (Fri, 10 Oct 2008) $ +## + +command.description=Remove a list of repository URLs from the features service. + +command.manual=\ + TODO: date manual \ No newline at end of file Added: servicemix/smx4/kernel/trunk/gshell/gshell-features/src/main/resources/org/apache/servicemix/kernel/gshell/features/commands/UninstallFeatureCommand.properties URL: http://svn.apache.org/viewvc/servicemix/smx4/kernel/trunk/gshell/gshell-features/src/main/resources/org/apache/servicemix/kernel/gshell/features/commands/UninstallFeatureCommand.properties?rev=707430&view=auto ============================================================================== --- servicemix/smx4/kernel/trunk/gshell/gshell-features/src/main/resources/org/apache/servicemix/kernel/gshell/features/commands/UninstallFeatureCommand.properties (added) +++ servicemix/smx4/kernel/trunk/gshell/gshell-features/src/main/resources/org/apache/servicemix/kernel/gshell/features/commands/UninstallFeatureCommand.properties Thu Oct 23 11:04:50 2008 @@ -0,0 +1,27 @@ +## +## Licensed to the Apache Software Foundation (ASF) under one +## or more contributor license agreements. See the NOTICE file +## distributed with this work for additional information +## regarding copyright ownership. The ASF licenses this file +## to you under the Apache License, Version 2.0 (the +## "License"); you may not use this file except in compliance +## with the License. You may obtain a copy of the License at +## +## http://www.apache.org/licenses/LICENSE-2.0 +## +## Unless required by applicable law or agreed to in writing, +## software distributed under the License is distributed on an +## "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +## KIND, either express or implied. See the License for the +## specific language governing permissions and limitations +## under the License. +## + +## +## $Rev: 703511 $ $Date: 2008-10-10 18:07:36 +0200 (Fri, 10 Oct 2008) $ +## + +command.description=Uninstall a feature. + +command.manual=\ + TODO: date manual \ No newline at end of file Modified: servicemix/smx4/kernel/trunk/gshell/gshell-log/pom.xml URL: http://svn.apache.org/viewvc/servicemix/smx4/kernel/trunk/gshell/gshell-log/pom.xml?rev=707430&r1=707429&r2=707430&view=diff ============================================================================== --- servicemix/smx4/kernel/trunk/gshell/gshell-log/pom.xml (original) +++ servicemix/smx4/kernel/trunk/gshell/gshell-log/pom.xml Thu Oct 23 11:04:50 2008 @@ -80,6 +80,7 @@ </Export-Package> <Import-Package> org.apache.geronimo.gshell.wisdom.command, + org.apache.geronimo.gshell.wisdom.registry, org.apache.servicemix.kernel.gshell.core, org.ops4j.pax.logging, * Modified: servicemix/smx4/kernel/trunk/gshell/gshell-obr/pom.xml URL: http://svn.apache.org/viewvc/servicemix/smx4/kernel/trunk/gshell/gshell-obr/pom.xml?rev=707430&r1=707429&r2=707430&view=diff ============================================================================== --- servicemix/smx4/kernel/trunk/gshell/gshell-obr/pom.xml (original) +++ servicemix/smx4/kernel/trunk/gshell/gshell-obr/pom.xml Thu Oct 23 11:04:50 2008 @@ -71,6 +71,7 @@ <Export-Package>org.apache.geronimo.gshell.obr*;version=${project.version}</Export-Package> <Import-Package> org.apache.geronimo.gshell.wisdom.command, + org.apache.geronimo.gshell.wisdom.registry, org.apache.servicemix.kernel.gshell.core, * </Import-Package> Modified: servicemix/smx4/kernel/trunk/gshell/gshell-osgi/pom.xml URL: http://svn.apache.org/viewvc/servicemix/smx4/kernel/trunk/gshell/gshell-osgi/pom.xml?rev=707430&r1=707429&r2=707430&view=diff ============================================================================== --- servicemix/smx4/kernel/trunk/gshell/gshell-osgi/pom.xml (original) +++ servicemix/smx4/kernel/trunk/gshell/gshell-osgi/pom.xml Thu Oct 23 11:04:50 2008 @@ -68,6 +68,7 @@ </Export-Package> <Import-Package> org.apache.geronimo.gshell.wisdom.command, + org.apache.geronimo.gshell.wisdom.registry, org.apache.servicemix.kernel.gshell.core, * </Import-Package> Modified: servicemix/smx4/kernel/trunk/gshell/gshell-osgi/src/main/resources/META-INF/spring/gshell-osgi.xml URL: http://svn.apache.org/viewvc/servicemix/smx4/kernel/trunk/gshell/gshell-osgi/src/main/resources/META-INF/spring/gshell-osgi.xml?rev=707430&r1=707429&r2=707430&view=diff ============================================================================== --- servicemix/smx4/kernel/trunk/gshell/gshell-osgi/src/main/resources/META-INF/spring/gshell-osgi.xml (original) +++ servicemix/smx4/kernel/trunk/gshell/gshell-osgi/src/main/resources/META-INF/spring/gshell-osgi.xml Thu Oct 23 11:04:50 2008 @@ -41,37 +41,34 @@ <gshell:command name="osgi/headers"> <gshell:action class="org.apache.servicemix.kernel.gshell.osgi.Headers" /> </gshell:command> - <gshell:command name="osgi/intall-bundle"> + <gshell:command name="osgi/install"> <gshell:action class="org.apache.servicemix.kernel.gshell.osgi.InstallBundle" /> </gshell:command> - <gshell:command name="osgi/list-bundle"> + <gshell:command name="osgi/list"> <gshell:action class="org.apache.servicemix.kernel.gshell.osgi.ListBundles" /> </gshell:command> - <gshell:command name="osgi/list-services"> + <gshell:command name="osgi/ls"> <gshell:action class="org.apache.servicemix.kernel.gshell.osgi.ListServices" /> </gshell:command> - <gshell:command name="osgi/list-services"> - <gshell:action class="org.apache.servicemix.kernel.gshell.osgi.ListServices" /> - </gshell:command> - <gshell:command name="osgi/refresh-bundle"> + <gshell:command name="osgi/refresh"> <gshell:action class="org.apache.servicemix.kernel.gshell.osgi.RefreshBundle" /> </gshell:command> - <gshell:command name="osgi/resolve-bundle"> + <gshell:command name="osgi/resolve"> <gshell:action class="org.apache.servicemix.kernel.gshell.osgi.ResolveBundle" /> </gshell:command> <gshell:command name="osgi/shutdown"> <gshell:action class="org.apache.servicemix.kernel.gshell.osgi.Shutdown" /> </gshell:command> - <gshell:command name="osgi/start-bundle"> + <gshell:command name="osgi/start"> <gshell:action class="org.apache.servicemix.kernel.gshell.osgi.StartBundle" /> </gshell:command> <gshell:command name="osgi/start-level"> <gshell:action class="org.apache.servicemix.kernel.gshell.osgi.StartLevel" /> </gshell:command> - <gshell:command name="osgi/stop-bundle"> + <gshell:command name="osgi/stop"> <gshell:action class="org.apache.servicemix.kernel.gshell.osgi.StopBundle" /> </gshell:command> - <gshell:command name="osgi/uninstall-bundle"> + <gshell:command name="osgi/uninstall"> <gshell:action class="org.apache.servicemix.kernel.gshell.osgi.UninstallBundle" /> </gshell:command> </gshell:command-bundle> Modified: servicemix/smx4/kernel/trunk/gshell/gshell-packages/pom.xml URL: http://svn.apache.org/viewvc/servicemix/smx4/kernel/trunk/gshell/gshell-packages/pom.xml?rev=707430&r1=707429&r2=707430&view=diff ============================================================================== --- servicemix/smx4/kernel/trunk/gshell/gshell-packages/pom.xml (original) +++ servicemix/smx4/kernel/trunk/gshell/gshell-packages/pom.xml Thu Oct 23 11:04:50 2008 @@ -74,8 +74,8 @@ </Export-Package> <Import-Package> org.apache.geronimo.gshell.wisdom.command, + org.apache.geronimo.gshell.wisdom.registry, org.apache.servicemix.kernel.gshell.core, - org.ops4j.pax.logging, * </Import-Package> <Private-Package>!*</Private-Package> Modified: servicemix/smx4/kernel/trunk/gshell/gshell-wrapper/pom.xml URL: http://svn.apache.org/viewvc/servicemix/smx4/kernel/trunk/gshell/gshell-wrapper/pom.xml?rev=707430&r1=707429&r2=707430&view=diff ============================================================================== --- servicemix/smx4/kernel/trunk/gshell/gshell-wrapper/pom.xml (original) +++ servicemix/smx4/kernel/trunk/gshell/gshell-wrapper/pom.xml Thu Oct 23 11:04:50 2008 @@ -99,7 +99,12 @@ <Bundle-SymbolicName>${artifactId}</Bundle-SymbolicName> <Export-Package>org.apache.servicemix.kernel.gshell.wrapper.*;version=${project.version} </Export-Package> - <Import-Package>*</Import-Package> + <Import-Package> + org.apache.geronimo.gshell.wisdom.command, + org.apache.geronimo.gshell.wisdom.registry, + org.apache.servicemix.kernel.gshell.core, + * + </Import-Package> <Private-Package>!*</Private-Package> <Spring-Context>*;publish-context:=false;create-asynchronously:=false</Spring-Context> </instructions> Modified: servicemix/smx4/kernel/trunk/pom.xml URL: http://svn.apache.org/viewvc/servicemix/smx4/kernel/trunk/pom.xml?rev=707430&r1=707429&r2=707430&view=diff ============================================================================== --- servicemix/smx4/kernel/trunk/pom.xml (original) +++ servicemix/smx4/kernel/trunk/pom.xml Thu Oct 23 11:04:50 2008 @@ -65,6 +65,8 @@ <aopalliance.version>1.0_1</aopalliance.version> <asm.version>2.2.3_1</asm.version> <cglib.version>2.1_3_1</cglib.version> + <commons.codec.version>1.2_1</commons.codec.version> + <commons.httpclient.version>3.1_1</commons.httpclient.version> <commons.io.version>1.3.2_1</commons.io.version> <commons.jexl.version>1.1_1-SNAPSHOT</commons.jexl.version> <commons.logging.version>1.1.1</commons.logging.version> @@ -86,6 +88,7 @@ <jline.version>0.9.94</jline.version> <log4j.version>1.2.14</log4j.version> <mina.version>1.1.6_1</mina.version> + <oro.version>2.0.8_1</oro.version> <pax.logging.version>1.1.1</pax.logging.version> <pax.url.version>0.3.2</pax.url.version> <servicemix.legal.version>1.0</servicemix.legal.version> @@ -339,6 +342,11 @@ </dependency> <dependency> <groupId>org.apache.servicemix.bundles</groupId> + <artifactId>org.apache.servicemix.bundles.oro</artifactId> + <version>${oro.version}</version> + </dependency> + <dependency> + <groupId>org.apache.servicemix.bundles</groupId> <artifactId>org.apache.servicemix.bundles.aopalliance</artifactId> <version>${aopalliance.version}</version> </dependency> @@ -368,6 +376,16 @@ <version>${commons.vfs.version}</version> </dependency> <dependency> + <groupId>org.apache.servicemix.bundles</groupId> + <artifactId>org.apache.servicemix.bundles.commons-codec</artifactId> + <version>${commons.codec.version}</version> + </dependency> + <dependency> + <groupId>org.apache.servicemix.bundles</groupId> + <artifactId>org.apache.servicemix.bundles.commons-httpclient</artifactId> + <version>${commons.httpclient.version}</version> + </dependency> + <dependency> <groupId>org.jmock</groupId> <artifactId>jmock</artifactId> <version>2.4.0</version>
