Mentions légales du service

Skip to content
Snippets Groups Projects
pom.xml 3.82 KiB
Newer Older
Gabriel Landais's avatar
Gabriel Landais committed
<?xml version="1.0" encoding="UTF-8"?>
<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">
Gabriel Landais's avatar
Gabriel Landais committed
	<modelVersion>4.0.0</modelVersion>

	<parent>
		<groupId>net.ihe.gazelle.proxy</groupId>
		<artifactId>gazelle-proxy</artifactId>
Gabriel Landais's avatar
Gabriel Landais committed
		<relativePath>../pom.xml</relativePath>
	</parent>

	<artifactId>gazelle-proxy-ear</artifactId>
	<packaging>ear</packaging>
	<name>gazelle-proxy - EAR</name>

	<build>
		<plugins>
			<plugin>
				<artifactId>maven-ear-plugin</artifactId>
				<configuration>
Gabriel Landais's avatar
Gabriel Landais committed
					<version>5</version>
Gabriel Landais's avatar
Gabriel Landais committed
					<filtering>true</filtering>
Gabriel Landais's avatar
Gabriel Landais committed
					<finalName>gazelle-proxy</finalName>
					<!-- use for generating the jboss-app.xml file -->
					<jboss>
						<version>5</version>
						<loader-repository>seam.jboss.org:loader=gazelle-proxy</loader-repository>
						<data-sources>
							<data-source>gazelle-proxy-ds.xml</data-source>
						</data-sources>
					</jboss>
					<!-- use for generating the application.xml file -->
Gabriel Landais's avatar
 
Gabriel Landais committed
					<includeLibInApplicationXml>false</includeLibInApplicationXml>
Gabriel Landais's avatar
Gabriel Landais committed
					<defaultLibBundleDir>lib</defaultLibBundleDir>

Gabriel Landais's avatar
Gabriel Landais committed
					<modules>
						<webModule>
							<groupId>net.ihe.gazelle.proxy</groupId>
							<artifactId>gazelle-proxy-war</artifactId>
Gabriel Landais's avatar
Gabriel Landais committed
							<contextRoot>proxy</contextRoot>
Gabriel Landais's avatar
Gabriel Landais committed
							<bundleFileName>gazelle-proxy-war.war</bundleFileName>
Gabriel Landais's avatar
Gabriel Landais committed
						</webModule>

Gabriel Landais's avatar
 
Gabriel Landais committed
						<ejbModule>
Gabriel Landais's avatar
 
Gabriel Landais committed
							<groupId>net.ihe.gazelle.proxy</groupId>
							<artifactId>gazelle-proxy-jar</artifactId>
							<uri>gazelle-proxy-jar.jar</uri>
Gabriel Landais's avatar
 
Gabriel Landais committed
						</ejbModule>
Gabriel Landais's avatar
 
Gabriel Landais committed

Gabriel Landais's avatar
Gabriel Landais committed
						<ejbModule>
							<groupId>net.ihe.gazelle.proxy</groupId>
							<artifactId>gazelle-proxy-ejb</artifactId>
							<bundleFileName>gazelle-proxy-ejb.jar</bundleFileName>
						</ejbModule>

					</modules>

				</configuration>
			</plugin>

			<plugin>
				<artifactId>maven-resources-plugin</artifactId>
				<configuration>
					<outputDirectory>${basedir}/target</outputDirectory>
				</configuration>
			</plugin>
		</plugins>

		<resources>
			<resource>
				<filtering>true</filtering>
				<directory>src/main/resources</directory>
			</resource>
		</resources>
	</build>
Gabriel Landais's avatar
Gabriel Landais committed

	<dependencies>
		<!-- Application modules -->
		<dependency>
			<groupId>net.ihe.gazelle.proxy</groupId>
			<artifactId>gazelle-proxy-war</artifactId>
			<type>war</type>
		</dependency>

Gabriel Landais's avatar
 
Gabriel Landais committed
		<dependency>
			<groupId>net.ihe.gazelle.proxy</groupId>
			<artifactId>gazelle-proxy-netty</artifactId>
			<type>jar</type>
		</dependency>

Gabriel Landais's avatar
 
Gabriel Landais committed
		<dependency>
			<groupId>net.ihe.gazelle.proxy</groupId>
			<artifactId>gazelle-proxy-jar</artifactId>
Gabriel Landais's avatar
 
Gabriel Landais committed
			<type>ejb</type>
Gabriel Landais's avatar
 
Gabriel Landais committed
		</dependency>

Gabriel Landais's avatar
Gabriel Landais committed
		<dependency>
			<groupId>net.ihe.gazelle.proxy</groupId>
			<artifactId>gazelle-proxy-ejb</artifactId>
			<type>ejb</type>
		</dependency>
Gabriel Landais's avatar
 
Gabriel Landais committed

		<!-- to exclude them from jboss lib if in dev mode -->

		<dependency>
			<groupId>org.jboss.seam</groupId>
			<artifactId>jboss-seam</artifactId>
			<version>${version.seam}</version>
			<type>ejb</type>
		</dependency>
		<dependency>
			<groupId>org.jboss.seam</groupId>
			<artifactId>jboss-seam-ui</artifactId>
		</dependency>
		<dependency>
			<groupId>org.jboss.seam</groupId>
			<artifactId>jboss-seam-debug</artifactId>
		</dependency>
		<dependency>
			<groupId>org.jboss.seam</groupId>
			<artifactId>jboss-seam-jul</artifactId>
		</dependency>

		<dependency>
			<groupId>org.richfaces.framework</groupId>
			<artifactId>richfaces-impl</artifactId>
		</dependency>
		<dependency>
			<groupId>org.richfaces.framework</groupId>
			<artifactId>richfaces-api</artifactId>
		</dependency>
		<dependency>
			<groupId>org.richfaces.ui</groupId>
			<artifactId>richfaces-ui</artifactId>
		</dependency>
		<dependency>
			<groupId>com.sun.facelets</groupId>
			<artifactId>jsf-facelets</artifactId>
		</dependency>

Gabriel Landais's avatar
Gabriel Landais committed
	</dependencies>

Gabriel Landais's avatar
Gabriel Landais committed
</project>