<?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>com.github.marschall</groupId>
  <artifactId>spring-batch-inmemory</artifactId>
  <version>2.1.0</version>
  <name>Spring Batch In-Memory</name>
  <description>In-Memory implementations of some Spring Batch interfaces</description>
  <url>https://github.com/marschall/spring-batch-inmemory</url>
  <licenses>
    <license>
      <name>MIT</name>
      <url>https://opensource.org/licenses/MIT</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <developers>
    <developer>
      <id>marschall</id>
      <name>Philippe Marschall</name>
      <email>philippe.marschall@gmail.com</email>
      <url>https://github.com/marschall</url>
      <roles>
        <role>developer</role>
      </roles>
      <timezone>Europe/Zurich</timezone>
    </developer>
  </developers>
  <scm>
    <connection>scm:git:git@github.com:marschall/spring-batch-inmemory.git</connection>
    <developerConnection>scm:git:git@github.com:marschall/spring-batch-inmemory.git</developerConnection>
    <tag>2.1.0</tag>
    <url>https://github.com/marschall/spring-batch-inmemory</url>
  </scm>
  <dependencies>
    <dependency>
      <groupId>org.springframework.batch</groupId>
      <artifactId>spring-batch-core</artifactId>
      <version>5.0.0</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>com.google.code.findbugs</groupId>
      <artifactId>jsr305</artifactId>
      <version>3.0.2</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-test</artifactId>
      <version>6.0.2</version>
      <scope>provided</scope>
    </dependency>
  </dependencies>
</project>
