<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>
	
	<parent>
		<groupId>io.sdmx</groupId>
		<artifactId>sdmx-core</artifactId>
		<version>2.5.3</version>
	</parent>

	<artifactId>fusion-api-sdmx</artifactId>
	<name>Fusion API - SDMX</name>
	<packaging>jar</packaging>

	<description>
		Interfaces specific to the SDMX Information Model and related operations such as data/structure retrieval
	</description>

    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>io.sdmx</groupId>
                <artifactId>sdmx-core-bom</artifactId>
                <version>${project.version}</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>

	<dependencies>
		<dependency>
			<groupId>io.sdmx</groupId>
			<artifactId>fusion-api</artifactId>
			<version>2.5.3</version>
		</dependency>

		<!-- TESTING -->
		<dependency>
			<groupId>org.junit.jupiter</groupId>
			<artifactId>junit-jupiter</artifactId>
			<scope>test</scope>
		</dependency>
        <dependency>
            <groupId>io.sdmx</groupId>
            <artifactId>fusion-utils</artifactId>
            <version>2.5.3</version>
            <scope>compile</scope>
        </dependency>

    </dependencies>
</project>
