File tree Expand file tree Collapse file tree 1 file changed +4
-15
lines changed Expand file tree Collapse file tree 1 file changed +4
-15
lines changed Original file line number Diff line number Diff line change @@ -81,37 +81,26 @@ compatible down to `3.0.0`. Integration with Spring Boot 4 (once its released) w
8181
82821 . Maven:
8383 ``` xml
84- <dependencyManagement >
85- <dependencies >
86- <dependency >
87- <groupId >io.github.malczuuu.problem4j</groupId >
88- <artifactId >problem4j-spring-bom</artifactId >
89- <version >${problem4j-spring-bom.version}</version >
90- <type >pom</type >
91- <scope >import</scope >
92- </dependency >
93- </dependencies >
94- </dependencyManagement >
9584 <dependencies >
9685 <!-- pick the one for your project -->
9786 <dependency >
9887 <groupId >io.github.malczuuu.problem4j</groupId >
9988 <artifactId >problem4j-spring-webflux</artifactId >
89+ <version >1.0.0-alpha1</version >
10090 </dependency >
10191 <dependency >
10292 <groupId >io.github.malczuuu.problem4j</groupId >
10393 <artifactId >problem4j-spring-webmvc</artifactId >
94+ <version >1.0.0-alpha1</version >
10495 </dependency >
10596 </dependencies >
10697 ```
107982 . Gradle (Groovy or Kotlin DSL):
10899 ``` groovy
109100 dependencies {
110- implementation(platform("io.github.malczuuu.problem4j:problem4j-spring-bom:${problem4j-spring-bom.version}"))
111-
112101 // pick the one for your project
113- implementation("io.github.malczuuu.problem4j:problem4j-spring-webflux")
114- implementation("io.github.malczuuu.problem4j:problem4j-spring-webmvc")
102+ implementation("io.github.malczuuu.problem4j:problem4j-spring-webflux:1.0.0-alpha1 ")
103+ implementation("io.github.malczuuu.problem4j:problem4j-spring-webmvc:1.0.0-alpha1 ")
115104 }
116105 ```
117106
You can’t perform that action at this time.
0 commit comments