Author: mes Date: 2011-09-20 15:47:22 -0700 (Tue, 20 Sep 2011) New Revision: 26898
Added: core3/impl/trunk/io-impl/pom.xml Log: added parent pom Added: core3/impl/trunk/io-impl/pom.xml =================================================================== --- core3/impl/trunk/io-impl/pom.xml (rev 0) +++ core3/impl/trunk/io-impl/pom.xml 2011-09-20 22:47:22 UTC (rev 26898) @@ -0,0 +1,192 @@ +<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"> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>org.cytoscape</groupId> + <artifactId>impl-parent</artifactId> + <version>3.0.0-alpha8-SNAPSHOT</version> + </parent> + + <groupId>org.cytoscape</groupId> + <artifactId>io-impl-parent</artifactId> + <packaging>pom</packaging> + <name>io-impl-parent</name> + + <modules> + <module>impl</module> + <module>performance</module> + </modules> + + + <build> + <plugins> + <plugin> + <inherited>false</inherited> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-release-plugin</artifactId> + <version>${maven-release-plugin.version}</version> + <configuration> + <autoVersionSubmodules>true</autoVersionSubmodules> + <goals>deploy</goals> + <!-- so that impl bundles with modules will build correctly --> + <preparationGoals>clean install</preparationGoals> + </configuration> + </plugin> + </plugins> + </build> + + + <repositories> + <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> + <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> + + <!-- + Dependencies included here should *ONLY* be for the impl bundle. + All additional dependencies necessary for the integration tests (it) + should be kept in the it/pom.xml + --> + <dependencies> + <dependency> + <groupId>org.cytoscape</groupId> + <artifactId>di-util-api</artifactId> + </dependency> + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-core</artifactId> + <version>${spring.version}</version> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>org.cytoscape</groupId> + <artifactId>equations-api</artifactId> + </dependency> + <dependency> + <groupId>org.cytoscape</groupId> + <artifactId>io-api</artifactId> + </dependency> + <dependency> + <groupId>org.cytoscape</groupId> + <artifactId>presentation-api</artifactId> + </dependency> + <dependency> + <groupId>org.cytoscape</groupId> + <artifactId>layout-api</artifactId> + </dependency> + <dependency> + <groupId>org.cytoscape</groupId> + <artifactId>model-api</artifactId> + </dependency> + <dependency> + <groupId>org.cytoscape</groupId> + <artifactId>core-task-api</artifactId> + </dependency> + <dependency> + <groupId>org.cytoscape</groupId> + <artifactId>property-api</artifactId> + </dependency> + <!-- 3rd party libraries --> + + <dependency> + <groupId>com.lowagie.text</groupId> + <artifactId>com.springsource.com.lowagie.text</artifactId> + <version>2.0.8</version> + </dependency> + <dependency> + <groupId>cytoscape-temp</groupId> + <artifactId>opencsv</artifactId> + <version>2.1</version> + </dependency> + + <!-- freehep --> + <dependency> + <groupId>cytoscape-temp</groupId> + <artifactId>freehep-graphicsio</artifactId> + <version>2.1.1</version> + </dependency> + <dependency> + <groupId>cytoscape-temp</groupId> + <artifactId>freehep-graphicsio-svg</artifactId> + <version>2.1.1</version> + </dependency> + <dependency> + <groupId>cytoscape-temp</groupId> + <artifactId>freehep-graphics2d</artifactId> + <version>2.1.1</version> + </dependency> + <dependency> + <groupId>cytoscape-temp</groupId> + <artifactId>freehep-graphicsio-ps</artifactId> + <version>2.1.1</version> + </dependency> + + <!-- For Testing --> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.mockito</groupId> + <artifactId>mockito-all</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.cytoscape</groupId> + <artifactId>model-impl</artifactId> + <version>${project.version}</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.cytoscape</groupId> + <artifactId>model-impl</artifactId> + <version>${project.version}</version> + <type>test-jar</type> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.cytoscape</groupId> + <artifactId>viewmodel-impl</artifactId> + <version>${project.version}</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.cytoscape</groupId> + <artifactId>viewmodel-impl</artifactId> + <version>${project.version}</version> + <type>test-jar</type> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.cytoscape</groupId> + <artifactId>service-api</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.cytoscape</groupId> + <artifactId>event-api</artifactId> + <type>test-jar</type> + <scope>test</scope> + </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.
