querydsl/querydsl-sql-spring/pom.xml
dependabot[bot] d4c8f79447
Bump spring.version from 3.1.2.RELEASE to 5.3.8
Bumps `spring.version` from 3.1.2.RELEASE to 5.3.8.

Updates `spring-jdbc` from 3.1.2.RELEASE to 5.3.8
- [Release notes](https://github.com/spring-projects/spring-framework/releases)
- [Commits](https://github.com/spring-projects/spring-framework/compare/v3.1.2.RELEASE...v5.3.8)

Updates `spring-context` from 4.1.6.RELEASE to 5.3.8
- [Release notes](https://github.com/spring-projects/spring-framework/releases)
- [Commits](https://github.com/spring-projects/spring-framework/compare/v4.1.6.RELEASE...v5.3.8)

Updates `spring-aop` from 4.1.6.RELEASE to 5.3.8
- [Release notes](https://github.com/spring-projects/spring-framework/releases)
- [Commits](https://github.com/spring-projects/spring-framework/compare/v4.1.6.RELEASE...v5.3.8)

Updates `spring-test` from 4.1.6.RELEASE to 5.3.8
- [Release notes](https://github.com/spring-projects/spring-framework/releases)
- [Commits](https://github.com/spring-projects/spring-framework/compare/v4.1.6.RELEASE...v5.3.8)

---
updated-dependencies:
- dependency-name: org.springframework:spring-jdbc
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: org.springframework:spring-context
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: org.springframework:spring-aop
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: org.springframework:spring-test
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2021-06-10 05:48:37 +00:00

51 lines
1.4 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_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>
<parent>
<groupId>com.querydsl</groupId>
<artifactId>querydsl-root</artifactId>
<version>5.0.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>com.querydsl</groupId>
<artifactId>querydsl-sql-spring</artifactId>
<name>Querydsl - SQL Spring support</name>
<description>SQL Spring support for Querydsl</description>
<properties>
<spring.version>5.3.8</spring.version>
</properties>
<dependencies>
<dependency>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.querydsl</groupId>
<artifactId>querydsl-sql</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
<version>${spring.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>