92 lines
2.6 KiB
XML
92 lines
2.6 KiB
XML
<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>
|
|
<parent>
|
|
<artifactId>logstats</artifactId>
|
|
<groupId>net.forwardfire.logstats</groupId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
</parent>
|
|
<artifactId>logstats-ejb</artifactId>
|
|
<packaging>ejb</packaging>
|
|
<name>logstats-ejb</name>
|
|
<description>logstats-ejb</description>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-ejb-plugin</artifactId>
|
|
<configuration>
|
|
<ejbVersion>3.0</ejbVersion>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>javax.ejb</groupId>
|
|
<artifactId>ejb-api</artifactId>
|
|
<version>3.0</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>javax.persistence</groupId>
|
|
<artifactId>persistence-api</artifactId>
|
|
<version>1.0</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.hibernate</groupId>
|
|
<artifactId>hibernate-annotations</artifactId>
|
|
<version>3.4.0.GA</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!-- X4O dependcy -->
|
|
<dependency>
|
|
<groupId>org.x4o</groupId>
|
|
<artifactId>x4o-core</artifactId>
|
|
<version>${x4o-core.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>javax.el</groupId>
|
|
<artifactId>el-ri</artifactId>
|
|
<version>1.2</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>javax.el</groupId>
|
|
<artifactId>el-api</artifactId>
|
|
<version>1.2</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!-- Vasc depency -->
|
|
<dependency>
|
|
<groupId>net.forwardfire.vasc</groupId>
|
|
<artifactId>vasc-backend-jpa</artifactId>
|
|
<version>${vasc.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.forwardfire.vasc</groupId>
|
|
<artifactId>vasc-xpql-ejb3</artifactId>
|
|
<version>${vasc.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.forwardfire.vasc</groupId>
|
|
<artifactId>vasc-ejb3</artifactId>
|
|
<version>${vasc.version}</version>
|
|
</dependency>
|
|
|
|
<!-- quick fix for quartz ... -->
|
|
<dependency>
|
|
<groupId>opensymphony</groupId>
|
|
<artifactId>quartz</artifactId>
|
|
<version>1.6.3</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
</project> |