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

Revision 575, 4.6 kB (checked in by jmoore, 3 years ago)

[Build] Added JMock to top-level POM (and javadoc target).

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-M1</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/omeio-bdb</module>-->
63    <module>components/omeio-nio</module>
64<!--<module>components/sandbox</module>
65    <module>components/omero-ice</module>-->
66    <module>components/rendering</module>
67    <module>components/server</module>
68    <module>components/omero-ejb</module>
69    <module>components/omero-app</module>
70    <module>components/client</module>
71    <module>components/shoola-adapter</module>
72  </modules>
73  <repositories>
74    <repository>
75      <id>ome</id>
76      <name>Ome Central Repository</name>
77      <url>http://cvs.openmicroscopy.org.uk/maven</url>
78    </repository>
79  </repositories>
80  <dependencies>
81    <dependency>
82      <groupId>org.springframework</groupId>
83      <artifactId>spring</artifactId>
84      <version>2.0-m3</version>
85    </dependency>
86    <dependency>
87      <groupId>groovy</groupId>
88      <artifactId>groovy-all-1.0-jsr</artifactId>
89      <version>05</version>
90    </dependency>
91    <dependency>
92      <groupId>org.springframework</groupId>
93      <artifactId>spring-mock</artifactId>
94      <version>2.0-m3</version>
95      <scope>test</scope>
96    </dependency>
97    <dependency>
98      <groupId>junit</groupId>
99      <artifactId>junit</artifactId>
100      <version>3.8.1</version>
101      <scope>test</scope>
102    </dependency>
103   <dependency>
104      <groupId>jmock</groupId>
105      <artifactId>jmock</artifactId>
106      <version>1.0.1</version>
107      <scope>test</scope>
108    </dependency>
109    <dependency>
110      <groupId>omero</groupId>
111      <artifactId>postgresql</artifactId>
112      <version>8.1-405.jdbc3</version>
113      <scope>test</scope>
114    </dependency>
115    <dependency>
116      <groupId>commons-collections</groupId>
117      <artifactId>commons-collections</artifactId>
118      <version>3.1</version>
119    </dependency>
120    <dependency>
121      <groupId>commons-logging</groupId>
122      <artifactId>commons-logging</artifactId>
123      <version>1.0.4</version>
124      <exclusions>
125        <exclusion>
126          <groupId>avalon-framework</groupId>
127          <artifactId>avalon-framework</artifactId>
128        </exclusion>
129        <exclusion>
130          <groupId>logkit</groupId>
131          <artifactId>logkit</artifactId>
132        </exclusion>
133      </exclusions>
134    </dependency>
135    <dependency>
136      <groupId>log4j</groupId>
137      <artifactId>log4j</artifactId>
138      <version>1.2.8</version>
139    </dependency>
140  </dependencies>
141</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/