Author: kono
Date: 2010-08-03 19:02:53 -0700 (Tue, 03 Aug 2010)
New Revision: 21180

Modified:
   core3/ding-presentation-impl/trunk/pom.xml
Log:
Dependencies are optimized.

Modified: core3/ding-presentation-impl/trunk/pom.xml
===================================================================
--- core3/ding-presentation-impl/trunk/pom.xml  2010-08-04 01:51:49 UTC (rev 
21179)
+++ core3/ding-presentation-impl/trunk/pom.xml  2010-08-04 02:02:53 UTC (rev 
21180)
@@ -24,98 +24,85 @@
        <packaging>bundle</packaging>
 
 
-  <repositories>
-      <!-- bootstrap for cytoscape dependencies, namely the parent POM 
snapshots -->
-      <repository>
-          <id>cytoscape_snapshots</id>
-          <snapshots>
-            <enabled>true</enabled>
-          </snapshots>
-          <releases>
-            <enabled>false</enabled>
-          </releases>
-          <name>Cytoscape Snapshots</name>
-          
<url>http://cytoscape.wodaklab.org/nexus/content/repositories/snapshots/</url>
-       </repository>
-       <!-- bootstrap for cytoscape dependencies, namely the parent POM 
releases -->
-       <repository>
-          <id>cytoscape_releases</id>
-          <snapshots>
-            <enabled>false</enabled>
-          </snapshots>
-          <releases>
-            <enabled>true</enabled>
-          </releases>
-          <name>Cytoscape Releases</name>
-          
<url>http://cytoscape.wodaklab.org/nexus/content/repositories/releases/</url>
-       </repository>
-  </repositories>
+       <repositories>
+               <!-- bootstrap for cytoscape dependencies, namely the parent 
POM snapshots -->
+               <repository>
+                       <id>cytoscape_snapshots</id>
+                       <snapshots>
+                               <enabled>true</enabled>
+                       </snapshots>
+                       <releases>
+                               <enabled>false</enabled>
+                       </releases>
+                       <name>Cytoscape Snapshots</name>
+                       
<url>http://cytoscape.wodaklab.org/nexus/content/repositories/snapshots/</url>
+               </repository>
+               <!-- bootstrap for cytoscape dependencies, namely the parent 
POM releases -->
+               <repository>
+                       <id>cytoscape_releases</id>
+                       <snapshots>
+                               <enabled>false</enabled>
+                       </snapshots>
+                       <releases>
+                               <enabled>true</enabled>
+                       </releases>
+                       <name>Cytoscape Releases</name>
+                       
<url>http://cytoscape.wodaklab.org/nexus/content/repositories/releases/</url>
+               </repository>
+       </repositories>
 
-  <build>
-    <resources>
-      <resource>
-        <directory>src/main/resources</directory>
-      </resource>
-      <!--
-       | example additional resource entries, useful when building Eclipse RCP 
applications
-      -->
-      <resource>
-        <directory>.</directory>
-        <includes>
-          <include>plugin.xml</include>
-          <include>plugin.properties</include>
-          <include>icons/**</include>
-        </includes>
-      </resource>
-    </resources>
-    <plugins>
-      <plugin>
-        <groupId>org.ops4j</groupId>
-        <artifactId>maven-pax-plugin</artifactId>
-        <version>1.4</version>
-        <!--
-           | enable improved OSGi compilation support for the bundle 
life-cycle.
-           | to switch back to the standard bundle life-cycle, move this 
setting
-           | down to the maven-bundle-plugin section
-          -->
-        <extensions>true</extensions>
-      </plugin>
-      <plugin>
-        <groupId>org.apache.felix</groupId>
-        <artifactId>maven-bundle-plugin</artifactId>
-        <version>${maven-bundle-plugin.version}</version>
-        <!--
-         | the following instructions build a simple set of public/private 
classes into an OSGi bundle
-        -->
-        <configuration>
-          <instructions>
-            <Bundle-SymbolicName>${bundle.symbolicName}</Bundle-SymbolicName>
-            <Bundle-Version>${pom.version}</Bundle-Version>
-            <!--
-             | assume public classes are in the top package, and private 
classes are under ".internal"
-            -->
-            
<Export-Package>!${bundle.namespace}.internal.*,${bundle.namespace}.*;version="${pom.version}"</Export-Package>
-            <Private-Package>${bundle.namespace}.internal.*</Private-Package>
-            <!--
-             | each module can override these defaults in their osgi.bnd file
-            -->
-            <_include>-osgi.bnd</_include>
-          </instructions>
-        </configuration>
-      </plugin>
-    </plugins>
-  </build>
+       <build>
+               <resources>
+                       <resource>
+                               <directory>src/main/resources</directory>
+                       </resource>
+                       <!-- | example additional resource entries, useful when 
building Eclipse 
+                               RCP applications -->
+                       <resource>
+                               <directory>.</directory>
+                               <includes>
+                                       <include>plugin.xml</include>
+                                       <include>plugin.properties</include>
+                                       <include>icons/**</include>
+                               </includes>
+                       </resource>
+               </resources>
+               <plugins>
+                       <plugin>
+                               <groupId>org.ops4j</groupId>
+                               <artifactId>maven-pax-plugin</artifactId>
+                               <version>1.4</version>
+                               <!-- | enable improved OSGi compilation support 
for the bundle life-cycle. 
+                                       | to switch back to the standard bundle 
life-cycle, move this setting | down 
+                                       to the maven-bundle-plugin section -->
+                               <extensions>true</extensions>
+                       </plugin>
+                       <plugin>
+                               <groupId>org.apache.felix</groupId>
+                               <artifactId>maven-bundle-plugin</artifactId>
+                               
<version>${maven-bundle-plugin.version}</version>
+                               <!-- | the following instructions build a 
simple set of public/private 
+                                       classes into an OSGi bundle -->
+                               <configuration>
+                                       <instructions>
+                                               
<Bundle-SymbolicName>${bundle.symbolicName}</Bundle-SymbolicName>
+                                               
<Bundle-Version>${pom.version}</Bundle-Version>
+                                               <!-- | assume public classes 
are in the top package, and private classes 
+                                                       are under ".internal" 
-->
+                                               
<Export-Package>!${bundle.namespace}.internal.*,${bundle.namespace}.*;version="${pom.version}"</Export-Package>
+                                               
<Private-Package>${bundle.namespace}.internal.*</Private-Package>
+                                               <!-- | each module can override 
these defaults in their osgi.bnd file -->
+                                               <_include>-osgi.bnd</_include>
+                                       </instructions>
+                               </configuration>
+                       </plugin>
+               </plugins>
+       </build>
 
        <dependencies>
 
                <dependency>
                        <groupId>org.cytoscape</groupId>
-                       <artifactId>util-intr</artifactId>
-                       <version>1.0-SNAPSHOT</version>
-               </dependency>
-
-               <dependency>
-                       <groupId>org.cytoscape</groupId>
                        <artifactId>graph-render</artifactId>
                        <version>1.0-SNAPSHOT</version>
                </dependency>
@@ -128,81 +115,34 @@
 
                <dependency>
                        <groupId>org.cytoscape</groupId>
-                       <artifactId>work-api</artifactId>
-                       <version>1.0-SNAPSHOT</version>
-               </dependency>
-
-               <dependency>
-                       <groupId>org.cytoscape</groupId>
-                       <artifactId>model-api</artifactId>
-                       <version>1.0-SNAPSHOT</version>
-               </dependency>
-
-               <dependency>
-                       <groupId>org.cytoscape</groupId>
                        <artifactId>presentation-api</artifactId>
                        <version>1.0-SNAPSHOT</version>
                </dependency>
 
                <dependency>
                        <groupId>org.cytoscape</groupId>
-                       <artifactId>viewmodel-api</artifactId>
+                       <artifactId>core-task-api</artifactId>
                        <version>1.0-SNAPSHOT</version>
                </dependency>
 
                <dependency>
                        <groupId>org.cytoscape</groupId>
-                       <artifactId>core-task-api</artifactId>
-                       <version>1.0-SNAPSHOT</version>
-               </dependency>
-               
-               <dependency>
-                       <groupId>org.cytoscape</groupId>
                        <artifactId>swing-util</artifactId>
                        <version>1.0-SNAPSHOT</version>
                </dependency>
 
                <dependency>
                        <groupId>org.cytoscape</groupId>
-                       <artifactId>spacial</artifactId>
-                       <version>1.0-SNAPSHOT</version>
-               </dependency>
-               
-               <dependency>
-                       <groupId>org.cytoscape</groupId>
                        <artifactId>service-util</artifactId>
                        <version>1.0-SNAPSHOT</version>
                </dependency>
 
-
-               <dependency>
-                       <groupId>org.springframework.osgi</groupId>
-                       <artifactId>spring-osgi-core</artifactId>
-                       <version>1.2.0</version>
-                       <type>bundle</type>
-               </dependency>
-               
                <!-- Wrapped libraries -->
                <dependency>
                        <groupId>org.cytoscape.wrappers</groupId>
                        <artifactId>com.l2fprod.common.sheet</artifactId>
                        <version>7.3</version>
                </dependency>
-               <dependency>
-                       <groupId>org.cytoscape.wrappers</groupId>
-                       <artifactId>org.swinglabs.swingx</artifactId>
-                       <version>0.9.7</version>
-               </dependency>
-               <dependency>
-                       <groupId>org.cytoscape.wrappers</groupId>
-                       <artifactId>com.l2fprod.common.shared</artifactId>
-                       <version>7.3</version>
-               </dependency>
-               <dependency>
-                       <groupId>org.cytoscape.wrappers</groupId>
-                       <artifactId>com.l2fprod.common.fontchooser</artifactId>
-                       <version>7.3</version>
-               </dependency>
        </dependencies>
 
 </project>

-- 
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