Skip to content

Commit

Permalink
fix(core): Spring devtools issue and Maybe dependency constraint (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
JoseLion authored Mar 1, 2024
1 parent 5ee0b14 commit b282dd7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ dependencyResolutionManagement {

library('assertj-core', 'org.assertj', 'assertj-core').version('3.25.3')
library('lombok', 'org.projectlombok', 'lombok').version('1.18.30')
library('maybe', 'io.github.joselion', 'maybe').version('4.2.1')
library('maybe', 'io.github.joselion', 'maybe').version('[4.2.1,)')
library('mockito-core', 'org.mockito', 'mockito-core').version('5.10.0')
library('sonarlint-java', 'org.sonarsource.java', 'sonar-java-plugin').version('7.31.0.34839')

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ protected RelationshipsAutoConfiguration() {
@Bean
public <T> RelationshipsCallbacks<T> relationshipsCallbacks(
final @Lazy R2dbcEntityTemplate template,
final @Lazy ApplicationContext context
final ApplicationContext context
) {
return new RelationshipsCallbacks<>(template, context);
}
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/META-INF/spring-devtools.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
restart.include.spring-r2dbc-relationships=spring-r2dbc-relationships-[\\w\\d-\\.]+\\.jar

0 comments on commit b282dd7

Please sign in to comment.