maia_modificado/base/persistence/pom.xml

53 lines
1.8 KiB
XML
Executable File

<?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/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>base</artifactId>
<groupId>com.fp</groupId>
<version>2.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>com.fp.base</groupId>
<artifactId>persistence</artifactId>
<name>persistence</name>
<version>2.1</version>
<packaging>pom</packaging>
<description>Financial Lifecycle Process Persistence Beans</description>
<modules>
<module>commondb</module>
<module>pgeneral</module>
<module>pcustomer</module>
<module>pbpm</module>
<module>util</module>
<module>plog</module>
<module>pviaticos</module>
<module>pfirmas</module>
<module>parmas</module>
</modules>
<dependencies>
<dependency>
<groupId>com.fp.base.dto</groupId>
<artifactId>dto</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.fp.base.dto</groupId>
<artifactId>common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.jboss.spec.javax.ejb</groupId>
<artifactId>jboss-ejb-api_3.1_spec</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-entitymanager</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
</project>