Files
dependabot[bot] 545ff85650 Bump spring-core
Bumps [spring-core](https://github.com/spring-projects/spring-framework) from 5.2.8.RELEASE to 5.2.22.RELEASE.
- [Release notes](https://github.com/spring-projects/spring-framework/releases)
- [Commits](https://github.com/spring-projects/spring-framework/compare/v5.2.8.RELEASE...v5.2.22.RELEASE)

---
updated-dependencies:
- dependency-name: org.springframework:spring-core
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-08-28 14:32:58 -04:00

42 lines
1.3 KiB
XML

<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.4.4</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>io.spring.cloud.stream.sample</groupId>
<artifactId>image-thumbnail-processor</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>image-thumbnail-processor</name>
<description>Thumbnail processor</description>
<properties>
<java.version>8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.6.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>3.16.1</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>5.2.22.RELEASE</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>