util-geolocation-ear
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.ow2.util</groupId>
<artifactId>util-geolocation-ear</artifactId>
<version>1.0.37</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- OW2 Util
- Copyright (C) 2009 Bull S.A.S.
- Contact: easybeans@ow2.org
-
- This library is free software; you can redistribute it and/or
- modify it under the terms of the GNU Lesser General Public
- License as published by the Free Software Foundation; either
- version 2.1 of the License, or (at your option) any later version.
-
- This library is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- Lesser General Public License for more details.
-
- You should have received a copy of the GNU Lesser General Public
- License along with this library; if not, write to the Free Software
- Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- $Id: pom.xml 6311 2012-12-19 12:09:20Z albertil $
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<groupId>org.ow2.util</groupId>
<artifactId>util-geolocation</artifactId>
<version>1.0.37</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>util-geolocation-ear</artifactId>
<packaging>ear</packaging>
<name>OW2 Util :: Geolocation :: EAR</name>
<build>
<defaultGoal>package</defaultGoal>
<resources>
<resource>
<directory>src/main/resources</directory>
<targetPath>target/installersGEO/</targetPath>
<filtering>false</filtering>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-ear-plugin</artifactId>
<configuration>
<version>5</version>
<modules>
<ejbModule>
<groupId>org.ow2.util</groupId>
<artifactId>util-geolocation-ejb</artifactId>
</ejbModule>
<webModule>
<groupId>org.ow2.util</groupId>
<artifactId>util-geolocation-web</artifactId>
<contextRoot>/OW2ProductsService</contextRoot>
</webModule>
<webModule>
<groupId>org.ow2.util</groupId>
<artifactId>util-geolocation-gwt</artifactId>
<contextRoot>/OW2ProductsMap</contextRoot>
</webModule>
<jarModule>
<groupId>org.dspace.dependencies</groupId>
<artifactId>dspace-geoip</artifactId>
<bundleDir>lib</bundleDir>
</jarModule>
</modules>
</configuration>
</plugin>
</plugins>
<finalName>OW2Products</finalName>
</build>
<dependencies>
<dependency>
<groupId>org.ow2.util</groupId>
<artifactId>util-geolocation-web</artifactId>
<version>${project.version}</version>
<type>war</type>
</dependency>
<dependency>
<groupId>org.ow2.util</groupId>
<artifactId>util-geolocation-gwt</artifactId>
<version>${project.version}</version>
<type>war</type>
</dependency>
<dependency>
<groupId>org.ow2.util</groupId>
<artifactId>util-geolocation-ejb</artifactId>
<version>${project.version}</version>
<type>ejb</type>
</dependency>
<dependency>
<groupId>org.dspace.dependencies</groupId>
<artifactId>dspace-geoip</artifactId>
<version>${geoip.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>