<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>

	<parent>
		<artifactId>easywsdl-parent</artifactId>
		<groupId>org.ow2.easywsdl</groupId>
		<version>2.3</version>
	</parent>

	<name>EasyWSDL - Schema manager</name>
	<artifactId>easywsdl-schema</artifactId>
	<groupId>org.ow2.easywsdl</groupId>
	<version>2.3</version>
	<packaging>jar</packaging>

	<description />


	<properties>
		<topDirectoryLocation>..</topDirectoryLocation>
	</properties>

        <scm>
          <connection>scm:svn:https://svn.petalslink.com/svnroot/tags/easywsdl-schema-2.3</connection>
          <developerConnection>scm:svn:https://svn.petalslink.com/svnroot/tags/easywsdl-schema-2.3</developerConnection>
        </scm>

	<dependencies>
		<dependency>
				<artifactId>easycommons.uri</artifactId>
				<groupId>com.ebmwebsourcing.easycommons</groupId>
		</dependency>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.jvnet.jaxb2_commons</groupId>
			<artifactId>runtime</artifactId>
		</dependency>
		<dependency>
			<groupId>commons-lang</groupId>
			<artifactId>commons-lang</artifactId>
		</dependency>
	</dependencies>

	<build>
		<plugins>
			<plugin>
				<groupId>org.jvnet.jaxb2.maven2</groupId>
				<artifactId>maven-jaxb2-plugin</artifactId>
				<configuration>
					<schemaDirectory>${basedir}/src/main/resources/schema</schemaDirectory>
					<schemaIncludes>
						<include>XMLSchema.xsd</include>
					</schemaIncludes>
					<bindingIncludes>
						<include>binding.xjb</include>
					</bindingIncludes>
				</configuration>
			</plugin>
		</plugins>
	</build>
</project>
