reservation
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.defne.samples</groupId>
<artifactId>reservation</artifactId>
<version>1.0.1</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
@Copyright 2010, MechSoft
MechSoft, Mechanical and Software Solutions
Licensed under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->
<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>
<groupId>org.defne.samples</groupId>
<artifactId>defne-samples</artifactId>
<version>1.0.1</version>
</parent>
<artifactId>reservation</artifactId>
<name>Samples :: Reservation Project</name>
<packaging>pom</packaging>
<version>1.0.1</version>
<!-- Application modules-->
<modules>
<!-- Utility -->
<module>util</module>
<!-- Model -->
<module>model</module>
<!-- Business Layer -->
<module>business</module>
<!-- Sample Web Application -->
<module>gui</module>
</modules>
<!-- Project dependent management section -->
<!-- Versions could be specified in properties section -->
<dependencyManagement>
<dependencies>
<!-- JSF 2 API JAR -->
<dependency>
<groupId>org.apache.myfaces.core</groupId>
<artifactId>myfaces-api</artifactId>
<version>${myfaces.version}</version>
</dependency>
<!-- RichFaces IMPL -->
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl-jsf2</artifactId>
<version>${richfaces.version}</version>
</dependency>
<!-- RichFaces UI -->
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
<version>${richfaces.version}</version>
</dependency>
<dependency>
<groupId>org.defne</groupId>
<artifactId>defne-owb</artifactId>
<version>1.0.1</version>
</dependency>
<dependency>
<groupId>org.defne</groupId>
<artifactId>defne-service</artifactId>
<exclusions>
<exclusion>
<groupId>net.sf.scannotation</groupId>
<artifactId>scannotation</artifactId>
</exclusion>
<exclusion>
<groupId>javassist</groupId>
<artifactId>javassist</artifactId>
</exclusion>
</exclusions>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.defne</groupId>
<artifactId>defne-jsf</artifactId>
<version>1.0.1</version>
</dependency>
<dependency>
<groupId>org.defne</groupId>
<artifactId>defne-jpa</artifactId>
<version>1.0.1</version>
</dependency>
<!-- JUnit JAR -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.5</version>
<scope>test</scope>
</dependency>
<!-- JPA 2.0 API Jar -->
<dependency>
<groupId>org.apache.geronimo.specs</groupId>
<artifactId>geronimo-jpa_2.0_spec</artifactId>
<version>${geronimo_jpa.version}</version>
</dependency>
<!-- JCDI 1.0 JAR -->
<dependency>
<groupId>org.apache.geronimo.specs</groupId>
<artifactId>geronimo-jcdi_1.0_spec</artifactId>
<version>${geronimo_cdi.version}</version>
</dependency>
<!-- AtInject 1.0 JAR -->
<dependency>
<groupId>org.apache.geronimo.specs</groupId>
<artifactId>geronimo-atinject_1.0_spec</artifactId>
<version>${geronimo_atinject.version}</version>
</dependency>
<!-- Interceptor API -->
<dependency>
<groupId>org.apache.geronimo.specs</groupId>
<artifactId>geronimo-interceptor_1.1_spec</artifactId>
<version>1.0</version>
</dependency>
</dependencies>
</dependencyManagement>
<properties>
<log4j.version>1.2.14</log4j.version>
<richfaces.version>3.3.3.Final</richfaces.version>
<geronimo_jaxws.version>1.0</geronimo_jaxws.version>
<geronimo_servlet.version>1.2</geronimo_servlet.version>
<geronimo_ejb.version>1.0.1</geronimo_ejb.version>
<geronimo_el.version>1.0</geronimo_el.version>
<geronimo_annotation.version>1.1</geronimo_annotation.version>
<geronimo_jpa.version>1.0</geronimo_jpa.version>
<geronimo_jta.version>1.1.1</geronimo_jta.version>
<geronimo_jsp.version>1.0.1</geronimo_jsp.version>
<geronimo_cdi.version>1.0</geronimo_cdi.version>
<geronimo_atinject.version>1.0</geronimo_atinject.version>
<geronimo_interceptor.version>1.0.0</geronimo_interceptor.version>
<geronimo_validation.version>1.0</geronimo_validation.version>
<javassist.version>3.11.0.GA</javassist.version>
<myfaces.version>2.0.0</myfaces.version>
</properties>
</project>