maia/clients/comaco/ear/pom.xml

339 lines
12 KiB
XML
Executable File

<?xml version="1.0"?>
<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/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>maia</artifactId>
<groupId>com.fp.clients</groupId>
<version>2.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>com.fp.clients.maia</groupId>
<artifactId>maiaear</artifactId>
<name>ear maia</name>
<version>2.1</version>
<packaging>ear</packaging>
<dependencies>
<dependency>
<groupId>com.fp.clients.maia</groupId>
<artifactId>environment-eap6</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.fp.base.dto</groupId>
<artifactId>common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.fp.base.dto</groupId>
<artifactId>dto</artifactId>
<version>${project.version}</version>
</dependency>
<!--ejb-->
<dependency>
<groupId>com.fp.base</groupId>
<artifactId>facade</artifactId>
<version>${project.version}</version>
<type>ejb</type>
</dependency>
<dependency>
<groupId>com.fp.base</groupId>
<artifactId>facadeclient</artifactId>
<version>${project.version}</version>
<type>ejb</type>
</dependency>
<dependency>
<groupId>com.fp.base</groupId>
<artifactId>sessionbeans</artifactId>
<version>${project.version}</version>
<type>ejb</type>
</dependency>
<!--persistencia-->
<dependency>
<groupId>com.fp.base.persistence</groupId>
<artifactId>commondb</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.fp.base.persistence</groupId>
<artifactId>util</artifactId>
<version>${project.version}</version>
</dependency>
<!--core -->
<dependency>
<groupId>com.fp.base.core</groupId>
<artifactId>bpm</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.fp.base.core</groupId>
<artifactId>firmas</artifactId>
<version>${project.version}</version>
</dependency>
<!--modulos generales-->
<dependency>
<groupId>com.fp.base.business</groupId>
<artifactId>general</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.fp.base.persistence</groupId>
<artifactId>pgeneral</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.fp.base.persistence</groupId>
<artifactId>pfirmas</artifactId>
<version>${project.version}</version>
</dependency>
<!--modulos log-->
<dependency>
<groupId>com.fp.base.business</groupId>
<artifactId>log</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.fp.base.persistence</groupId>
<artifactId>plog</artifactId>
<version>${project.version}</version>
</dependency>
<!--modulos person-->
<dependency>
<groupId>com.fp.base.business</groupId>
<artifactId>person</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.fp.base.persistence</groupId>
<artifactId>pcustomer</artifactId>
<version>${project.version}</version>
</dependency>
<!--modulos report-->
<dependency>
<groupId>com.fp.base.business</groupId>
<artifactId>report</artifactId>
<version>${project.version}</version>
</dependency>
<!--modulos control de armas-->
<dependency>
<groupId>com.fp.base.business</groupId>
<artifactId>armas</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.fp.base.persistence</groupId>
<artifactId>parmas</artifactId>
<version>${project.version}</version>
</dependency>
<!--bpm -->
<dependency>
<groupId>com.fp.base.bpm</groupId>
<artifactId>simple</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.fp.base.bpm</groupId>
<artifactId>bpmlib</artifactId>
<version>${project.version}</version>
<type>ejb</type>
</dependency>
<dependency>
<groupId>com.fp.base.persistence</groupId>
<artifactId>pbpm</artifactId>
<version>${project.version}</version>
</dependency>
<!--otros -->
<dependency>
<groupId>org.apache.velocity</groupId>
<artifactId>velocity-tools</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.velocity</groupId>
<artifactId>velocity</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-ear-plugin</artifactId>
<version>2.8</version>
<configuration>
<!-- Tell Maven we are using Java EE 6 -->
<version>6</version>
<!-- Para leer el archivo jboss-deployment-structure.xml -->
<earSourceDirectory>
${basedir}/src/main/resources
</earSourceDirectory>
<earSourceIncludes>
META-INF/jboss-deployment-structure.xml,META-INF/persistence.xml
</earSourceIncludes>
<!--filterDeploymentDescriptor>true</filterDeploymentDescriptor>
<generateClient>true</generateClient>
<earSourceIncludes> META-INF/persistence.xml
</earSourceIncludes-->
<filtering>true</filtering>
<filters>
<!-- filter>src/main/resources/facade.properties</filter -->
</filters>
<modules>
<jarModule>
<groupId>com.fp.clients.maia</groupId>
<artifactId>environment-eap6</artifactId>
<includeInApplicationXml>true</includeInApplicationXml>
</jarModule>
<jarModule>
<groupId>com.fp.base.dto</groupId>
<artifactId>common</artifactId>
<includeInApplicationXml>true</includeInApplicationXml>
</jarModule>
<jarModule>
<groupId>com.fp.base.dto</groupId>
<artifactId>dto</artifactId>
<includeInApplicationXml>true</includeInApplicationXml>
</jarModule>
<!--ejb-->
<ejbModule>
<groupId>com.fp.base</groupId>
<artifactId>facade</artifactId>
<bundleFileName>facade.jar</bundleFileName>
</ejbModule>
<ejbModule>
<groupId>com.fp.base</groupId>
<artifactId>facadeclient</artifactId>
<bundleFileName>facadeclient.jar</bundleFileName>
</ejbModule>
<ejbModule>
<groupId>com.fp.base</groupId>
<artifactId>sessionbeans</artifactId>
<bundleFileName>sessionbeans.jar</bundleFileName>
</ejbModule>
<ejbModule>
<groupId>com.fp.base.bpm</groupId>
<artifactId>bpmlib</artifactId>
<bundleFileName>bpmlib.jar</bundleFileName>
</ejbModule>
<!--persistencia-->
<jarModule>
<groupId>com.fp.base.persistence</groupId>
<artifactId>commondb</artifactId>
<includeInApplicationXml>true</includeInApplicationXml>
</jarModule>
<jarModule>
<groupId>com.fp.base.persistence</groupId>
<artifactId>util</artifactId>
<includeInApplicationXml>true</includeInApplicationXml>
</jarModule>
<!--core -->
<jarModule>
<groupId>com.fp.base.core</groupId>
<artifactId>bpm</artifactId>
<includeInApplicationXml>true</includeInApplicationXml>
</jarModule>
<jarModule>
<groupId>com.fp.base.core</groupId>
<artifactId>firmas</artifactId>
<includeInApplicationXml>true</includeInApplicationXml>
</jarModule>
<!--modulos generales-->
<jarModule>
<groupId>com.fp.base.business</groupId>
<artifactId>general</artifactId>
<includeInApplicationXml>true</includeInApplicationXml>
</jarModule>
<jarModule>
<groupId>com.fp.base.persistence</groupId>
<artifactId>pgeneral</artifactId>
<includeInApplicationXml>true</includeInApplicationXml>
</jarModule>
<!--modulos log-->
<jarModule>
<groupId>com.fp.base.business</groupId>
<artifactId>log</artifactId>
<includeInApplicationXml>true</includeInApplicationXml>
</jarModule>
<jarModule>
<groupId>com.fp.base.persistence</groupId>
<artifactId>plog</artifactId>
<includeInApplicationXml>true</includeInApplicationXml>
</jarModule>
<!--modulos person-->
<jarModule>
<groupId>com.fp.base.business</groupId>
<artifactId>person</artifactId>
<includeInApplicationXml>true</includeInApplicationXml>
</jarModule>
<jarModule>
<groupId>com.fp.base.persistence</groupId>
<artifactId>pcustomer</artifactId>
<includeInApplicationXml>true</includeInApplicationXml>
</jarModule>
<!--modulos armas-->
<jarModule>
<groupId>com.fp.base.business</groupId>
<artifactId>armas</artifactId>
<includeInApplicationXml>true</includeInApplicationXml>
</jarModule>
<jarModule>
<groupId>com.fp.base.persistence</groupId>
<artifactId>parmas</artifactId>
<includeInApplicationXml>true</includeInApplicationXml>
</jarModule>
<!--modulos report-->
<jarModule>
<groupId>com.fp.base.business</groupId>
<artifactId>report</artifactId>
<includeInApplicationXml>true</includeInApplicationXml>
</jarModule>
<!--bpm -->
<jarModule>
<groupId>com.fp.base.bpm</groupId>
<artifactId>simple</artifactId>
<includeInApplicationXml>true</includeInApplicationXml>
</jarModule>
<jarModule>
<groupId>com.fp.base.persistence</groupId>
<artifactId>pbpm</artifactId>
<includeInApplicationXml>true</includeInApplicationXml>
</jarModule>
<jarModule>
<groupId>com.fp.base.persistence</groupId>
<artifactId>pfirmas</artifactId>
<includeInApplicationXml>true</includeInApplicationXml>
</jarModule>
</modules>
<!--security> <security-role id="SecurityRole_1234"> <role-name>manager</role-name> </security-role> </security -->
</configuration>
</plugin>
</plugins>
</build>
</project>