Author: mes
Date: 2012-01-27 13:45:05 -0800 (Fri, 27 Jan 2012)
New Revision: 28137

Added:
   core3/impl/trunk/psi-mi-impl/pom.xml
Log:
added parent pom

Added: core3/impl/trunk/psi-mi-impl/pom.xml
===================================================================
--- core3/impl/trunk/psi-mi-impl/pom.xml                                (rev 0)
+++ core3/impl/trunk/psi-mi-impl/pom.xml        2012-01-27 21:45:05 UTC (rev 
28137)
@@ -0,0 +1,176 @@
+<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>
+
+       <artifactId>psi-mi-impl-parent</artifactId>
+       <packaging>pom</packaging>
+       <name>psi-mi-impl-parent</name>
+
+       <modules>
+               <module>impl</module>
+               <module>performance</module>
+       </modules>
+
+       <repositories>
+               <repository>
+                       <id>cytoscape_snapshots</id>
+                       <snapshots>
+                               <enabled>true</enabled>
+                       </snapshots>
+                       <releases>
+                               <enabled>false</enabled>
+                       </releases>
+                       <name>Cytoscape Snapshots</name>
+                       
<url>http://code.cytoscape.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://code.cytoscape.org/nexus/content/repositories/releases/</url>
+               </repository>
+               <repository>
+                       <id>ebi-repo</id>
+                       <name>The EBI internal repository</name>
+                       <url>http://www.ebi.ac.uk/~maven/m2repo</url>
+                       <releases>
+                               <enabled>true</enabled>
+                       </releases>
+                       <snapshots>
+                               <enabled>false</enabled>
+                       </snapshots>
+               </repository>
+               <repository>
+                       <id>ebi-repo-snapshots</id>
+                       <name>The EBI internal repository</name>
+                       <url>http://www.ebi.ac.uk/~maven/m2repo_snapshots</url>
+                       <releases>
+                               <enabled>false</enabled>
+                       </releases>
+                       <snapshots>
+                               <enabled>true</enabled>
+                       </snapshots>
+               </repository>
+               <!--
+               <repository>
+                       <id>maven2-repository.dev.java.net</id>
+                       <name>Java.net Repository for Maven</name>
+                       <url>http://download.java.net/maven/2/</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>
+               <!-- PSI-MI lib -->
+               <dependency>
+                       <groupId>psidev.psi.mi</groupId>
+                       <artifactId>psi25-xml</artifactId>
+                       <version>1.7.10-SNAPSHOT</version>
+               </dependency>
+
+               <!-- Logging -->
+               <dependency>
+                       <groupId>org.apache.commons</groupId>
+                       
<artifactId>com.springsource.org.apache.commons.logging</artifactId>
+                       <version>1.1.1</version>
+                       <optional>true</optional>
+               </dependency>
+
+               <dependency>
+                       <groupId>org.apache.log4j</groupId>
+                       
<artifactId>com.springsource.org.apache.log4j</artifactId>
+                       <version>1.2.15</version>
+                       <optional>true</optional>
+               </dependency>
+
+
+               <dependency>
+                       <groupId>junit</groupId>
+                       <artifactId>junit</artifactId>
+                       <scope>test</scope>
+               </dependency>
+               <dependency>
+                       <groupId>org.cytoscape</groupId>
+                       <artifactId>io-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.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>event-api</artifactId>
+                       <type>test-jar</type>
+                       <scope>test</scope>
+               </dependency>
+               <dependency>
+                       <groupId>org.cytoscape</groupId>
+                       <artifactId>equations-api</artifactId>
+                       <scope>test</scope>
+               </dependency>
+               <dependency>
+                       <groupId>org.cytoscape</groupId>
+                       <artifactId>ding-presentation-impl</artifactId>
+                       <version>${project.version}</version>
+                       <type>test-jar</type>
+                       <scope>test</scope>
+               </dependency>
+               <dependency>
+                       <groupId>org.cytoscape</groupId>
+                       <artifactId>ding-presentation-impl</artifactId>
+                       <version>${project.version}</version>
+                       <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.

Reply via email to