• Views
  • Iteration Report
  • My Iteration Report
  •  
OMERO.server
  • Login
  • Help/Guide
  • About Trac
  • Preferences
  • Wiki
  • Timeline
  • Roadmap
  • Browse Source
  • View Tickets
  • Search

Context Navigation

  • Last Change
  • Annotate
  • Revision Log

root/tags/omero-3.0-Beta2/pom.xml

Revision 1586, 4.0 kB (checked in by jmoore, 20 months ago)

s/3.0-TRUNK/3.0-Beta2/g

  • Property svn:keywords set to Id
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4<!--
5#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
6#
7# $Id$
8#
9# Copyright 2006 University of Dundee. All rights reserved.
10# Use is subject to license terms supplied in LICENSE.txt
11#
12#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
13
14#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
15# Written by:  Josh Moore <josh.moore@gmx.de>
16#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
17   
18  DOCUMENTATION:
19  ============================================================
20
21  Maven2 Project Object Model (POM)
22
23  Omero uses this and the pom.xml files available
24  under each component directory as a definition of
25  the dependencies necessary for the build. This
26  information is parsed by the maven.xml ant script
27  under components/antlib/resources/maven.xml and
28  generates the classpath.xml files in each component
29  directory for use by ant.
30
31  -----
32
33-->
34
35  <modelVersion>4.0.0</modelVersion>
36  <name>Omero Project</name>
37  <groupId>omero</groupId>
38  <version>3.0-Beta2</version>
39  <artifactId>main</artifactId>
40  <packaging>pom</packaging>
41  <modules>
42    <module>components/antlib</module>
43    <module>components/dsl</module>
44    <module>components/common</module>
45    <module>components/romio</module>
46    <module>components/rendering</module>
47    <module>components/server</module>
48    <module>components/ejb</module>
49    <module>components/app</module>
50    <module>components/client</module>
51    <module>components/bioformats-omero</module>
52    <!--module>components/ice</module-->
53  </modules>
54  <repositories>
55    <repository>
56      <id>ome</id>
57      <name>Ome Central Repository</name>
58      <url>http://cvs.openmicroscopy.org.uk/maven</url>
59    </repository>
60  </repositories>
61  <dependencies>
62    <dependency>
63      <groupId>omero</groupId>
64      <artifactId>jboss-ejb3x</artifactId>
65      <version>4.0.4.GA</version>
66    </dependency>
67    <dependency>
68      <groupId>org.springframework</groupId>
69      <artifactId>spring</artifactId>
70      <version>2.0</version>
71    </dependency>
72    <dependency>
73      <groupId>groovy</groupId>
74      <artifactId>groovy</artifactId>
75      <version>all-1.0</version>
76    </dependency>
77    <dependency>
78      <groupId>org.springframework</groupId>
79      <artifactId>spring-mock</artifactId>
80      <version>2.0</version>
81      <scope>test</scope>
82    </dependency>
83    <dependency>
84      <groupId>junit</groupId>
85      <artifactId>junit</artifactId>
86      <version>3.8.1</version>
87      <scope>test</scope>
88    </dependency>
89    <dependency>
90      <groupId>testng</groupId>
91      <artifactId>testng</artifactId>
92      <version>5.2-jdk15</version>
93      <scope>test</scope>
94    </dependency>
95   <dependency>
96      <groupId>jmock</groupId>
97      <artifactId>jmock</artifactId>
98      <version>1.0.1</version>
99      <scope>test</scope>
100    </dependency>
101    <dependency>
102      <groupId>omero</groupId>
103      <artifactId>postgresql</artifactId>
104      <version>8.1-405.jdbc3</version>
105      <scope>test</scope>
106    </dependency>
107    <dependency>
108      <groupId>commons-collections</groupId>
109      <artifactId>commons-collections</artifactId>
110      <version>3.1</version>
111    </dependency>
112    <dependency>
113      <groupId>commons-logging</groupId>
114      <artifactId>commons-logging</artifactId>
115      <version>1.0.4</version>
116      <exclusions>
117        <exclusion>
118          <groupId>avalon-framework</groupId>
119          <artifactId>avalon-framework</artifactId>
120        </exclusion>
121        <exclusion>
122          <groupId>logkit</groupId>
123          <artifactId>logkit</artifactId>
124        </exclusion>
125      </exclusions>
126    </dependency>
127    <dependency>
128      <groupId>log4j</groupId>
129      <artifactId>log4j</artifactId>
130      <version>1.2.8</version>
131    </dependency>
132  </dependencies>
133</project>
Note: See TracBrowser for help on using the browser.

Download in other formats:

  • Plain Text
  • Original Format

Trac Powered

Powered by Trac 0.11
By Edgewall Software.

Visit the Trac open source project at
http://trac.edgewall.org/