<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>
	<groupId>org.imanis.fil</groupId>
	<artifactId>FIL_MVN</artifactId>
	<version>1.0.0</version>
	<packaging>war</packaging>
	<name>FIL MVN</name>
	<distributionManagement>
		<repository> 
			<id>umanis-repository</id>
			<name>Umanis Release Repository</name>
			<url>http://vm_int:9002/nexus/content/repositories/release/</url>
		</repository>
		<snapshotRepository>
			<id>umanis-snapshots-repository</id>
			<name>Umanis Snapshots Repository</name>
			<url>http://vm_int:9002/nexus/content/repositories/snapshots/</url>
		</snapshotRepository>
	</distributionManagement>
	<properties>
		<!-- Standard properties, don't changed it. -->
		<patches.resources.folder>patches/other_files/webapp</patches.resources.folder>
		<patches.classes.folder>patches/classes</patches.classes.folder>

		<!-- This property can be customized with your specific folder. For example 
			prototype -->
		<edeal.configuration>dev</edeal.configuration>

		<!-- Standard properties, don't changed it. -->
		<configuration_properties_path>src/edeal/configurations/${edeal.configuration}/configuration.properties</configuration_properties_path>
		<m2eclipse.wtp.contextRoot>${edeal_webapp_context}</m2eclipse.wtp.contextRoot>


		<project.build.sourceEncoding>Cp1252</project.build.sourceEncoding>
		<java.version>1.7</java.version>

		<slf4j-version>1.7.12</slf4j-version>
		<camel-version>2.17.7</camel-version>
		<activemq-version>5.14.4</activemq-version>
		<spring-version>3.2.8.RELEASE</spring-version>

	</properties>

	<build>
		<resources>
			<resource>
				<directory>src/main/resources</directory>
				<filtering>true</filtering>
				<excludes>
					<exclude>**/*.lic</exclude>
				</excludes>
			</resource>
			<resource>
				<directory>src/edeal/configurations/${edeal.configuration}</directory>
				<excludes>
					<exclude>configuration.properties</exclude>
				</excludes>
			</resource>


		</resources>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-war-plugin</artifactId>
				<version>2.1.1</version>
				<configuration>
					<filteringDeploymentDescriptors>true</filteringDeploymentDescriptors>
					<warName>${webapp.name}</warName>
					<webResources>
						<resource>
							<filtering>true</filtering>
							<directory>src/main/webapp</directory>
							<includes>
								<include>**/web.xml</include>
							</includes>
						</resource>
						<resource>
							<directory>${patches.classes.folder}</directory>
							<includes>
								<include>**/*</include>
							</includes>
							<targetPath>WEB-INF/classes</targetPath>
						</resource>
						<resource>
							<filtering>true</filtering>
							<directory>${patches.resources.folder}</directory>
							<includes>
								<include>**/*</include>
							</includes>
						</resource>
					</webResources>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.codehaus.mojo</groupId>
				<artifactId>properties-maven-plugin</artifactId>
				<version>1.0.0</version>
				<executions>
					<execution>
						<phase>initialize</phase>
						<goals>
							<goal>read-project-properties</goal>
						</goals>
						<configuration>
							<files>
								<file>${configuration_properties_path}</file>
							</files>
						</configuration>
					</execution>
				</executions>
			</plugin>
			<plugin>
				<groupId>org.apache.tomcat.maven</groupId>
				<artifactId>tomcat7-maven-plugin</artifactId>
				<version>2.2</version>
				<configuration>
					<warFile>target/${webapp.name}.war</warFile>
					<url>${url.tomcat}</url>
					<path>/${webapp.name}</path>
					<username>${username.tomcat}</username>
					<password>${password.tomcat}</password>
					<update>true</update>
				</configuration>
			</plugin>
			<plugin>
				<inherited>true</inherited>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
				<version>2.3.2</version>
				<configuration>
					<source>${java.version}</source>
					<target>${java.version}</target>
					<encoding>${project.build.sourceEncoding}</encoding>
					<showDeprecation>true</showDeprecation>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-eclipse-plugin</artifactId>
				<version>2.9</version>
				<configuration>
					<wtpversion>2.0</wtpversion>
					<wtpContextName>${m2eclipse.wtp.contextRoot}</wtpContextName>
				</configuration>
			</plugin>
		</plugins>
	</build>

	<profiles>
		<profile>
			<id>dev</id>
			<activation>
				<activeByDefault>true</activeByDefault>
			</activation>
			<properties>
				<webapp.name>edealCRM</webapp.name>
				<url.tomcat>http://uts0007:13010/manager</url.tomcat>
				<username.tomcat>tomcatEDeal</username.tomcat>
				<password.tomcat>managerEDeal</password.tomcat>

			</properties>
			<!--You can define here, specific dependencies for a particular environment 
				[example the JDBC driver] <dependencies> <dependency> <groupId>postgresql</groupId> 
				<artifactId>postgresql</artifactId> <version>8.1-404.jdbc3</version> </dependency> 
				</dependencies> -->
		</profile>
		<profile>
			<id>rec</id>
			<properties>
				<edeal.configuration>rec</edeal.configuration>
				<webapp.name>galaxie</webapp.name>
				<url.tomcat>http://uts0008:23010/manager</url.tomcat>
				<username.tomcat>tomcatEDeal</username.tomcat>
				<password.tomcat>managerEDeal</password.tomcat>
			</properties>
			<!--You can define here, specific dependencies for a particular environment 
				[example the JDBC driver] <dependencies> <dependency> <groupId>org.postgresql</groupId> 
				<artifactId>postgresql</artifactId> <version>9.3-1103-jdbc41</version> </dependency> 
				</dependencies> -->
		</profile>
		
		<profile>
			<id>rec_client</id>
			<properties>
				<edeal.configuration>rec_client</edeal.configuration>
				<webapp.name>galaxie</webapp.name>
				<url.tomcat>r</url.tomcat>
				<username.tomcat></username.tomcat>
				<password.tomcat></password.tomcat>
			</properties>
			<!--You can define here, specific dependencies for a particular environment 
				[example the JDBC driver] <dependencies> <dependency> <groupId>org.postgresql</groupId> 
				<artifactId>postgresql</artifactId> <version>9.3-1103-jdbc41</version> </dependency> 
				</dependencies> -->
		</profile>
	</profiles>

	<dependencies>
		<!-- JAR disponibles sur Maven Repository -->
		<!-- Tests unitaires -->
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>4.8.1</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.easymock</groupId>
			<artifactId>easymock</artifactId>
			<version>3.0</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.powermock</groupId>
			<artifactId>powermock-module-junit4</artifactId>
			<version>1.4.6</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.powermock</groupId>
			<artifactId>powermock-api-easymock</artifactId>
			<version>1.4.6</version>
			<scope>test</scope>
		</dependency>
		<!-- fin Tests unitaires -->

		<!-- TAGLIB -->
		<dependency>
			<groupId>taglibs</groupId>
			<artifactId>standard</artifactId>
			<version>1.1.2</version>
		</dependency>
		<dependency>
			<groupId>javax.servlet</groupId>
			<artifactId>jstl</artifactId>
			<version>1.1.2</version>
		</dependency>
		<!-- FIN TAGLIB -->

		<dependency>
			<groupId>javax.servlet</groupId>
			<artifactId>servlet-api</artifactId>
			<scope>provided</scope>
			<version>2.5</version>
		</dependency>

		<!-- EDEAL CCI Winter 2013 -->
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>activation</artifactId>
			<version>1.1</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>addressing</artifactId>
			<version>1.5.1</version>
			<type>mar</type>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>ail</artifactId>
			<version>7.5.026.00</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>amabis-ws</artifactId>
			<version>3.0</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>ant</artifactId>
			<version>1.7.0</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>ant-launcher</artifactId>
			<version>1.7.0</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>antlr</artifactId>
			<version>2.7.2</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>aopalliance</artifactId>
			<version>1.0</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>apache-commons-net</artifactId>
			<version>fil</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>asm</artifactId>
			<version>3.1</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>avalon-framework-api</artifactId>
			<version>4.3.1</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>avalon-framework-impl</artifactId>
			<version>4.3.1</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>axiom-api</artifactId>
			<version>1.2.8</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>axiom-dom</artifactId>
			<version>1.2.8</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>axiom-impl</artifactId>
			<version>1.2.8</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>axis</artifactId>
			<version>1.4</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>axis2-kernel</artifactId>
			<version>1.5.1</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>axis2-transport-http-edeal</artifactId>
			<version>1.5.1.1</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>axis2-transport-local</artifactId>
			<version>1.5.1</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>backport-util-concurrent</artifactId>
			<version>3.1</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>batik-anim</artifactId>
			<version>1.7</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>batik-awt-util</artifactId>
			<version>1.7</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>batik-bridge</artifactId>
			<version>1.7</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>batik-css</artifactId>
			<version>1.7</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>batik-dom</artifactId>
			<version>1.7</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>batik-ext</artifactId>
			<version>1.7</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>batik-extension</artifactId>
			<version>1.7</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>batik-gvt</artifactId>
			<version>1.7</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>batik-js</artifactId>
			<version>1.7</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>batik-parser</artifactId>
			<version>1.7</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>batik-script</artifactId>
			<version>1.7</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>batik-svg-dom</artifactId>
			<version>1.7</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>batik-svggen</artifactId>
			<version>1.7</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>batik-transcoder</artifactId>
			<version>1.7</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>batik-util</artifactId>
			<version>1.7</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>batik-xml</artifactId>
			<version>1.7</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>bcmail-jdk15</artifactId>
			<version>1.45</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>bcprov-jdk15</artifactId>
			<version>1.45</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>boilerpipe</artifactId>
			<version>1.1.0</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>commons-beanutils</artifactId>
			<version>1.7.0</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>commons-chain</artifactId>
			<version>1.1</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>commons-codec</artifactId>
			<version>1.4</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>commons-collections</artifactId>
			<version>3.2.1</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>commons-compress</artifactId>
			<version>1.1</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>commons-digester</artifactId>
			<version>1.8</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>commons-discovery</artifactId>
			<version>0.2</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>commons-fileupload</artifactId>
			<version>1.2.1</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>commons-httpclient</artifactId>
			<version>3.1</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>commons-io</artifactId>
			<version>1.4</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>commons-lang</artifactId>
			<version>2.4</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>commons-logging</artifactId>
			<version>1.1.1</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>commons-validator</artifactId>
			<version>1.3.1</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>connext-graphs</artifactId>
			<version>0.7</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>cors-filter</artifactId>
			<version>1.3.2</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>dom4j</artifactId>
			<version>1.6.1</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>dsn</artifactId>
			<version>1.4.4</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>edtftpj</artifactId>
			<version>2.2.2</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>ews-client</artifactId>
			<version>1.1</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>fontbox</artifactId>
			<version>1.3.1</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>fop</artifactId>
			<version>1.0</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>freemarker</artifactId>
			<version>2.3.8</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>gdata-calendar</artifactId>
			<version>2.0</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>gdata-client</artifactId>
			<version>1.0</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>gdata-contacts</artifactId>
			<version>3.0</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>gdata-core</artifactId>
			<version>1.0</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>geocoder-java</artifactId>
			<version>0.12</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>geronimo-stax-api_1.0_spec</artifactId>
			<version>1.0.1</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>gson</artifactId>
			<version>1.7.1</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>guava</artifactId>
			<version>14.0</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>guice</artifactId>
			<version>3.0</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>guice-multibindings</artifactId>
			<version>3.0</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>guice-servlet</artifactId>
			<version>3.0</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>hornetq-core</artifactId>
			<version>2.2.14.Final</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>hornetq-core-client</artifactId>
			<version>2.2.14.Final</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>hornetq-logging</artifactId>
			<version>2.2.14.Final</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>htmlcleaner</artifactId>
			<version>2.2</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>httpcore</artifactId>
			<version>4.0</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>ical4j</artifactId>
			<version>1.0.4</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>itextpdf</artifactId>
			<version>5.1.2</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>jakarta-regexp</artifactId>
			<version>1.4</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>java-property-utils</artifactId>
			<version>1.6</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>javassist</artifactId>
			<version>3.12.1.GA</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>javax.inject</artifactId>
			<version>1</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>javax.mail</artifactId>
			<version>1.4.4</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>jaxen</artifactId>
			<version>1.1.1</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>jaxrpc-api</artifactId>
			<version>1.1</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>jdom</artifactId>
			<version>1.1</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>jempbox</artifactId>
			<version>1.3.1</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>jep</artifactId>
			<version>2.4.1</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>jline</artifactId>
			<version>0.9.94</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>jsch</artifactId>
			<version>0.1.54</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>json</artifactId>
			<version>20090211</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>jsonrpc</artifactId>
			<version>1.0</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>jsoup</artifactId>
			<version>1.6.1</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>jsr305</artifactId>
			<version>1.3.9</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>jstl</artifactId>
			<version>1.1.2</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>log4j</artifactId>
			<version>1.2.15</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>log4j-over-slf4j</artifactId>
			<version>1.6.1</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>lucene-analyzers</artifactId>
			<version>3.3.0</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>lucene-core</artifactId>
			<version>3.3.0</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>lucene-grouping</artifactId>
			<version>3.3.0</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>lucene-highlighter</artifactId>
			<version>3.3.0</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>lucene-memory</artifactId>
			<version>3.3.0</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>lucene-misc</artifactId>
			<version>3.3.0</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>lucene-queries</artifactId>
			<version>3.3.0</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>lucene-spatial</artifactId>
			<version>3.3.0</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>lucene-spellchecker</artifactId>
			<version>3.3.0</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>mail</artifactId>
			<version>1.4</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>metadata-extractor</artifactId>
			<version>2.4.0-beta</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>neethi</artifactId>
			<version>2.0.4</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>nekohtml</artifactId>
			<version>1.9.7</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>netcdf</artifactId>
			<version>4.2</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>netty</artifactId>
			<version>3.2.5.Final</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>ognl</artifactId>
			<version>2.6.11</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>org.osgi.core</artifactId>
			<version>4.0.0</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>crypto</artifactId>
			<version>2.0.8</version>
		</dependency>
		<dependency>
			<groupId>org.restlet.jee</groupId>
			<artifactId>org.restlet</artifactId>
			<version>2.0.8</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>org.restlet.ext.json</artifactId>
			<version>2.0.8</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>org.restlet.ext.net</artifactId>
			<version>2.0.8</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>org.restlet.lib.org.json</artifactId>
			<version>2.0</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>oro</artifactId>
			<version>2.0.8</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>pdfbox</artifactId>
			<version>1.3.1</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>poi</artifactId>
			<version>3.7</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>poi-ooxml</artifactId>
			<version>3.7</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>poi-ooxml-schemas</artifactId>
			<version>3.7</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>poi-scratchpad</artifactId>
			<version>3.7</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>postgresql</artifactId>
			<version>9.3</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>reflections</artifactId>
			<version>0.9.8</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>rome</artifactId>
			<version>0.9</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>sitemesh</artifactId>
			<version>2.2.1</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>slf4j-api</artifactId>
			<version>1.6.1</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>slf4j-jdk14</artifactId>
			<version>1.6.1</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>slide-webdavlib</artifactId>
			<version>3.1</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>solr-commons-csv</artifactId>
			<version>3.3.0</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>solr-core</artifactId>
			<version>3.3.0</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>solr-dataimporthandler</artifactId>
			<version>3.3.0</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>solr-noggit</artifactId>
			<version>3.3.0</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>solr-solrj</artifactId>
			<version>3.3.0</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>solr-velocity</artifactId>
			<version>1.4.1</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>spring-core</artifactId>
			<version>4.0.0.RELEASE</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>sqljdbc4</artifactId>
			<version>4.0</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>sslext</artifactId>
			<version>1.2-0</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>standard</artifactId>
			<version>1.1.2</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>struts-core</artifactId>
			<version>1.3.8</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>struts-taglib</artifactId>
			<version>1.3.8</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>struts-tiles</artifactId>
			<version>1.3.8</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>struts2-core</artifactId>
			<version>2.0.8</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>struts2-sitemesh-plugin</artifactId>
			<version>2.0.8</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>tagsoup</artifactId>
			<version>1.2</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>tika-core</artifactId>
			<version>0.8</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>tika-parsers</artifactId>
			<version>0.8</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>velocity</artifactId>
			<version>1.6.4</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>velocity-tools</artifactId>
			<version>2.0</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>woden-api</artifactId>
			<version>1.0M8</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>woden-impl-dom</artifactId>
			<version>1.0M8</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>wsdl4j</artifactId>
			<version>1.6.2</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>wstx-asl</artifactId>
			<version>3.2.4</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>xalan</artifactId>
			<version>2.7.0</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>xml-apis-ext</artifactId>
			<version>1.3.04</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>xmlbeans</artifactId>
			<version>2.3.0</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>xmlgraphics-commons</artifactId>
			<version>1.4</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>XmlSchema</artifactId>
			<version>1.4.3</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>xwork</artifactId>
			<version>2.0.3</version>
		</dependency>
		<dependency>
			<groupId>org.umanis.fil</groupId>
			<artifactId>zookeeper</artifactId>
			<version>3.3.1</version>
		</dependency>

		<!-- Fin EDEAL CCI Winter 2011 -->

		<!-- JAR SPECIFIQUES EDEAL -->
		<dependency>
			<groupId>com.edeal.frontline</groupId>
			<artifactId>edeal-base</artifactId>
			<version>Winter2013</version>
		</dependency>
		<dependency>
			<groupId>com.edeal.frontline</groupId>
			<artifactId>edeal-checker</artifactId>
			<version>Winter2013</version>
		</dependency>
		<dependency>
			<groupId>com.edeal.frontline</groupId>
			<artifactId>edeal-controller</artifactId>
			<version>Winter2013</version>
		</dependency>
		<dependency>
			<groupId>com.edeal.frontline</groupId>
			<artifactId>edeal-custom</artifactId>
			<version>Winter2013</version>
		</dependency>
		<dependency>
			<groupId>com.edeal.frontline</groupId>
			<artifactId>edeal-dao</artifactId>
			<version>Winter2013</version>
		</dependency>
		<dependency>
			<groupId>com.edeal.frontline</groupId>
			<artifactId>edeal-dashboard</artifactId>
			<version>Winter2013</version>
		</dependency>
		<dependency>
			<groupId>com.edeal.frontline</groupId>
			<artifactId>edeal-di</artifactId>
			<version>Winter2013</version>
		</dependency>
		<dependency>
			<groupId>com.edeal.frontline</groupId>
			<artifactId>edeal-fulltextsearch</artifactId>
			<version>Winter2013</version>
		</dependency>
		<dependency>
			<groupId>com.edeal.frontline</groupId>
			<artifactId>edeal-fusion</artifactId>
			<version>Winter2013</version>
		</dependency>
		<dependency>
			<groupId>com.edeal.frontline</groupId>
			<artifactId>edeal-infobar</artifactId>
			<version>Winter2013</version>
		</dependency>
		<dependency>
			<groupId>com.edeal.frontline</groupId>
			<artifactId>edeal-jaxb</artifactId>
			<version>Winter2013</version>
		</dependency>
		<dependency>
			<groupId>com.edeal.frontline</groupId>
			<artifactId>edeal-kpi</artifactId>
			<version>Winter2013</version>
		</dependency>
		<dependency>
			<groupId>com.edeal.frontline</groupId>
			<artifactId>edeal-map</artifactId>
			<version>Winter2013</version>
		</dependency>
		<dependency>
			<groupId>com.edeal.frontline</groupId>
			<artifactId>edeal-merger</artifactId>
			<version>Winter2013</version>
		</dependency>
		<dependency>
			<groupId>com.edeal.frontline</groupId>
			<artifactId>edeal-msging</artifactId>
			<version>Winter2013</version>
		</dependency>
		<dependency>
			<groupId>com.edeal.frontline</groupId>
			<artifactId>edeal-netbusiness</artifactId>
			<version>Winter2013</version>
		</dependency>
		<dependency>
			<groupId>com.edeal.frontline</groupId>
			<artifactId>edeal-ofcgraphs</artifactId>
			<version>Winter2013</version>
		</dependency>
		<dependency>
			<groupId>com.edeal.frontline</groupId>
			<artifactId>edeal-process</artifactId>
			<version>Winter2013</version>
		</dependency>
		<dependency>
			<groupId>com.edeal.frontline</groupId>
			<artifactId>edeal-services</artifactId>
			<version>Winter2013</version>
		</dependency>
		<dependency>
			<groupId>com.edeal.frontline</groupId>
			<artifactId>edeal-sla</artifactId>
			<version>Winter2013</version>
		</dependency>
		<dependency>
			<groupId>com.edeal.frontline</groupId>
			<artifactId>edeal-synchro</artifactId>
			<version>Winter2013</version>
		</dependency>
		<dependency>
			<groupId>com.edeal.frontline</groupId>
			<artifactId>edeal-tasks</artifactId>
			<version>Winter2013</version>
		</dependency>
		<dependency>
			<groupId>com.edeal.frontline</groupId>
			<artifactId>edeal-transfer</artifactId>
			<version>Winter2013</version>
		</dependency>
		<dependency>
			<groupId>com.edeal.frontline</groupId>
			<artifactId>edeal-utils</artifactId>
			<version>Winter2013</version>
		</dependency>
		<dependency>
			<groupId>com.edeal.frontline</groupId>
			<artifactId>edeal-wall</artifactId>
			<version>Winter2013</version>
		</dependency>
		<dependency>
			<groupId>com.edeal.frontline</groupId>
			<artifactId>edeal-wizardconfig</artifactId>
			<version>Winter2013</version>
		</dependency>
		<dependency>
			<groupId>com.edeal.frontline</groupId>
			<artifactId>edeal-workflow</artifactId>
			<version>Winter2013</version>
		</dependency>
		<!-- FIN JAR SPECIFIQUES EDEAL -->

		<dependency>
			<groupId>org.apache.servicemix.bundles</groupId>
			<artifactId>org.apache.servicemix.bundles.protobuf-java</artifactId>
			<version>2.4.1_1</version>
		</dependency>
	</dependencies>
</project>