Skip to content

Commit

Permalink
GH-189 - Update compatibility builds for CI.
Browse files Browse the repository at this point in the history
Explicitly set version numbers for dependencies not managed by Spring Boot 3+.
  • Loading branch information
odrotbohm committed Jul 21, 2023
1 parent b449658 commit f64defb
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/compatibility.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

strategy:
matrix:
version: ['2.6.14']
version: ['2.6.14', '3.0.9', '3.1.3', '3.2.0-M1']

name: Compatibility with Spring Boot ${{ matrix.version }}

Expand Down
2 changes: 2 additions & 0 deletions jmolecules-bytebuddy/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@
<dependency>
<groupId>javax.persistence</groupId>
<artifactId>javax.persistence-api</artifactId>
<version>2.2</version>
</dependency>

<dependency>
Expand All @@ -111,6 +112,7 @@
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
<version>5.6.15.Final</version>
</dependency>

<dependency>
Expand Down
7 changes: 7 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -278,6 +278,13 @@
<enabled>false</enabled>
</releases>
</repository>
<repository>
<id>spring-milestones</id>
<url>https://repo.spring.io/milestone</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>

</project>

0 comments on commit f64defb

Please sign in to comment.