<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <groupId>hu.blackbelt.judo</groupId>
  <artifactId>judo-spring-boot-starter</artifactId>
  <version>1.0.3</version>
  <packaging>pom</packaging>
  <name>JUDO JSL :: Springboot Starter</name>
  <description>JUDO Stater project to support JSL-based Spring Boot application development</description>
  <url>https://github.com/BlackBeltTechnology/judo-jsl-springboot-starter</url>
  <licenses>
    <license>
      <name>Eclipse Public License 2.0</name>
      <url>https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt</url>
    </license>
  </licenses>
  <developers>
    <developer>
      <id>robson</id>
      <name>Csákány Róbert</name>
      <email>robert.csakany@blackbelt.hu</email>
      <url>https://github.com/robertcsakany</url>
      <organization>BlackBelt Technology</organization>
      <organizationUrl>https://www.blackbelt.hu</organizationUrl>
    </developer>
    <developer>
      <id>noherczeg</id>
      <name>Norbert Herczeg</name>
      <email>norbert.herczeg@blackbelt.hu</email>
      <url>https://github.com/noherczeg</url>
      <organization>BlackBelt Technology</organization>
      <organizationUrl>https://www.blackbelt.hu</organizationUrl>
    </developer>
  </developers>
  <scm>
    <connection>scm:git:git@github.com:BlackBeltTechnology/judo-jsl-springboot-starter.git</connection>
    <developerConnection>scm:git:ssh://${git.username}@github.com:BlackBeltTechnology/judo-jsl-springboot-starter.git</developerConnection>
    <url>https://github.com/BlackBeltTechnology/judo-jsl-springboot-starter</url>
  </scm>
  <issueManagement>
    <system>GitHub Issues</system>
    <url>https://github.com/BlackBeltTechnology/judo-jsl-springboot-starter/issues</url>
  </issueManagement>
  <properties>
    <project-repositoryId>BlackBeltTechnology/judo-jsl-springboot-starter</project-repositoryId>
    <judo-runtime-core-version>1.0.5</judo-runtime-core-version>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <spring-boot.version>2.7.3</spring-boot.version>
    <revision>1.0.3</revision>
  </properties>
  <dependencyManagement>
    <dependencies>
      <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-dependencies</artifactId>
        <version>${spring-boot.version}</version>
        <type>pom</type>
        <scope>import</scope>
      </dependency>
      <dependency>
        <groupId>hu.blackbelt.judo.runtime</groupId>
        <artifactId>judo-runtime-core-dependencies</artifactId>
        <version>${judo-runtime-core-version}</version>
        <type>pom</type>
        <scope>import</scope>
      </dependency>
    </dependencies>
  </dependencyManagement>
  <dependencies>
    <dependency>
      <groupId>org.antlr</groupId>
      <artifactId>antlr-runtime</artifactId>
      <version>3.2</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter</artifactId>
      <version>2.7.3</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-data-jdbc</artifactId>
      <version>2.7.3</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>hu.blackbelt.judo.runtime</groupId>
      <artifactId>judo-runtime-core-spring</artifactId>
      <version>1.0.5</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>hu.blackbelt.judo.runtime</groupId>
      <artifactId>judo-runtime-core-spring-hsqldb</artifactId>
      <version>1.0.5</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>hu.blackbelt.judo.runtime</groupId>
      <artifactId>judo-runtime-core-spring-postgresql</artifactId>
      <version>1.0.5</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>hu.blackbelt.judo</groupId>
      <artifactId>judo-dao-api</artifactId>
      <version>1.0.3</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>hu.blackbelt.judo</groupId>
      <artifactId>judo-sdk-common</artifactId>
      <version>1.0.3</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>hu.blackbelt.mapper</groupId>
      <artifactId>mapper-api</artifactId>
      <version>1.0.3</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>hu.blackbelt.mapper</groupId>
      <artifactId>mapper-impl</artifactId>
      <version>1.0.3</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>hu.blackbelt.judo.runtime</groupId>
      <artifactId>judo-runtime-core</artifactId>
      <version>1.0.5</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>hu.blackbelt.judo.runtime</groupId>
      <artifactId>judo-runtime-core-dao-core</artifactId>
      <version>1.0.5</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>hu.blackbelt.judo.runtime</groupId>
      <artifactId>judo-runtime-core-dao-rdbms</artifactId>
      <version>1.0.5</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>hu.blackbelt.judo.runtime</groupId>
      <artifactId>judo-runtime-core-dao-rdbms-hsqldb</artifactId>
      <version>1.0.5</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>hu.blackbelt.judo.runtime</groupId>
      <artifactId>judo-runtime-core-dao-rdbms-postgresql</artifactId>
      <version>1.0.5</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>hu.blackbelt.judo.runtime</groupId>
      <artifactId>judo-runtime-core-dispatcher</artifactId>
      <version>1.0.5</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>hu.blackbelt.judo.runtime</groupId>
      <artifactId>judo-runtime-core-accessmanager-api</artifactId>
      <version>1.0.5</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>hu.blackbelt.judo.runtime</groupId>
      <artifactId>judo-runtime-core-accessmanager</artifactId>
      <version>1.0.5</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>hu.blackbelt.judo.tatami</groupId>
      <artifactId>judo-tatami-asm2rdbms</artifactId>
      <version>1.1.5</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>hu.blackbelt.judo.meta</groupId>
      <artifactId>hu.blackbelt.judo.meta.liquibase.model</artifactId>
      <version>1.0.1</version>
      <scope>compile</scope>
    </dependency>
  </dependencies>
</project>
