<?xml version="1.0" encoding="UTF-8"?>
<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>

	<name>${project.groupId}:${project.artifactId}</name>
	<groupId>org.asux</groupId>
	<artifactId>yaml.nodeimpl</artifactId>

    <version>1.0</version>
	<packaging>jar</packaging>

    <inceptionYear>2019</inceptionYear>
    <description>Cmdline interface to process YAML files, leveraging the brilliantly robust SnakeYAML Java-implementation of YAML-Parsing and YAML-Generation (http://yaml.org)</description>
	<url>https://github.com/org-asux/org.ASUX.YAML.NodeImpl</url>

	<parent>
		<groupId>org.asux</groupId>
		<artifactId>MavenCentralRepo-TopLevelPOM</artifactId>
		<version>3.2</version>
		<relativePath>../org.ASUX.pom/pom-MavenCentralRepo-TopLevelParent.xml</relativePath>
		<!-- EVEN tho' PARENT-POM is in .M2 REPOSITORY... I'm forced to use RELATIVEPATH.  The reason?  The following MAVEN output -->
<!--
[WARNING] Some problems were encountered while building the effective model for org.asux:common:jar:1.0
[WARNING] 'parent.relativePath' of POM org.asux:common:1.0 (/Users/Sarma/Documents/Development/src/org.ASUX/org.ASUX.common/pom.xml) points at org.asux:mvn-shade-uber-jar instead of org.asux:TopLevelPOM, please verify your project structure @ line 17, column 10
[WARNING] 
[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
[WARNING] 
[WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
-->
	</parent>

        <!-- @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ -->
        <!-- =========================================================== -->
        <!-- @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ -->

	<licenses>
		<license>
			<name>BSD 3-Clause License</name>
			<url>https://opensource.org/licenses/BSD-3-Clause</url>
			<distribution>repo</distribution>
		</license>
	</licenses>

    <developers>
        <developer>
            <name>Udaybhaskar Sarma Seetamraju</name>
            <email>tosarma@gmail.com</email>
            <organization>ASUX.org</organization>
            <organizationUrl>https://ASUX.org</organizationUrl>
            <roles>
                <role>Developer</role>
            </roles>
            <timezone>0</timezone>
        </developer>
    </developers>

	<contributors>
	</contributors>

    <scm>
		<url>https://github.com/org-asux/org.ASUX.YAML.NodeImpl.git</url>
		<connection>scm:git:git@github.com:org-asux/org.ASUX.YAML.NodeImpl.git</connection>
		<developerConnection>scm:git:git@github.com:org-asux/org.ASUX.YAML.NodeImpl.git</developerConnection>
		<tag>HEAD</tag>
	</scm>

        <!-- @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ -->
        <!-- =========================================================== -->
        <!-- @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ -->

    <dependencies>
        <dependency>
            <groupId>org.asux</groupId>
            <artifactId>common</artifactId>
        </dependency>
        <dependency>
            <groupId>org.asux</groupId>
            <artifactId>yaml</artifactId>
        </dependency>

        <!-- https://bitbucket.org/asomov/snakeyaml/wiki/Installation -->
        <dependency>
            <groupId>org.yaml</groupId>
            <artifactId>snakeyaml</artifactId>
        </dependency>

        <!-- JUNIT5 junit5 -->
<!--        <dependency>-->
<!--            <groupId>org.junit.vintage</groupId>-->
<!--            <artifactId>junit-vintage-engine</artifactId>-->
<!--        </dependency>-->
<!--        <dependency>-->
<!--            <groupId>org.junit.jupiter</groupId>-->
<!--            <artifactId>junit-jupiter-api</artifactId>-->
<!--            <scope>compile</scope>-->
<!--        </dependency>-->
    </dependencies>

</project>
