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

  <artifactId>platformDependenciesSpring</artifactId>
  <packaging>pom</packaging>
  <name>platformDependencies with spring</name>
  <description>The managed dependencies with spring of the oktoflow platform.</description>
  
  <parent>
     <groupId>de.iip-ecosphere.platform</groupId>
     <artifactId>platformDependenciesBOM</artifactId>
     <version>0.8.1-SNAPSHOT</version>
     <relativePath/>
  </parent>
  
  <properties>
    <!-- When updating spring (cloud streams), please check whether the BinderFix in transport.spring is still needed -->
    <org.glassfish.jakarta.el.version>3.0.4</org.glassfish.jakarta.el.version>
    <org.springframework.boot.version>2.4.3</org.springframework.boot.version>
    <org.springframework.cloud.version>3.1.1</org.springframework.cloud.version>
    <org.springframework.spring-test.version>5.3.3</org.springframework.spring-test.version>
  </properties>

  <dependencyManagement>
    <dependencies>
    
      <!-- Spring boot/cloud stream, individual dependencies for better packaging -->
      
      <dependency>
        <groupId>org.springframework.cloud</groupId>
        <artifactId>spring-cloud-stream-dependencies</artifactId>
        <version>${org.springframework.cloud.version}</version>
        <type>pom</type>
        <scope>import</scope>
      </dependency>
      <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-dependencies</artifactId>
        <version>${org.springframework.boot.version}</version>
        <type>pom</type>
        <scope>import</scope>
      </dependency>
      <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-test</artifactId>
        <version>${org.springframework.spring-test.version}</version>
        <scope>test</scope>
      </dependency>

    </dependencies>
  </dependencyManagement>
  
</project>