<?xml version="1.0" encoding="UTF-8"?>
<!-- See the NOTICE file distributed with this work for information regarding 
	copyright ownership. This file is licensed to you 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>
	<modelVersion>4.0.0</modelVersion>
	<parent>
		<groupId>org.codehaus.fabric3.samples</groupId>
		<artifactId>fabric3-samples-spring-starter-parent-pom</artifactId>
		<version>1.9</version>
	</parent>
	<groupId>org.codehaus.fabric3.samples</groupId>
	<artifactId>fabric3-samples-spring-restcalc</artifactId>
	<packaging>sca-contribution-jar</packaging>
	<name>Fabric3 Spring REST Calculator</name>
	<description>Demonstrates configuring a Spring Bean as a REST resource using SCA.</description>
	<properties>
		<camel.version>2.9.0</camel.version>
	</properties>
	<dependencies>
		<dependency>
			<groupId>org.codehaus.fabric3.spec</groupId>
			<artifactId>sca-api</artifactId>
			<version>${sca.api.version}</version>
			<scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>org.codehaus.fabric3</groupId>
			<artifactId>fabric3-api</artifactId>
			<version>${fabric3.version}</version>
			<scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>javax.ws.rs</groupId>
			<artifactId>jsr311-api</artifactId>
			<version>1.1.1</version>
			<scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>org.apache.camel</groupId>
			<artifactId>camel-core</artifactId>
			<version>${camel.version}</version>
		</dependency>
		<dependency>
			<groupId>org.apache.camel</groupId>
			<artifactId>camel-spring</artifactId>
			<version>${camel.version}</version>
		</dependency>
		<dependency>
			<groupId>org.apache.camel</groupId>
			<artifactId>camel-stream</artifactId>
			<version>${camel.version}</version>
		</dependency>
		<dependency>
			<groupId>org.apache.camel</groupId>
			<artifactId>camel-test</artifactId>
			<version>${camel.version}</version>
			<scope>test</scope>
		</dependency>
	</dependencies>
	<build>
		<plugins>
			<plugin>
				<groupId>org.codehaus.fabric3</groupId>
				<artifactId>fabric3-contribution-plugin</artifactId>
				<version>1.9</version>
				<extensions>true</extensions>
			</plugin>
			<plugin>
				<artifactId>maven-assembly-plugin</artifactId>
				<version>2.3</version>
				<configuration>
					<descriptorRefs>
						<descriptorRef>src</descriptorRef>
					</descriptorRefs>
				</configuration>
			</plugin>
		</plugins>
	</build>
</project>
