<?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>

    <parent>
        <groupId>io.github.nikolatx</groupId>
        <artifactId>tnt-beer-works-bom</artifactId>
        <version>1.1.0</version>
    </parent>

    <artifactId>tnt-brewery-bom</artifactId>
    <version>1.0.0</version>
    <packaging>pom</packaging>
    <description>Brewery BOM Project - common dependencies for brewery services</description>

    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-jpa</artifactId>
        </dependency>
        <dependency>
            <groupId>com.h2database</groupId>
            <artifactId>h2</artifactId>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <version>8.0.31</version>
        </dependency>
    </dependencies>


    <scm>
        <connection>scm:git:git@github.com:nikolatx/tnt-brewery-bom.git</connection>
        <developerConnection>scm:git:git@github.com:nikolatx/tnt-brewery-bom.git</developerConnection>
        <url>https://github.com/nikolatx/tnt-brewery-bom</url>
        <tag>HEAD</tag>
    </scm>

    <issueManagement>
        <url>https://github.com/nikolatx/tnt-brewery-bom/issues</url>
        <system>GitHub</system>
    </issueManagement>



</project>