<?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">
	<modelVersion>4.0.0</modelVersion>

	<!-- Parent POM contains all general settings for building and releasing of all JEAF projects. -->
	<parent>
		<groupId>com.anaptecs.jeaf</groupId>
		<artifactId>jeaf-module-project-parent</artifactId>
		<version>1.6.13</version>
	</parent>

	<groupId>com.anaptecs.jeaf.fast-lane</groupId>
	<artifactId>jeaf-fast-lane-impl-project</artifactId>
	<version>1.6.7</version>
	<packaging>pom</packaging>
	<name>JEAF Fast Lane Impl Project</name>
	<description>JEAF Fast Lane is a bootstrapping project for JEAF services. Using JEAF Fast Lane it is possible to run JEAF Services inside an full featured http environment without having to care about http server and deployments there.</description>
	<url>https://www.anaptecs.de/jeaf</url>

	<scm>
		<connection>scm:git:https://bitbucket.org/anaptecs/jeaf-fast-lane-impl.git</connection>
		<developerConnection>scm:git:https://bitbucket.org/anaptecs/jeaf-fast-lane-impl.git</developerConnection>
		<url>https://bitbucket.org/anaptecs/jeaf-fast-lane-impl.git</url>
		<tag>jeaf-fast-lane-impl-project-1.6.7</tag>
	</scm>
	
	<properties>
		<jeaf.x-fun.impl.version>1.6.10</jeaf.x-fun.impl.version>
		<jeaf.tools.api.version>1.6.7</jeaf.tools.api.version>
		<jeaf.fastlane.api.version>1.6.0</jeaf.fastlane.api.version>
		
		<!-- As JEAF Fast Lane is build on top of Jetty we need to reference the matching Jetty version. -->
		<jetty.server.version>9.4.44.v20210927</jetty.server.version>
		
		<!-- Jersey is used as REST library -->
		<!-- Please be aware that Jersey and Jackson version must match together. Current Jackson version that is 
		     bundled with Jersey 2.35 cause NoClassDefFoundError in startup of JEAF Workload Proxy. 
		 -->
		<jackson.version>2.13.0</jackson.version>
		<jersey.version>2.35</jersey.version>
	</properties>

	<modules>
		<module>jeaf-fast-lane-impl</module>
	</modules>

</project>