| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- |
| |
| Copyright 2003-2004 The Apache Software Foundation |
| |
| Licensed under the Apache License, Version 2.0 (the "License"); |
| you may not use this file except in compliance with the License. |
| You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, software |
| distributed under the License is distributed on an "AS IS" BASIS, |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| See the License for the specific language governing permissions and |
| limitations under the License. |
| --> |
| |
| <!-- $Rev$ $Date$ --> |
| |
| <project> |
| <pomVersion>3</pomVersion> |
| <extend>../../etc/project.xml</extend> |
| |
| <!-- ===================== --> |
| <!-- Module Identification --> |
| <!-- ===================== --> |
| |
| <name>Geronimo :: Common</name> |
| <id>geronimo-common</id> |
| |
| <shortDescription>Geronimo Common</shortDescription> |
| <description>Geronimo Common</description> |
| <url>http://geronimo.apache.org/modules/common/</url> |
| <siteDirectory>/www/geronimo.apache.org/modules/common</siteDirectory> |
| <distributionDirectory>/www/incubator.apache.org/projects/geronimo/builds/common</distributionDirectory> |
| |
| <package>org.apache.geronimo.common</package> |
| |
| <!-- ============ --> |
| <!-- Dependencies --> |
| <!-- ============ --> |
| |
| <dependencies> |
| <dependency> |
| <groupId>geronimo</groupId> |
| <artifactId>geronimo-kernel</artifactId> |
| <version>${pom.currentVersion}</version> |
| </dependency> |
| |
| <!-- Thirdparty Dependencies --> |
| <dependency> |
| <groupId>commons-logging</groupId> |
| <artifactId>commons-logging</artifactId> |
| <version>${commons_logging_version}</version> |
| <url>http://jakarta.apache.org/commons/logging</url> |
| </dependency> |
| |
| <dependency> |
| <groupId>log4j</groupId> |
| <artifactId>log4j</artifactId> |
| <version>${log4j_version}</version> |
| <url>http://jakarta.apache.org/log4j</url> |
| </dependency> |
| |
| <dependency> |
| <groupId>mx4j</groupId> |
| <artifactId>mx4j</artifactId> |
| <version>${mx4j_version}</version> |
| <url>http://mx4j.sourceforge.net</url> |
| </dependency> |
| |
| </dependencies> |
| |
| |
| <!-- =================== --> |
| <!-- Build Specification --> |
| <!-- Build Specification --> |
| <!-- =================== --> |
| |
| <build> |
| <resources> |
| <resource> |
| <directory>${basedir}/src/conf</directory> |
| <includes> |
| <include>*.properties</include> |
| </includes> |
| </resource> |
| </resources> |
| |
| <unitTest> |
| <!-- For some reason this is not pulled from the global project --> |
| <includes> |
| <include>**/*Test.java</include> |
| </includes> |
| <excludes> |
| <exclude>**/Abstract*.java</exclude> |
| </excludes> |
| |
| <resources> |
| <resource> |
| <directory>${basedir}/src/test-data</directory> |
| <includes> |
| <include>**/*</include> |
| </includes> |
| </resource> |
| </resources> |
| </unitTest> |
| </build> |
| |
| </project> |