68 lines
1.7 KiB
XML
Executable File
68 lines
1.7 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>FlipBean</artifactId>
|
|
<groupId>com.fp</groupId>
|
|
<version>2.1</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>com.fp</groupId>
|
|
<artifactId>hbm</artifactId>
|
|
<name>hbm</name>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<configuration>
|
|
<source>1.6</source>
|
|
<target>1.6</target>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>com.fp.base.dto</groupId>
|
|
<artifactId>common</artifactId>
|
|
<version>2.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.fp.base.persistence</groupId>
|
|
<artifactId>commondb</artifactId>
|
|
<version>2.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>oracle</groupId>
|
|
<artifactId>JDBC</artifactId>
|
|
<!--version>6.0</version-->
|
|
|
|
</dependency>
|
|
<dependency>
|
|
<artifactId>hibernate-entitymanager</artifactId>
|
|
<groupId>org.hibernate</groupId>
|
|
<type>jar</type>
|
|
<version>3.5.3-Final</version>
|
|
</dependency>
|
|
<dependency>
|
|
<artifactId>hibernate-validator</artifactId>
|
|
<groupId>org.hibernate</groupId>
|
|
<type>jar</type>
|
|
<version>4.1.0.Final</version>
|
|
</dependency>
|
|
<dependency>
|
|
<artifactId>hibernate-core</artifactId>
|
|
<groupId>org.hibernate</groupId>
|
|
<type>jar</type>
|
|
<version>3.5.3-Final</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
<version>1.6.0</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|