<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
	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>

	<parent>
		<groupId>org.eclipse.dirigible</groupId>
		<artifactId>dirigible-odata-parent</artifactId>
		<version>13.5.0</version>
		<relativePath>../pom.xml</relativePath>
	</parent>

	<name>OData - Samples - Northwind</name>
	<artifactId>dirigible-odata-samples-northwind</artifactId>
	<packaging>jar</packaging>

	<build>
		<finalName>${project.artifactId}</finalName>
		<plugins>
			<!-- Required when the java build version is 1.8 -->
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-javadoc-plugin</artifactId>
				<configuration>
					<detectJavaApiLink>false</detectJavaApiLink>
				</configuration>
			</plugin>
		</plugins>
	</build>

	<dependencies>
		<dependency>
			<groupId>org.eclipse.dirigible</groupId>
			<artifactId>dirigible-database-sql-h2</artifactId>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.eclipse.dirigible</groupId>
			<artifactId>dirigible-odata-core-test</artifactId>
		</dependency>
	</dependencies>

	<properties>
		<!-- Required to enable usage in projects that run on java 1.8 -->
		<custom.java.build.version>1.8</custom.java.build.version>
		<license.header.location>../../../licensing-header.txt</license.header.location>
		<parent.pom.folder>../../../</parent.pom.folder>
		<formatter.java.version>${custom.java.build.version}</formatter.java.version>
	</properties>
</project>
