• 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/branches/omero_ds_fix/pom.xml

Revision 1096, 4.8 kB (checked in by jmoore, 2 years ago)

#538 Upgraded to Hibernate 3.2.1.GA, Spring 2.0.1, & TestNG 5.2

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# Copyright (C) 2005 Open Microscopy Environment
8#       Massachusetts Institue of Technology,
9#       National Institutes of Health,
10#       University of Dundee
11#
12#
13#
14#    This library is free software; you can redistribute it and/or
15#    modify it under the terms of the GNU Lesser General Public
16#    License as published by the Free Software Foundation; either
17#    version 2.1 of the License, or (at your option) any later
18#    version.
19#
20#    This library is distributed in the hope that it will be useful,
21#    but WITHOUT ANY WARRANTY; without even the implied warranty of
22#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
23#    Lesser General Public License for more details.
24#
25#    You should have received a copy of the GNU Lesser General Public
26#    License along with this library; if not, write to the Free
27#    Software
28#    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
29#    02111-1307  USA
30#
31#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
32
33#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
34# Written by:  Josh Moore <josh.moore@gmx.de>
35#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
36   
37  DOCUMENTATION:
38  ============================================================
39
40  Maven2 Project Object Model (POM)
41
42  Omero uses this and the pom.xml files available
43  under each component directory as a definition of
44  the dependencies necessary for the build. This
45  information is parsed by the maven.xml ant script
46  under components/antlib/resources/maven.xml and
47  generates the classpath.xml files in each component
48  directory for use by ant.
49
50-->
51
52  <modelVersion>4.0.0</modelVersion>
53  <name>Omero Project</name>
54  <groupId>omero</groupId>
55  <version>3.0-TRUNK</version>
56  <artifactId>main</artifactId>
57  <packaging>pom</packaging>
58  <modules>
59    <module>components/antlib</module>
60    <module>components/dsl</module>
61    <module>components/common</module>
62    <module>components/romio</module>
63    <module>components/rendering</module>
64    <module>components/server</module>
65    <module>components/ejb</module>
66    <module>components/app</module>
67    <module>components/client</module>
68    <module>components/bioformats-omero</module>
69    <!--module>components/ice</module-->
70  </modules>
71  <repositories>
72    <repository>
73      <id>ome</id>
74      <name>Ome Central Repository</name>
75      <url>http://cvs.openmicroscopy.org.uk/maven</url>
76    </repository>
77  </repositories>
78  <dependencies>
79    <dependency>
80      <groupId>omero</groupId>
81      <artifactId>jboss-ejb3x</artifactId>
82      <version>4.0.4.GA</version>
83    </dependency>
84    <dependency>
85      <groupId>org.springframework</groupId>
86      <artifactId>spring</artifactId>
87      <version>2.0</version>
88    </dependency>
89    <dependency>
90      <groupId>groovy</groupId>
91      <artifactId>groovy-all-1.0-jsr</artifactId>
92      <version>05</version>
93    </dependency>
94    <dependency>
95      <groupId>org.springframework</groupId>
96      <artifactId>spring-mock</artifactId>
97      <version>2.0</version>
98      <scope>test</scope>
99    </dependency>
100    <dependency>
101      <groupId>junit</groupId>
102      <artifactId>junit</artifactId>
103      <version>3.8.1</version>
104      <scope>test</scope>
105    </dependency>
106    <dependency>
107      <groupId>testng</groupId>
108      <artifactId>testng</artifactId>
109      <version>5.2-jdk15</version>
110      <scope>test</scope>
111    </dependency>
112   <dependency>
113      <groupId>jmock</groupId>
114      <artifactId>jmock</artifactId>
115      <version>1.0.1</version>
116      <scope>test</scope>
117    </dependency>
118    <dependency>
119      <groupId>omero</groupId>
120      <artifactId>postgresql</artifactId>
121      <version>8.1-405.jdbc3</version>
122      <scope>test</scope>
123    </dependency>
124    <dependency>
125      <groupId>commons-collections</groupId>
126      <artifactId>commons-collections</artifactId>
127      <version>3.1</version>
128    </dependency>
129    <dependency>
130      <groupId>commons-logging</groupId>
131      <artifactId>commons-logging</artifactId>
132      <version>1.0.4</version>
133      <exclusions>
134        <exclusion>
135          <groupId>avalon-framework</groupId>
136          <artifactId>avalon-framework</artifactId>
137        </exclusion>
138        <exclusion>
139          <groupId>logkit</groupId>
140          <artifactId>logkit</artifactId>
141        </exclusion>
142      </exclusions>
143    </dependency>
144    <dependency>
145      <groupId>log4j</groupId>
146      <artifactId>log4j</artifactId>
147      <version>1.2.8</version>
148    </dependency>
149  </dependencies>
150</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/