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

Revision 1171, 4.0 kB (checked in by jmoore, 21 months ago)

[NAMING] 3.0-Beta1

  • 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  <modelVersion>4.0.0</modelVersion>
34  <name>Omero Project</name>
35  <groupId>omero</groupId>
36  <version>3.0-Beta1</version>
37  <artifactId>main</artifactId>
38  <packaging>pom</packaging>
39  <modules>
40    <module>components/antlib</module>
41    <module>components/dsl</module>
42    <module>components/common</module>
43    <module>components/romio</module>
44    <module>components/rendering</module>
45    <module>components/server</module>
46    <module>components/ejb</module>
47    <module>components/app</module>
48    <module>components/client</module>
49    <module>components/bioformats-omero</module>
50    <!--module>components/ice</module-->
51  </modules>
52  <repositories>
53    <repository>
54      <id>ome</id>
55      <name>Ome Central Repository</name>
56      <url>http://cvs.openmicroscopy.org.uk/maven</url>
57    </repository>
58  </repositories>
59  <dependencies>
60    <dependency>
61      <groupId>omero</groupId>
62      <artifactId>jboss-ejb3x</artifactId>
63      <version>4.0.4.GA</version>
64    </dependency>
65    <dependency>
66      <groupId>org.springframework</groupId>
67      <artifactId>spring</artifactId>
68      <version>2.0</version>
69    </dependency>
70    <dependency>
71      <groupId>groovy</groupId>
72      <artifactId>groovy-all-1.0-jsr</artifactId>
73      <version>05</version>
74    </dependency>
75    <dependency>
76      <groupId>org.springframework</groupId>
77      <artifactId>spring-mock</artifactId>
78      <version>2.0</version>
79      <scope>test</scope>
80    </dependency>
81    <dependency>
82      <groupId>junit</groupId>
83      <artifactId>junit</artifactId>
84      <version>3.8.1</version>
85      <scope>test</scope>
86    </dependency>
87    <dependency>
88      <groupId>testng</groupId>
89      <artifactId>testng</artifactId>
90      <version>5.2-jdk15</version>
91      <scope>test</scope>
92    </dependency>
93   <dependency>
94      <groupId>jmock</groupId>
95      <artifactId>jmock</artifactId>
96      <version>1.0.1</version>
97      <scope>test</scope>
98    </dependency>
99    <dependency>
100      <groupId>omero</groupId>
101      <artifactId>postgresql</artifactId>
102      <version>8.1-405.jdbc3</version>
103      <scope>test</scope>
104    </dependency>
105    <dependency>
106      <groupId>commons-collections</groupId>
107      <artifactId>commons-collections</artifactId>
108      <version>3.1</version>
109    </dependency>
110    <dependency>
111      <groupId>commons-logging</groupId>
112      <artifactId>commons-logging</artifactId>
113      <version>1.0.4</version>
114      <exclusions>
115        <exclusion>
116          <groupId>avalon-framework</groupId>
117          <artifactId>avalon-framework</artifactId>
118        </exclusion>
119        <exclusion>
120          <groupId>logkit</groupId>
121          <artifactId>logkit</artifactId>
122        </exclusion>
123      </exclusions>
124    </dependency>
125    <dependency>
126      <groupId>log4j</groupId>
127      <artifactId>log4j</artifactId>
128      <version>1.2.8</version>
129    </dependency>
130  </dependencies>
131</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/