Author: kono
Date: 2010-11-05 17:39:10 -0700 (Fri, 05 Nov 2010)
New Revision: 22744

Modified:
   core3/core-task-impl/trunk/pom.xml
   core3/io-api/trunk/pom.xml
   core3/io-impl/trunk/pom.xml
   core3/layout-api/trunk/pom.xml
   core3/swing-application-impl/trunk/pom.xml
Log:
Pom dependencies are optimized.

Modified: core3/core-task-impl/trunk/pom.xml
===================================================================
--- core3/core-task-impl/trunk/pom.xml  2010-11-06 00:27:06 UTC (rev 22743)
+++ core3/core-task-impl/trunk/pom.xml  2010-11-06 00:39:10 UTC (rev 22744)
@@ -113,8 +113,9 @@
                <dependency>
                        <groupId>org.cytoscape</groupId>
                        <artifactId>core-task-api</artifactId>
-                       <version>3.0.0-alpha1</version>
+                       <version>3.0.0-alpha2-SNAPSHOT</version>
                </dependency>
+               
                <dependency>
                        <groupId>junit</groupId>
                        <artifactId>junit</artifactId>

Modified: core3/io-api/trunk/pom.xml
===================================================================
--- core3/io-api/trunk/pom.xml  2010-11-06 00:27:06 UTC (rev 22743)
+++ core3/io-api/trunk/pom.xml  2010-11-06 00:39:10 UTC (rev 22744)
@@ -1,5 +1,6 @@
 <?xml version="1.0" encoding="UTF-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";>
+<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>
                <artifactId>parent</artifactId>
@@ -32,10 +33,8 @@
                        <resource>
                                <directory>src/main/resources</directory>
                        </resource>
-                       <!--
-                               | example additional resource entries, useful 
when building Eclipse
-                               RCP applications
-                       -->
+                       <!-- | example additional resource entries, useful when 
building Eclipse 
+                               RCP applications -->
                        <resource>
                                <directory>.</directory>
                                <includes>
@@ -50,79 +49,58 @@
                                <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
-                               -->
+                               <!-- | 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>1.4.3</version>
-                               <!--
-                                       | the following instructions build a 
simple set of public/private
-                                       classes into an OSGi bundle
-                               -->
+                               <!-- | 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"
-                                               -->
+                                               <!-- | 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
-                                               -->
+                                               <!-- | each module can override 
these defaults in their osgi.bnd file -->
                                                <_include>-osgi.bnd</_include>
                                        </instructions>
                                </configuration>
                        </plugin>
                        <plugin>
-                       <groupId>org.apache.maven.plugins</groupId>
-                       <artifactId>maven-jar-plugin</artifactId>
-                       <executions>
-                               <execution>
-                               <goals>
-                               <goal>test-jar</goal>
-                               </goals>
-                               </execution>
-                       </executions>
-               </plugin>
+                               <groupId>org.apache.maven.plugins</groupId>
+                               <artifactId>maven-jar-plugin</artifactId>
+                               <executions>
+                                       <execution>
+                                               <goals>
+                                                       <goal>test-jar</goal>
+                                               </goals>
+                                       </execution>
+                               </executions>
+                       </plugin>
                </plugins>
        </build>
 
        <dependencies>
+
                <dependency>
                        <groupId>org.cytoscape</groupId>
-                       <artifactId>model-api</artifactId>
+                       <artifactId>work-api</artifactId>
                        <version>3.0.0-alpha1</version>
                </dependency>
                <dependency>
                        <groupId>org.cytoscape</groupId>
-                       <artifactId>presentation-api</artifactId>
+                       <artifactId>session-api</artifactId>
                        <version>3.0.0-alpha2-SNAPSHOT</version>
                </dependency>
+
                <dependency>
-               <groupId>org.cytoscape</groupId>
-               <artifactId>vizmap-api</artifactId>
-               <version>3.0.0-alpha1</version>
-       </dependency>
-       <dependency>
-               <groupId>org.cytoscape</groupId>
-               <artifactId>work-api</artifactId>
-               <version>3.0.0-alpha1</version>
-       </dependency>
-       <dependency>
-               <groupId>org.cytoscape</groupId>
-               <artifactId>session-api</artifactId>
-               <version>3.0.0-alpha1</version>
-       </dependency>
-       <dependency>
                        <groupId>junit</groupId>
                        <artifactId>junit</artifactId>
                        <version>${junit.version}</version>

Modified: core3/io-impl/trunk/pom.xml
===================================================================
--- core3/io-impl/trunk/pom.xml 2010-11-06 00:27:06 UTC (rev 22743)
+++ core3/io-impl/trunk/pom.xml 2010-11-06 00:39:10 UTC (rev 22744)
@@ -75,21 +75,6 @@
        <dependencies>
                <dependency>
                        <groupId>org.cytoscape</groupId>
-                       <artifactId>viewmodel-api</artifactId>
-                       <version>3.0.0-alpha1</version>
-               </dependency>
-               <dependency>
-                       <groupId>org.cytoscape</groupId>
-                       <artifactId>model-api</artifactId>
-                       <version>3.0.0-alpha1</version>
-               </dependency>
-               <dependency>
-                       <groupId>org.cytoscape</groupId>
-                       <artifactId>event-api</artifactId>
-                       <version>3.0.0-alpha1</version>
-               </dependency>
-               <dependency>
-                       <groupId>org.cytoscape</groupId>
                        <artifactId>layout-api</artifactId>
                        <version>1.0-SNAPSHOT</version>
                </dependency>
@@ -98,29 +83,8 @@
                        <artifactId>io-api</artifactId>
                        <version>3.0.0-alpha2-SNAPSHOT</version>
                </dependency>
+               
                <dependency>
-                       <groupId>org.cytoscape</groupId>
-                       <artifactId>work-api</artifactId>
-                       <version>3.0.0-alpha1</version>
-               </dependency>
-               <dependency>
-                       <groupId>org.cytoscape</groupId>
-                       <artifactId>core-task-api</artifactId>
-                       <version>3.0.0-alpha1</version>
-               </dependency>
-               <dependency>
-                       <groupId>org.cytoscape</groupId>
-                       <artifactId>session-api</artifactId>
-                       <version>3.0.0-alpha1</version>
-                       <scope>provided</scope>
-               </dependency>
-               <dependency>
-                       <groupId>org.cytoscape</groupId>
-                       <artifactId>property-api</artifactId>
-                       <version>3.0.0-alpha1</version>
-                       <scope>provided</scope>
-               </dependency>
-               <dependency>
                        <groupId>com.lowagie.text</groupId>
                        <artifactId>com.springsource.com.lowagie.text
                        </artifactId>
@@ -191,6 +155,7 @@
                  <artifactId>jaxb-impl</artifactId>
                  <version>2.2.1</version>
                </dependency>
+               
                <!-- For Testing -->
                <dependency>
                        <groupId>junit</groupId>

Modified: core3/layout-api/trunk/pom.xml
===================================================================
--- core3/layout-api/trunk/pom.xml      2010-11-06 00:27:06 UTC (rev 22743)
+++ core3/layout-api/trunk/pom.xml      2010-11-06 00:39:10 UTC (rev 22744)
@@ -73,22 +73,7 @@
 
        <dependencies>
                <dependency>
-                       <groupId>org.cytoscape</groupId>
-                       <artifactId>model-api</artifactId>
-                       <version>1.0-SNAPSHOT</version>
-               </dependency>
-               <dependency>
                        <groupId>org.cytoscape</groupId>
-                       <artifactId>viewmodel-api</artifactId>
-                       <version>1.0-SNAPSHOT</version>
-               </dependency>
-               <dependency>
-                       <groupId>org.cytoscape</groupId>
-                       <artifactId>work-api</artifactId>
-                       <version>1.0-SNAPSHOT</version>
-               </dependency>
-               <dependency>
-                       <groupId>org.cytoscape</groupId>
                        <artifactId>presentation-api</artifactId>
                        <version>3.0.0-alpha2-SNAPSHOT</version>
                </dependency>

Modified: core3/swing-application-impl/trunk/pom.xml
===================================================================
--- core3/swing-application-impl/trunk/pom.xml  2010-11-06 00:27:06 UTC (rev 
22743)
+++ core3/swing-application-impl/trunk/pom.xml  2010-11-06 00:39:10 UTC (rev 
22744)
@@ -84,11 +84,6 @@
 
        <dependencies>
                <dependency>
-                       <groupId>cytoscape-sun</groupId>
-                       <artifactId>jhall</artifactId>
-                       <version>1.0</version>
-               </dependency>
-               <dependency>
                        <groupId>org.cytoscape</groupId>
                        <artifactId>swing-application-api</artifactId>
                        <version>1.0-SNAPSHOT</version>
@@ -105,11 +100,6 @@
                </dependency>
                <dependency>
                        <groupId>org.cytoscape</groupId>
-                       <artifactId>work-api</artifactId>
-                       <version>3.0.0-alpha1</version>
-               </dependency>
-               <dependency>
-                       <groupId>org.cytoscape</groupId>
                        <artifactId>work-swing-api</artifactId>
                        <version>1.0-SNAPSHOT</version>
                </dependency>
@@ -145,11 +135,6 @@
                </dependency>
                <dependency>
                        <groupId>org.cytoscape</groupId>
-                       <artifactId>session-api</artifactId>
-                       <version>3.0.0-alpha1</version>
-               </dependency>
-               <dependency>
-                       <groupId>org.cytoscape</groupId>
                        <artifactId>core-task-api</artifactId>
                        <version>3.0.0-alpha1</version>
                </dependency>

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