<?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"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>com.ellisdon.portal</groupId> | |
<artifactId>ellisdon-myvacation-portlet</artifactId> | |
<packaging>war</packaging> | |
<version>1.0</version> | |
<repositories> | |
<repository> | |
<id>ZK EE</id> | |
<name>ZK Maven Reposiroty</name> | |
<url>https://maven.zkoss.org/repo/zk/ee</url> | |
</repository> | |
<repository> | |
<id>JBoss</id> | |
<name>JBoss Maven Repsitory</name> | |
<url>https://repository.jboss.org/nexus/content/groups/public/</url> | |
</repository> | |
</repositories> | |
<properties> | |
<spring.version>3.0.5.RELEASE</spring.version> | |
<zk.version>5.0.5</zk.version> | |
<hibernate.version>3.6.0.Beta2</hibernate.version> | |
</properties> | |
<dependencies> | |
<!-- Spring Framework artificats --> | |
<dependency> | |
<groupId>org.springframework</groupId> | |
<artifactId>spring-orm</artifactId> | |
<version>${spring.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework</groupId> | |
<artifactId>spring-jdbc</artifactId> | |
<version>${spring.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework</groupId> | |
<artifactId>spring-aop</artifactId> | |
<version>${spring.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework</groupId> | |
<artifactId>spring-test</artifactId> | |
<version>${spring.version}</version> | |
</dependency> | |
<!-- Hibernate & Java Persistence artificats --> | |
<dependency> | |
<groupId>org.hibernate</groupId> | |
<artifactId>hibernate-core</artifactId> | |
<version>${hibernate.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>javax.persistence</groupId> | |
<artifactId>persistence</artifactId> | |
<version>3.0</version> | |
</dependency> | |
<!-- LifeRay artificats --> | |
<dependency> | |
<groupId>com.liferay</groupId> | |
<artifactId>portal-service</artifactId> | |
<version>1.0</version> | |
<scope>provided</scope> | |
</dependency> | |
<dependency> | |
<groupId>com.liferay</groupId> | |
<artifactId>portal-kernel</artifactId> | |
<version>1.0</version> | |
<scope>provided</scope> | |
</dependency> | |
<!-- ZK Framework artificats --> | |
<dependency> | |
<groupId>org.zkoss.zk</groupId> | |
<artifactId>zk</artifactId> | |
<version>${zk.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>org.zkoss.zk</groupId> | |
<artifactId>zul</artifactId> | |
<version>${zk.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>org.zkoss.zk</groupId> | |
<artifactId>zkmax</artifactId> | |
<version>${zk.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>org.zkoss.zk</groupId> | |
<artifactId>zkspring-core</artifactId> | |
<version>3.0RC</version> | |
</dependency> | |
<!-- Log4J --> | |
<dependency> | |
<groupId>log4j</groupId> | |
<artifactId>log4j</artifactId> | |
<version>1.2.15</version> | |
</dependency> | |
<!-- JUnit --> | |
<dependency> | |
<groupId>junit</groupId> | |
<artifactId>junit</artifactId> | |
<version>4.8</version> | |
</dependency> | |
<!-- JDBC Driver --> | |
<dependency> | |
<groupId>com.mysql</groupId> | |
<artifactId>jdbc-driver</artifactId> | |
<version>5.1.5</version> | |
</dependency> | |
<!-- Other Dependencies --> | |
<dependency> | |
<groupId>org.slf4j</groupId> | |
<artifactId>slf4j-api</artifactId> | |
<version>1.5.6</version> | |
</dependency> | |
<dependency> | |
<groupId>org.slf4j</groupId> | |
<artifactId>slf4j-log4j12</artifactId> | |
<version>1.5.6</version> | |
</dependency> | |
<dependency> | |
<groupId>javassist</groupId> | |
<artifactId>javassist</artifactId> | |
<version>3.4.GA</version> | |
</dependency> | |
<dependency> | |
<groupId>cglib</groupId> | |
<artifactId>cglib</artifactId> | |
<version>2.2</version> | |
</dependency> | |
</dependencies> | |
<build> | |
<plugins> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-compiler-plugin</artifactId> | |
<configuration> | |
<source>1.6</source> | |
<target>1.6</target> | |
</configuration> | |
</plugin> | |
</plugins> | |
</build> | |
</project> |