You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by ri...@apache.org on 2010/08/24 16:11:47 UTC

svn commit: r988549 - in /felix/trunk/shell.remote: DEPENDENCIES NOTICE doc/ doc/changelog.txt pom.xml src/main/java/org/apache/felix/shell/remote/Listener.java

Author: rickhall
Date: Tue Aug 24 14:11:47 2010
New Revision: 988549

URL: http://svn.apache.org/viewvc?rev=988549&view=rev
Log:
Update support files.

Added:
    felix/trunk/shell.remote/DEPENDENCIES
    felix/trunk/shell.remote/doc/
    felix/trunk/shell.remote/doc/changelog.txt
Modified:
    felix/trunk/shell.remote/NOTICE
    felix/trunk/shell.remote/pom.xml
    felix/trunk/shell.remote/src/main/java/org/apache/felix/shell/remote/Listener.java

Added: felix/trunk/shell.remote/DEPENDENCIES
URL: http://svn.apache.org/viewvc/felix/trunk/shell.remote/DEPENDENCIES?rev=988549&view=auto
==============================================================================
--- felix/trunk/shell.remote/DEPENDENCIES (added)
+++ felix/trunk/shell.remote/DEPENDENCIES Tue Aug 24 14:11:47 2010
@@ -0,0 +1,20 @@
+Apache Felix Remote Shell
+Copyright 2010 The Apache Software Foundation
+
+This software was developed at the Apache Software Foundation
+(http://www.apache.org) and may have dependencies on other
+Apache software licensed under Apache License 2.0.
+
+I. Included Third-Party Software
+
+n/a
+
+II. Used Third-Party Software
+
+This product uses software developed at
+The OSGi Alliance (http://www.osgi.org/).
+Copyright (c) OSGi Alliance (2000, 2009).
+Licensed under the Apache License 2.0.
+
+III. License Summary
+- Apache License 2.0

Modified: felix/trunk/shell.remote/NOTICE
URL: http://svn.apache.org/viewvc/felix/trunk/shell.remote/NOTICE?rev=988549&r1=988548&r2=988549&view=diff
==============================================================================
--- felix/trunk/shell.remote/NOTICE (original)
+++ felix/trunk/shell.remote/NOTICE Tue Aug 24 14:11:47 2010
@@ -1,21 +1,6 @@
 Apache Felix Remote Shell
-Copyright 2008-2009 The Apache Software Foundation
-
-
-I. Included Software
+Copyright 2010 The Apache Software Foundation
 
 This product includes software developed at
 The Apache Software Foundation (http://www.apache.org/).
 Licensed under the Apache License 2.0.
-
-II. Used Software
-
-This product uses software developed at
-The Apache Software Foundation (http://www.apache.org/).
-
-This product uses software developed at
-The OSGi Alliance (http://www.osgi.org/).
-Licensed under the Apache License 2.0.
-
-III. License Summary
-- Apache License 2.0
\ No newline at end of file

Added: felix/trunk/shell.remote/doc/changelog.txt
URL: http://svn.apache.org/viewvc/felix/trunk/shell.remote/doc/changelog.txt?rev=988549&view=auto
==============================================================================
--- felix/trunk/shell.remote/doc/changelog.txt (added)
+++ felix/trunk/shell.remote/doc/changelog.txt Tue Aug 24 14:11:47 2010
@@ -0,0 +1,9 @@
+Changes from 1.0.4 to 1.1.0
+---------------------------
+
+** Bug
+    * [FELIX-1057] - stopping bundle causes NPE
+    * [FELIX-2192] - Remote shell has incorrect bundle symbolic name
+
+** New Feature
+    * [FELIX-2544] - Modify shell.remote to work with Gogo too

Modified: felix/trunk/shell.remote/pom.xml
URL: http://svn.apache.org/viewvc/felix/trunk/shell.remote/pom.xml?rev=988549&r1=988548&r2=988549&view=diff
==============================================================================
--- felix/trunk/shell.remote/pom.xml (original)
+++ felix/trunk/shell.remote/pom.xml Tue Aug 24 14:11:47 2010
@@ -19,8 +19,8 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
     <parent>
         <groupId>org.apache.felix</groupId>
-        <artifactId>felix</artifactId>
-        <version>1.0.4</version>
+        <artifactId>felix-parent</artifactId>
+        <version>1.2.1</version>
         <relativePath>../pom/pom.xml</relativePath>
     </parent>
     <modelVersion>4.0.0</modelVersion>
@@ -73,6 +73,7 @@
                         <DynamicImport-Package>
                             org.apache.felix.service.command,org.apache.felix.shell,org.osgi.service.log
                         </DynamicImport-Package>
+                        <Include-Resource>META-INF/LICENSE=LICENSE,META-INF/NOTICE=NOTICE,META-INF/DEPENDENCIES=DEPENDENCIES</Include-Resource>
                     </instructions>
                 </configuration>
             </plugin>

Modified: felix/trunk/shell.remote/src/main/java/org/apache/felix/shell/remote/Listener.java
URL: http://svn.apache.org/viewvc/felix/trunk/shell.remote/src/main/java/org/apache/felix/shell/remote/Listener.java?rev=988549&r1=988548&r2=988549&view=diff
==============================================================================
--- felix/trunk/shell.remote/src/main/java/org/apache/felix/shell/remote/Listener.java (original)
+++ felix/trunk/shell.remote/src/main/java/org/apache/felix/shell/remote/Listener.java Tue Aug 24 14:11:47 2010
@@ -60,6 +60,7 @@ class Listener
         m_listenerThread = new Thread(m_acceptor, "telnetconsole.Listener");
         m_listenerThread.start();
     }//activate
+
     public ServiceMediator getServices()
     {
         return m_services;