<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-xml</artifactId>
	<packaging>jar</packaging>
	<name>jadex-xml</name>
	<parent>
		<groupId>net.sourceforge.jadex</groupId>
		<artifactId>jadex-parent</artifactId>
		<version> 2.2.1 </version>
		<relativePath>../jadex-parent/pom.xml</relativePath>
	</parent>

	<description>
		Jadex XML is an XML data binding framework for Java and
		also for other representations. The main idea of Jadex 
		XML is that neither the XML-Schema on the one side nor
		the Java classes on the other side should define the 
		binding. Instead, a separate mapping between both is
		used as a mediation. This allows designing the XML
		representation independent of the Java side
		but still being able to connect both as desired. 
		This idea was first put forward by the JiBX
		data binding framework. Jadex XML pushes it further
		by combining it with the configuration by exception 
		principle. The framework can detect obvious 
		correspondences between both sides automatically and
		only needs configuration information when translations
		are necessary. The configuration information is 
		currently specified directly in form of Java 
		configuration classes. 
	</description>

	<dependencies>
		<dependency>
			<groupId>net.sourceforge.jadex</groupId>
			<artifactId>jadex-commons</artifactId>
			<version>${project.version}</version>
		</dependency>
		
		<dependency>
			<groupId>net.sourceforge.jadex</groupId>
			<artifactId>jadex-commons</artifactId>
			<version>${project.version}</version>
			<type>test-jar</type>
     		<scope>test</scope>
		</dependency>
		
		<!-- todo: remove depency before release - ->
		<dependency>
		    <groupId>pull-parser</groupId>
		    <artifactId>pull-parser</artifactId>
		    <version>2.1.10</version>
		</dependency>-->
		<!-- 
		<dependency>
			<groupId>xerces</groupId>
			<artifactId>xercesImpl</artifactId>
			<version>2.9.1</version>
		</dependency> -->
		<!-- 
		<dependency>
			<groupId>org.codehaus.woodstox</groupId>
			<artifactId>woodstox-core-lgpl</artifactId>
			<version>4.0.9</version>
		</dependency> -->
	            
	</dependencies>

</project>
