Skip to content

Commit 256dd2f

Browse files
committed
Update README.md
1 parent cc70701 commit 256dd2f

File tree

1 file changed

+4
-15
lines changed

1 file changed

+4
-15
lines changed

README.md

Lines changed: 4 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -81,37 +81,26 @@ compatible down to `3.0.0`. Integration with Spring Boot 4 (once its released) w
8181

8282
1. 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
```
10798
2. 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

0 commit comments

Comments
 (0)