Author: mes
Date: 2011-07-01 16:20:53 -0700 (Fri, 01 Jul 2011)
New Revision: 26008

Removed:
   core3/samples/trunk/sample02/osgi.bnd
   core3/samples/trunk/sample03/osgi.bnd
   core3/samples/trunk/sample04/osgi.bnd
   core3/samples/trunk/sample05/osgi.bnd
   core3/samples/trunk/sample06/osgi.bnd
   core3/samples/trunk/sample07/osgi.bnd
   core3/samples/trunk/sample08/osgi.bnd
   core3/samples/trunk/sample09/osgi.bnd
   core3/samples/trunk/sample10/osgi.bnd
   core3/samples/trunk/sample11/osgi.bnd
   core3/samples/trunk/sample12/osgi.bnd
   core3/samples/trunk/sample13/osgi.bnd
   core3/samples/trunk/sample14/osgi.bnd
   core3/samples/trunk/sample18/osgi.bnd
   core3/samples/trunk/sample20/osgi.bnd
   core3/samples/trunk/sample21/osgi.bnd
   core3/samples/trunk/sample22/osgi.bnd
Modified:
   core3/samples/trunk/sample02/pom.xml
   core3/samples/trunk/sample02a/pom.xml
   core3/samples/trunk/sample03/pom.xml
   core3/samples/trunk/sample03a/pom.xml
   core3/samples/trunk/sample04/pom.xml
   core3/samples/trunk/sample05/pom.xml
   core3/samples/trunk/sample05a/pom.xml
   core3/samples/trunk/sample06/pom.xml
   core3/samples/trunk/sample07/pom.xml
   core3/samples/trunk/sample08/pom.xml
   core3/samples/trunk/sample09/pom.xml
   core3/samples/trunk/sample10/pom.xml
   core3/samples/trunk/sample11/pom.xml
   core3/samples/trunk/sample12/pom.xml
   core3/samples/trunk/sample13/pom.xml
   core3/samples/trunk/sample14/pom.xml
   core3/samples/trunk/sample18/pom.xml
   core3/samples/trunk/sample20/pom.xml
   core3/samples/trunk/sample21/pom.xml
   core3/samples/trunk/sample22/pom.xml
Log:
simplified maven bundle plugin commands

Deleted: core3/samples/trunk/sample02/osgi.bnd
===================================================================
--- core3/samples/trunk/sample02/osgi.bnd       2011-07-01 23:18:30 UTC (rev 
26007)
+++ core3/samples/trunk/sample02/osgi.bnd       2011-07-01 23:20:53 UTC (rev 
26008)
@@ -1,6 +0,0 @@
-#-----------------------------------------------------------------
-# Use this file to add customized Bnd instructions for the bundle
-#-----------------------------------------------------------------
-
-Import-Package: *
-Private-Package: ${bundle.namespace}.internal.*

Modified: core3/samples/trunk/sample02/pom.xml
===================================================================
--- core3/samples/trunk/sample02/pom.xml        2011-07-01 23:18:30 UTC (rev 
26007)
+++ core3/samples/trunk/sample02/pom.xml        2011-07-01 23:20:53 UTC (rev 
26008)
@@ -9,13 +9,13 @@
 
        <properties>
                <bundle.symbolicName>sample02</bundle.symbolicName>
-               <bundle.namespace>org.cytoscape.sample</bundle.namespace>
+               
<bundle.namespace>org.cytoscape.sample.internal</bundle.namespace>
        </properties>
 
        <groupId>org.cytoscape.sample</groupId>
        <artifactId>sample02</artifactId>
        <packaging>bundle</packaging>
-       <name>${bundle.symbolicName} [${bundle.namespace}]</name>
+       <name>${bundle.symbolicName}</name>
 
        <build>
                <plugins>
@@ -51,7 +51,6 @@
                                        <instructions>
                                                
<Bundle-SymbolicName>${bundle.symbolicName}</Bundle-SymbolicName>
                                                
<Bundle-Version>${project.version}</Bundle-Version>
-                                               <_include>-osgi.bnd</_include>
                                        </instructions>
                                </configuration>
                        </plugin>
@@ -82,17 +81,6 @@
                        <name>Cytoscape Releases</name>
                        
<url>http://cytoscape.wodaklab.org/nexus/content/repositories/releases/</url>
                </repository>
-               <repository>
-                       <id>cytoscape_thirdparty</id>
-                       <snapshots>
-                               <enabled>false</enabled>
-                       </snapshots>
-                       <releases>
-                               <enabled>true</enabled>
-                       </releases>
-                       <name>Cytoscape Third Party</name>
-                       
<url>http://cytoscape.wodaklab.org/nexus/content/repositories/thirdparty/</url>
-               </repository>
        </repositories>
 
        <dependencies>
@@ -101,14 +89,11 @@
                        <artifactId>swing-application-api</artifactId>
                        
<version>${org.cytoscape.swing-application-api.version}</version>
                </dependency>
-
                <dependency>
                        <groupId>org.cytoscape</groupId>
                        <artifactId>work-api</artifactId>
                        <version>${org.cytoscape.work-api.version}</version>
                </dependency>
-
-
        </dependencies>
 
 </project>

Modified: core3/samples/trunk/sample02a/pom.xml
===================================================================
--- core3/samples/trunk/sample02a/pom.xml       2011-07-01 23:18:30 UTC (rev 
26007)
+++ core3/samples/trunk/sample02a/pom.xml       2011-07-01 23:20:53 UTC (rev 
26008)
@@ -8,13 +8,13 @@
 
        <properties>
                <bundle.symbolicName>sample02a</bundle.symbolicName>
-               <bundle.namespace>org.cytoscape.sample</bundle.namespace>
+               
<bundle.namespace>org.cytoscape.sample.internal</bundle.namespace>
        </properties>
   
        <groupId>org.cytoscape.sample</groupId>
        <artifactId>sample02a</artifactId>
        <packaging>jar</packaging>
-       <name>${bundle.symbolicName} [${bundle.namespace}]</name>
+       <name>${bundle.symbolicName}</name>
   
     <build>
     <plugins>

Deleted: core3/samples/trunk/sample03/osgi.bnd
===================================================================
--- core3/samples/trunk/sample03/osgi.bnd       2011-07-01 23:18:30 UTC (rev 
26007)
+++ core3/samples/trunk/sample03/osgi.bnd       2011-07-01 23:20:53 UTC (rev 
26008)
@@ -1,6 +0,0 @@
-#-----------------------------------------------------------------
-# Use this file to add customized Bnd instructions for the bundle
-#-----------------------------------------------------------------
-
-Import-Package: *
-Private-Package: ${bundle.namespace}.internal.*

Modified: core3/samples/trunk/sample03/pom.xml
===================================================================
--- core3/samples/trunk/sample03/pom.xml        2011-07-01 23:18:30 UTC (rev 
26007)
+++ core3/samples/trunk/sample03/pom.xml        2011-07-01 23:20:53 UTC (rev 
26008)
@@ -8,13 +8,13 @@
        
        <properties>
                <bundle.symbolicName>sample3</bundle.symbolicName>
-               <bundle.namespace>org.cytoscape.sample</bundle.namespace>
+               
<bundle.namespace>org.cytoscape.sample.internal</bundle.namespace>
        </properties>
        
        <groupId>org.cytoscape.sample</groupId>
        <artifactId>sample03</artifactId>
        <packaging>bundle</packaging>
-       <name>${bundle.symbolicName} [${bundle.namespace}]</name>
+       <name>${bundle.symbolicName}</name>
   
        <repositories>
                <repository>
@@ -75,7 +75,6 @@
                                        <instructions>
                                                
<Bundle-SymbolicName>${bundle.symbolicName}</Bundle-SymbolicName>
                                                
<Bundle-Version>${project.version}</Bundle-Version>
-                                               <_include>-osgi.bnd</_include>
                                        </instructions>
                                </configuration>
                        </plugin>

Modified: core3/samples/trunk/sample03a/pom.xml
===================================================================
--- core3/samples/trunk/sample03a/pom.xml       2011-07-01 23:18:30 UTC (rev 
26007)
+++ core3/samples/trunk/sample03a/pom.xml       2011-07-01 23:20:53 UTC (rev 
26008)
@@ -8,13 +8,13 @@
   
        <properties>
                <bundle.symbolicName>sample03a</bundle.symbolicName>
-               <bundle.namespace>org.cytoscape.sample</bundle.namespace>
+               
<bundle.namespace>org.cytoscape.sample.internal</bundle.namespace>
        </properties>
 
        <groupId>org.cytoscape.sample</groupId>
        <artifactId>sample03a</artifactId>
        <packaging>jar</packaging>
-       <name>${bundle.symbolicName} [${bundle.namespace}]</name>
+       <name>${bundle.symbolicName}</name>
   
     <build>
     <plugins>

Deleted: core3/samples/trunk/sample04/osgi.bnd
===================================================================
--- core3/samples/trunk/sample04/osgi.bnd       2011-07-01 23:18:30 UTC (rev 
26007)
+++ core3/samples/trunk/sample04/osgi.bnd       2011-07-01 23:20:53 UTC (rev 
26008)
@@ -1,6 +0,0 @@
-#-----------------------------------------------------------------
-# Use this file to add customized Bnd instructions for the bundle
-#-----------------------------------------------------------------
-
-Import-Package: *
-Private-Package: ${bundle.namespace}.internal.*

Modified: core3/samples/trunk/sample04/pom.xml
===================================================================
--- core3/samples/trunk/sample04/pom.xml        2011-07-01 23:18:30 UTC (rev 
26007)
+++ core3/samples/trunk/sample04/pom.xml        2011-07-01 23:20:53 UTC (rev 
26008)
@@ -8,13 +8,13 @@
        
        <properties>
                <bundle.symbolicName>sample04</bundle.symbolicName>
-               <bundle.namespace>org.cytoscape.sample</bundle.namespace>
+               
<bundle.namespace>org.cytoscape.sample.internal</bundle.namespace>
        </properties>
        
        <groupId>org.cytoscape.sample</groupId>
        <artifactId>sample04</artifactId>
        <packaging>bundle</packaging>
-       <name>${bundle.symbolicName} [${bundle.namespace}]</name>
+       <name>${bundle.symbolicName}</name>
   
        <repositories>
                <repository>
@@ -75,7 +75,6 @@
                                        <instructions>
                                                
<Bundle-SymbolicName>${bundle.symbolicName}</Bundle-SymbolicName>
                                                
<Bundle-Version>${project.version}</Bundle-Version>
-                                               <_include>-osgi.bnd</_include>
                                        </instructions>
                                </configuration>
                        </plugin>

Deleted: core3/samples/trunk/sample05/osgi.bnd
===================================================================
--- core3/samples/trunk/sample05/osgi.bnd       2011-07-01 23:18:30 UTC (rev 
26007)
+++ core3/samples/trunk/sample05/osgi.bnd       2011-07-01 23:20:53 UTC (rev 
26008)
@@ -1,6 +0,0 @@
-#-----------------------------------------------------------------
-# Use this file to add customized Bnd instructions for the bundle
-#-----------------------------------------------------------------
-
-Import-Package: *
-Private-Package: ${bundle.namespace}.internal.*

Modified: core3/samples/trunk/sample05/pom.xml
===================================================================
--- core3/samples/trunk/sample05/pom.xml        2011-07-01 23:18:30 UTC (rev 
26007)
+++ core3/samples/trunk/sample05/pom.xml        2011-07-01 23:20:53 UTC (rev 
26008)
@@ -8,13 +8,13 @@
        
        <properties>
                <bundle.symbolicName>sample05</bundle.symbolicName>
-               <bundle.namespace>org.cytoscape.sample</bundle.namespace>
+               
<bundle.namespace>org.cytoscape.sample.internal</bundle.namespace>
        </properties>
        
        <groupId>org.cytoscape.sample</groupId>
        <artifactId>sample05</artifactId>
        <packaging>bundle</packaging>
-       <name>${bundle.symbolicName} [${bundle.namespace}]</name>
+       <name>${bundle.symbolicName}</name>
   
        <repositories>
                <repository>
@@ -75,7 +75,6 @@
                                        <instructions>
                                                
<Bundle-SymbolicName>${bundle.symbolicName}</Bundle-SymbolicName>
                                                
<Bundle-Version>${project.version}</Bundle-Version>
-                                               <_include>-osgi.bnd</_include>
                                        </instructions>
                                </configuration>
                        </plugin>

Modified: core3/samples/trunk/sample05a/pom.xml
===================================================================
--- core3/samples/trunk/sample05a/pom.xml       2011-07-01 23:18:30 UTC (rev 
26007)
+++ core3/samples/trunk/sample05a/pom.xml       2011-07-01 23:20:53 UTC (rev 
26008)
@@ -9,13 +9,13 @@
   
        <properties>
                <bundle.symbolicName>sample05a</bundle.symbolicName>
-               <bundle.namespace>org.cytoscape.sample</bundle.namespace>
+               
<bundle.namespace>org.cytoscape.sample.internal</bundle.namespace>
        </properties>
   
        <groupId>org.cytoscape.sample</groupId>
        <artifactId>sample05a</artifactId>
        <packaging>jar</packaging>
-       <name>${bundle.symbolicName} [${bundle.namespace}]</name>
+       <name>${bundle.symbolicName}</name>
 
     <build>
     <plugins>

Deleted: core3/samples/trunk/sample06/osgi.bnd
===================================================================
--- core3/samples/trunk/sample06/osgi.bnd       2011-07-01 23:18:30 UTC (rev 
26007)
+++ core3/samples/trunk/sample06/osgi.bnd       2011-07-01 23:20:53 UTC (rev 
26008)
@@ -1,6 +0,0 @@
-#-----------------------------------------------------------------
-# Use this file to add customized Bnd instructions for the bundle
-#-----------------------------------------------------------------
-
-Import-Package: *
-Private-Package: ${bundle.namespace}.internal.*

Modified: core3/samples/trunk/sample06/pom.xml
===================================================================
--- core3/samples/trunk/sample06/pom.xml        2011-07-01 23:18:30 UTC (rev 
26007)
+++ core3/samples/trunk/sample06/pom.xml        2011-07-01 23:20:53 UTC (rev 
26008)
@@ -8,13 +8,13 @@
        
        <properties>
                <bundle.symbolicName>sample06</bundle.symbolicName>
-               <bundle.namespace>org.cytoscape.sample</bundle.namespace>
+               
<bundle.namespace>org.cytoscape.sample.internal</bundle.namespace>
        </properties>
        
        <groupId>org.cytoscape.sample</groupId>
        <artifactId>sample06</artifactId>
        <packaging>bundle</packaging>
-       <name>${bundle.symbolicName} [${bundle.namespace}]</name>
+       <name>${bundle.symbolicName}</name>
   
        <repositories>
                <repository>
@@ -75,7 +75,6 @@
                                        <instructions>
                                                
<Bundle-SymbolicName>${bundle.symbolicName}</Bundle-SymbolicName>
                                                
<Bundle-Version>${project.version}</Bundle-Version>
-                                               <_include>-osgi.bnd</_include>
                                        </instructions>
                                </configuration>
                        </plugin>

Deleted: core3/samples/trunk/sample07/osgi.bnd
===================================================================
--- core3/samples/trunk/sample07/osgi.bnd       2011-07-01 23:18:30 UTC (rev 
26007)
+++ core3/samples/trunk/sample07/osgi.bnd       2011-07-01 23:20:53 UTC (rev 
26008)
@@ -1,6 +0,0 @@
-#-----------------------------------------------------------------
-# Use this file to add customized Bnd instructions for the bundle
-#-----------------------------------------------------------------
-
-Import-Package: *
-Private-Package: ${bundle.namespace}.internal.*

Modified: core3/samples/trunk/sample07/pom.xml
===================================================================
--- core3/samples/trunk/sample07/pom.xml        2011-07-01 23:18:30 UTC (rev 
26007)
+++ core3/samples/trunk/sample07/pom.xml        2011-07-01 23:20:53 UTC (rev 
26008)
@@ -8,13 +8,13 @@
        
        <properties>
                <bundle.symbolicName>sample07</bundle.symbolicName>
-               <bundle.namespace>org.cytoscape.sample</bundle.namespace>
+               
<bundle.namespace>org.cytoscape.sample.internal</bundle.namespace>
        </properties>
        
        <groupId>org.cytoscape.sample</groupId>
        <artifactId>sample07</artifactId>
        <packaging>bundle</packaging>
-       <name>${bundle.symbolicName} [${bundle.namespace}]</name>
+       <name>${bundle.symbolicName}</name>
   
        <repositories>
                <repository>
@@ -75,7 +75,6 @@
                                        <instructions>
                                                
<Bundle-SymbolicName>${bundle.symbolicName}</Bundle-SymbolicName>
                                                
<Bundle-Version>${project.version}</Bundle-Version>
-                                               <_include>-osgi.bnd</_include>
                                        </instructions>
                                </configuration>
                        </plugin>

Deleted: core3/samples/trunk/sample08/osgi.bnd
===================================================================
--- core3/samples/trunk/sample08/osgi.bnd       2011-07-01 23:18:30 UTC (rev 
26007)
+++ core3/samples/trunk/sample08/osgi.bnd       2011-07-01 23:20:53 UTC (rev 
26008)
@@ -1,6 +0,0 @@
-#-----------------------------------------------------------------
-# Use this file to add customized Bnd instructions for the bundle
-#-----------------------------------------------------------------
-
-Import-Package: *
-Private-Package: ${bundle.namespace}.internal.*

Modified: core3/samples/trunk/sample08/pom.xml
===================================================================
--- core3/samples/trunk/sample08/pom.xml        2011-07-01 23:18:30 UTC (rev 
26007)
+++ core3/samples/trunk/sample08/pom.xml        2011-07-01 23:20:53 UTC (rev 
26008)
@@ -8,13 +8,13 @@
        
        <properties>
                <bundle.symbolicName>sample08</bundle.symbolicName>
-               <bundle.namespace>org.cytoscape.sample</bundle.namespace>
+               
<bundle.namespace>org.cytoscape.sample.internal</bundle.namespace>
        </properties>
        
        <groupId>org.cytoscape.sample</groupId>
        <artifactId>sample08</artifactId>
        <packaging>bundle</packaging>
-       <name>${bundle.symbolicName} [${bundle.namespace}]</name>
+       <name>${bundle.symbolicName}</name>
   
        <repositories>
                <repository>
@@ -75,7 +75,6 @@
                                        <instructions>
                                                
<Bundle-SymbolicName>${bundle.symbolicName}</Bundle-SymbolicName>
                                                
<Bundle-Version>${project.version}</Bundle-Version>
-                                               <_include>-osgi.bnd</_include>
                                        </instructions>
                                </configuration>
                        </plugin>

Deleted: core3/samples/trunk/sample09/osgi.bnd
===================================================================
--- core3/samples/trunk/sample09/osgi.bnd       2011-07-01 23:18:30 UTC (rev 
26007)
+++ core3/samples/trunk/sample09/osgi.bnd       2011-07-01 23:20:53 UTC (rev 
26008)
@@ -1,6 +0,0 @@
-#-----------------------------------------------------------------
-# Use this file to add customized Bnd instructions for the bundle
-#-----------------------------------------------------------------
-
-Import-Package: *
-Private-Package: ${bundle.namespace}.internal.*

Modified: core3/samples/trunk/sample09/pom.xml
===================================================================
--- core3/samples/trunk/sample09/pom.xml        2011-07-01 23:18:30 UTC (rev 
26007)
+++ core3/samples/trunk/sample09/pom.xml        2011-07-01 23:20:53 UTC (rev 
26008)
@@ -8,13 +8,13 @@
        
        <properties>
                <bundle.symbolicName>sample09</bundle.symbolicName>
-               <bundle.namespace>org.cytoscape.sample</bundle.namespace>
+               
<bundle.namespace>org.cytoscape.sample.internal</bundle.namespace>
        </properties>
        
        <groupId>org.cytoscape.sample</groupId>
        <artifactId>sample09</artifactId>
        <packaging>bundle</packaging>
-       <name>${bundle.symbolicName} [${bundle.namespace}]</name>
+       <name>${bundle.symbolicName}</name>
   
        <repositories>
                <repository>
@@ -75,7 +75,6 @@
                                        <instructions>
                                                
<Bundle-SymbolicName>${bundle.symbolicName}</Bundle-SymbolicName>
                                                
<Bundle-Version>${project.version}</Bundle-Version>
-                                               <_include>-osgi.bnd</_include>
                                        </instructions>
                                </configuration>
                        </plugin>

Deleted: core3/samples/trunk/sample10/osgi.bnd
===================================================================
--- core3/samples/trunk/sample10/osgi.bnd       2011-07-01 23:18:30 UTC (rev 
26007)
+++ core3/samples/trunk/sample10/osgi.bnd       2011-07-01 23:20:53 UTC (rev 
26008)
@@ -1,6 +0,0 @@
-#-----------------------------------------------------------------
-# Use this file to add customized Bnd instructions for the bundle
-#-----------------------------------------------------------------
-
-Import-Package: *
-Private-Package: ${bundle.namespace}.internal.*

Modified: core3/samples/trunk/sample10/pom.xml
===================================================================
--- core3/samples/trunk/sample10/pom.xml        2011-07-01 23:18:30 UTC (rev 
26007)
+++ core3/samples/trunk/sample10/pom.xml        2011-07-01 23:20:53 UTC (rev 
26008)
@@ -8,13 +8,13 @@
        
        <properties>
                <bundle.symbolicName>sample10</bundle.symbolicName>
-               <bundle.namespace>org.cytoscape.sample</bundle.namespace>
+               
<bundle.namespace>org.cytoscape.sample.internal</bundle.namespace>
        </properties>
        
        <groupId>org.cytoscape.sample</groupId>
        <artifactId>sample10</artifactId>
        <packaging>bundle</packaging>
-       <name>${bundle.symbolicName} [${bundle.namespace}]</name>
+       <name>${bundle.symbolicName}</name>
   
        <repositories>
                <repository>
@@ -75,7 +75,6 @@
                                        <instructions>
                                                
<Bundle-SymbolicName>${bundle.symbolicName}</Bundle-SymbolicName>
                                                
<Bundle-Version>${project.version}</Bundle-Version>
-                                               <_include>-osgi.bnd</_include>
                                        </instructions>
                                </configuration>
                        </plugin>

Deleted: core3/samples/trunk/sample11/osgi.bnd
===================================================================
--- core3/samples/trunk/sample11/osgi.bnd       2011-07-01 23:18:30 UTC (rev 
26007)
+++ core3/samples/trunk/sample11/osgi.bnd       2011-07-01 23:20:53 UTC (rev 
26008)
@@ -1,6 +0,0 @@
-#-----------------------------------------------------------------
-# Use this file to add customized Bnd instructions for the bundle
-#-----------------------------------------------------------------
-
-Import-Package: *
-Private-Package: ${bundle.namespace}.internal.*

Modified: core3/samples/trunk/sample11/pom.xml
===================================================================
--- core3/samples/trunk/sample11/pom.xml        2011-07-01 23:18:30 UTC (rev 
26007)
+++ core3/samples/trunk/sample11/pom.xml        2011-07-01 23:20:53 UTC (rev 
26008)
@@ -8,13 +8,13 @@
        
        <properties>
                <bundle.symbolicName>sample11</bundle.symbolicName>
-               <bundle.namespace>org.cytoscape.sample</bundle.namespace>
+               
<bundle.namespace>org.cytoscape.sample.internal</bundle.namespace>
        </properties>
        
        <groupId>org.cytoscape.sample</groupId>
        <artifactId>sample11</artifactId>
        <packaging>bundle</packaging>
-       <name>${bundle.symbolicName} [${bundle.namespace}]</name>
+       <name>${bundle.symbolicName}</name>
   
        <repositories>
                <repository>
@@ -75,7 +75,6 @@
                                        <instructions>
                                                
<Bundle-SymbolicName>${bundle.symbolicName}</Bundle-SymbolicName>
                                                
<Bundle-Version>${project.version}</Bundle-Version>
-                                               <_include>-osgi.bnd</_include>
                                        </instructions>
                                </configuration>
                        </plugin>

Deleted: core3/samples/trunk/sample12/osgi.bnd
===================================================================
--- core3/samples/trunk/sample12/osgi.bnd       2011-07-01 23:18:30 UTC (rev 
26007)
+++ core3/samples/trunk/sample12/osgi.bnd       2011-07-01 23:20:53 UTC (rev 
26008)
@@ -1,6 +0,0 @@
-#-----------------------------------------------------------------
-# Use this file to add customized Bnd instructions for the bundle
-#-----------------------------------------------------------------
-
-Import-Package: *
-Private-Package: ${bundle.namespace}.internal.*

Modified: core3/samples/trunk/sample12/pom.xml
===================================================================
--- core3/samples/trunk/sample12/pom.xml        2011-07-01 23:18:30 UTC (rev 
26007)
+++ core3/samples/trunk/sample12/pom.xml        2011-07-01 23:20:53 UTC (rev 
26008)
@@ -8,13 +8,13 @@
        
        <properties>
                <bundle.symbolicName>sample12</bundle.symbolicName>
-               <bundle.namespace>org.cytoscape.sample</bundle.namespace>
+               
<bundle.namespace>org.cytoscape.sample.internal</bundle.namespace>
        </properties>
        
        <groupId>org.cytoscape.sample</groupId>
        <artifactId>sample12</artifactId>
        <packaging>bundle</packaging>
-       <name>${bundle.symbolicName} [${bundle.namespace}]</name>
+       <name>${bundle.symbolicName}</name>
   
        <repositories>
                <repository>
@@ -75,7 +75,6 @@
                                        <instructions>
                                                
<Bundle-SymbolicName>${bundle.symbolicName}</Bundle-SymbolicName>
                                                
<Bundle-Version>${project.version}</Bundle-Version>
-                                               <_include>-osgi.bnd</_include>
                                        </instructions>
                                </configuration>
                        </plugin>

Deleted: core3/samples/trunk/sample13/osgi.bnd
===================================================================
--- core3/samples/trunk/sample13/osgi.bnd       2011-07-01 23:18:30 UTC (rev 
26007)
+++ core3/samples/trunk/sample13/osgi.bnd       2011-07-01 23:20:53 UTC (rev 
26008)
@@ -1,6 +0,0 @@
-#-----------------------------------------------------------------
-# Use this file to add customized Bnd instructions for the bundle
-#-----------------------------------------------------------------
-
-Import-Package: *
-Private-Package: ${bundle.namespace}.internal.*

Modified: core3/samples/trunk/sample13/pom.xml
===================================================================
--- core3/samples/trunk/sample13/pom.xml        2011-07-01 23:18:30 UTC (rev 
26007)
+++ core3/samples/trunk/sample13/pom.xml        2011-07-01 23:20:53 UTC (rev 
26008)
@@ -9,13 +9,13 @@
 
        <properties>
                <bundle.symbolicName>sample13</bundle.symbolicName>
-               <bundle.namespace>org.cytoscape.sample</bundle.namespace>
+               
<bundle.namespace>org.cytoscape.sample.internal</bundle.namespace>
        </properties>
 
        <groupId>org.cytoscape.sample</groupId>
        <artifactId>sample13</artifactId>
        <packaging>bundle</packaging>
-       <name>${bundle.symbolicName} [${bundle.namespace}]</name>
+       <name>${bundle.symbolicName}</name>
 
        <repositories>
                <repository>
@@ -76,7 +76,6 @@
                                        <instructions>
                                                
<Bundle-SymbolicName>${bundle.symbolicName}</Bundle-SymbolicName>
                                                
<Bundle-Version>${project.version}</Bundle-Version>
-                                               <_include>-osgi.bnd</_include>
                                        </instructions>
                                </configuration>
                        </plugin>

Deleted: core3/samples/trunk/sample14/osgi.bnd
===================================================================
--- core3/samples/trunk/sample14/osgi.bnd       2011-07-01 23:18:30 UTC (rev 
26007)
+++ core3/samples/trunk/sample14/osgi.bnd       2011-07-01 23:20:53 UTC (rev 
26008)
@@ -1,6 +0,0 @@
-#-----------------------------------------------------------------
-# Use this file to add customized Bnd instructions for the bundle
-#-----------------------------------------------------------------
-
-Import-Package: *
-Private-Package: ${bundle.namespace}.internal.*

Modified: core3/samples/trunk/sample14/pom.xml
===================================================================
--- core3/samples/trunk/sample14/pom.xml        2011-07-01 23:18:30 UTC (rev 
26007)
+++ core3/samples/trunk/sample14/pom.xml        2011-07-01 23:20:53 UTC (rev 
26008)
@@ -9,13 +9,13 @@
 
        <properties>
                <bundle.symbolicName>sample14</bundle.symbolicName>
-               <bundle.namespace>org.cytoscape.sample</bundle.namespace>
+               
<bundle.namespace>org.cytoscape.sample.internal</bundle.namespace>
        </properties>
 
        <groupId>org.cytoscape.sample</groupId>
        <artifactId>sample14</artifactId>
        <packaging>bundle</packaging>
-       <name>${bundle.symbolicName} [${bundle.namespace}]</name>
+       <name>${bundle.symbolicName}</name>
 
        <repositories>
                <repository>
@@ -76,7 +76,6 @@
                                        <instructions>
                                                
<Bundle-SymbolicName>${bundle.symbolicName}</Bundle-SymbolicName>
                                                
<Bundle-Version>${project.version}</Bundle-Version>
-                                               <_include>-osgi.bnd</_include>
                                        </instructions>
                                </configuration>
                        </plugin>

Deleted: core3/samples/trunk/sample18/osgi.bnd
===================================================================
--- core3/samples/trunk/sample18/osgi.bnd       2011-07-01 23:18:30 UTC (rev 
26007)
+++ core3/samples/trunk/sample18/osgi.bnd       2011-07-01 23:20:53 UTC (rev 
26008)
@@ -1,6 +0,0 @@
-#-----------------------------------------------------------------
-# Use this file to add customized Bnd instructions for the bundle
-#-----------------------------------------------------------------
-
-Import-Package: *
-Private-Package: ${bundle.namespace}.internal.*

Modified: core3/samples/trunk/sample18/pom.xml
===================================================================
--- core3/samples/trunk/sample18/pom.xml        2011-07-01 23:18:30 UTC (rev 
26007)
+++ core3/samples/trunk/sample18/pom.xml        2011-07-01 23:20:53 UTC (rev 
26008)
@@ -8,13 +8,13 @@
        
        <properties>
                <bundle.symbolicName>sample18</bundle.symbolicName>
-               <bundle.namespace>org.cytoscape.sample</bundle.namespace>
+               
<bundle.namespace>org.cytoscape.sample.internal</bundle.namespace>
        </properties>
        
        <groupId>org.cytoscape.sample</groupId>
        <artifactId>sample18</artifactId>
        <packaging>bundle</packaging>
-       <name>${bundle.symbolicName} [${bundle.namespace}]</name>
+       <name>${bundle.symbolicName}</name>
   
        <repositories>
                <repository>
@@ -75,7 +75,6 @@
                                        <instructions>
                                                
<Bundle-SymbolicName>${bundle.symbolicName}</Bundle-SymbolicName>
                                                
<Bundle-Version>${project.version}</Bundle-Version>
-                                               <_include>-osgi.bnd</_include>
                                        </instructions>
                                </configuration>
                        </plugin>

Deleted: core3/samples/trunk/sample20/osgi.bnd
===================================================================
--- core3/samples/trunk/sample20/osgi.bnd       2011-07-01 23:18:30 UTC (rev 
26007)
+++ core3/samples/trunk/sample20/osgi.bnd       2011-07-01 23:20:53 UTC (rev 
26008)
@@ -1,6 +0,0 @@
-#-----------------------------------------------------------------
-# Use this file to add customized Bnd instructions for the bundle
-#-----------------------------------------------------------------
-
-Import-Package: *
-Private-Package: ${bundle.namespace}.internal.*

Modified: core3/samples/trunk/sample20/pom.xml
===================================================================
--- core3/samples/trunk/sample20/pom.xml        2011-07-01 23:18:30 UTC (rev 
26007)
+++ core3/samples/trunk/sample20/pom.xml        2011-07-01 23:20:53 UTC (rev 
26008)
@@ -8,13 +8,13 @@
        
        <properties>
                <bundle.symbolicName>sample20</bundle.symbolicName>
-               <bundle.namespace>org.cytoscape.sample</bundle.namespace>
+               
<bundle.namespace>org.cytoscape.sample.internal</bundle.namespace>
        </properties>
        
        <groupId>org.cytoscape.sample</groupId>
        <artifactId>sample20</artifactId>
        <packaging>bundle</packaging>
-       <name>${bundle.symbolicName} [${bundle.namespace}]</name>
+       <name>${bundle.symbolicName}</name>
   
        <repositories>
                <repository>
@@ -75,7 +75,6 @@
                                        <instructions>
                                                
<Bundle-SymbolicName>${bundle.symbolicName}</Bundle-SymbolicName>
                                                
<Bundle-Version>${project.version}</Bundle-Version>
-                                               <_include>-osgi.bnd</_include>
                                        </instructions>
                                </configuration>
                        </plugin>

Deleted: core3/samples/trunk/sample21/osgi.bnd
===================================================================
--- core3/samples/trunk/sample21/osgi.bnd       2011-07-01 23:18:30 UTC (rev 
26007)
+++ core3/samples/trunk/sample21/osgi.bnd       2011-07-01 23:20:53 UTC (rev 
26008)
@@ -1,6 +0,0 @@
-#-----------------------------------------------------------------
-# Use this file to add customized Bnd instructions for the bundle
-#-----------------------------------------------------------------
-
-Import-Package: *
-Private-Package: ${bundle.namespace}.internal.*

Modified: core3/samples/trunk/sample21/pom.xml
===================================================================
--- core3/samples/trunk/sample21/pom.xml        2011-07-01 23:18:30 UTC (rev 
26007)
+++ core3/samples/trunk/sample21/pom.xml        2011-07-01 23:20:53 UTC (rev 
26008)
@@ -8,13 +8,13 @@
        
        <properties>
                <bundle.symbolicName>sample21</bundle.symbolicName>
-               <bundle.namespace>org.cytoscape.sample</bundle.namespace>
+               
<bundle.namespace>org.cytoscape.sample.internal</bundle.namespace>
        </properties>
        
        <groupId>org.cytoscape.sample</groupId>
        <artifactId>sample21</artifactId>
        <packaging>bundle</packaging>
-       <name>${bundle.symbolicName} [${bundle.namespace}]</name>
+       <name>${bundle.symbolicName}</name>
   
        <repositories>
                <repository>
@@ -75,7 +75,6 @@
                                        <instructions>
                                                
<Bundle-SymbolicName>${bundle.symbolicName}</Bundle-SymbolicName>
                                                
<Bundle-Version>${project.version}</Bundle-Version>
-                                               <_include>-osgi.bnd</_include>
                                        </instructions>
                                </configuration>
                        </plugin>

Deleted: core3/samples/trunk/sample22/osgi.bnd
===================================================================
--- core3/samples/trunk/sample22/osgi.bnd       2011-07-01 23:18:30 UTC (rev 
26007)
+++ core3/samples/trunk/sample22/osgi.bnd       2011-07-01 23:20:53 UTC (rev 
26008)
@@ -1,6 +0,0 @@
-#-----------------------------------------------------------------
-# Use this file to add customized Bnd instructions for the bundle
-#-----------------------------------------------------------------
-
-Import-Package: *
-Private-Package: ${bundle.namespace}.internal.*

Modified: core3/samples/trunk/sample22/pom.xml
===================================================================
--- core3/samples/trunk/sample22/pom.xml        2011-07-01 23:18:30 UTC (rev 
26007)
+++ core3/samples/trunk/sample22/pom.xml        2011-07-01 23:20:53 UTC (rev 
26008)
@@ -8,13 +8,13 @@
        
        <properties>
                <bundle.symbolicName>sample22</bundle.symbolicName>
-               <bundle.namespace>org.cytoscape.sample</bundle.namespace>
+               
<bundle.namespace>org.cytoscape.sample.internal</bundle.namespace>
        </properties>
        
        <groupId>org.cytoscape.sample</groupId>
        <artifactId>sample22</artifactId>
        <packaging>bundle</packaging>
-       <name>${bundle.symbolicName} [${bundle.namespace}]</name>
+       <name>${bundle.symbolicName}</name>
 
        <repositories>
                <repository>
@@ -75,7 +75,6 @@
                                        <instructions>
                                                
<Bundle-SymbolicName>${bundle.symbolicName}</Bundle-SymbolicName>
                                                
<Bundle-Version>${project.version}</Bundle-Version>
-                                               <_include>-osgi.bnd</_include>
                                        </instructions>
                                </configuration>
                        </plugin>

-- 
You received this message because you are subscribed to the Google Groups 
"cytoscape-cvs" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/cytoscape-cvs?hl=en.

Reply via email to