<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>
	<artifactId>jadex-bridge</artifactId>
	<packaging>jar</packaging>
	<name>jadex-bridge</name>
	<parent>
		<groupId>net.sourceforge.jadex</groupId>
		<artifactId>jadex-parent</artifactId>
		<version> 2.3 </version>
		<relativePath>../jadex-parent/pom.xml</relativePath>
	</parent>

	<description>
		Jadex bridge is a base package for kernels and platforms,
		i.e. it is used by both and provides commonly used 
		interfaces and classes for active components and 
		their management.  
	</description>
	
	<properties>
	    <timestamp>${maven.build.timestamp}</timestamp>
	    <maven.build.timestamp.format>yyyyMMdd.HHmmss</maven.build.timestamp.format>
	</properties>
	
	<build>
	    <!-- Filter the version.properties file but nothing else -->
	    <resources>
	        <resource>
	            <directory>
					src/main/java
				</directory>
				<filtering>
					true
				</filtering>
				<includes>
					<include>
						jadex/bridge/version.properties
					</include>
				</includes>
			</resource>
	        <resource>
	            <directory>
					src/main/java
				</directory>
				<filtering>
					false
				</filtering>
				<excludes>
					<exclude>
						jadex/bridge/version.properties
					</exclude>
				</excludes>
			</resource>
		</resources>    
	</build>

	<dependencies>
		<dependency>
			<groupId>net.sourceforge.jadex</groupId>
			<artifactId>jadex-commons</artifactId>
			<version>${project.version}</version>
		</dependency>

		<dependency>
			<groupId>net.sourceforge.jadex</groupId>
			<artifactId>jadex-javaparser</artifactId>
			<version>${project.version}</version>
		</dependency>
		
		<dependency>
			<groupId>net.sourceforge.jadex</groupId>
			<artifactId>jadex-rules-eca</artifactId>
			<version>${project.version}</version>
		</dependency>
		
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>3.8.1</version>
			<scope>provided</scope>	<!-- Hack!!! don't want to depend on junit. only needed when doing tests, so should be there anyways. -->
		</dependency>
		
		<!--
			<dependency> <groupId>stax</groupId> <artifactId>stax</artifactId>
			<version>1.2.0</version> </dependency>
		-->
	</dependencies>
</project>