Skip to content

Commit 0de60c7

Browse files
committed
Update README.md
1 parent 3482f55 commit 0de60c7

File tree

1 file changed

+7
-17
lines changed

1 file changed

+7
-17
lines changed

README.md

Lines changed: 7 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -4,26 +4,14 @@ Provides Spring Boot 3 auto configuration for R2DBC observation with [Micrometer
44

55
## Project Setup
66

7-
Maven artifacts are available in the spring release/snapshot repositories.
7+
Released artifacts are available in the maven central. Snapshot are available in the spring snapshot repository.
88
- https://repo.spring.io/release
99
- https://repo.spring.io/snapshot (For snapshot version)
1010

1111
### Maven
1212
```xml
13+
<!-- For snapshot
1314
<repositories>
14-
<repository>
15-
<id>spring-releases</id>
16-
<name>Spring Releases</name>
17-
<url>https://repo.spring.io/release</url>
18-
<releases>
19-
<enabled>true</enabled>
20-
</releases>
21-
<snapshots>
22-
<enabled>false</enabled>
23-
</snapshots>
24-
</repository>
25-
26-
<!-- For snapshot
2715
<repository>
2816
<id>spring-snapshots</id>
2917
<name>Spring Snapshots</name>
@@ -35,8 +23,8 @@ Maven artifacts are available in the spring release/snapshot repositories.
3523
<enabled>false</enabled>
3624
</snapshots>
3725
</repository>
38-
-->
3926
</repositories>
27+
-->
4028

4129
<dependencies>
4230
<dependency>
@@ -51,10 +39,12 @@ Maven artifacts are available in the spring release/snapshot repositories.
5139
### Gradle
5240

5341
```groovy
42+
// for snapshot usage
43+
/*
5444
repositories {
55-
maven { url 'https://repo.spring.io/release' }
56-
// maven { url 'https://repo.spring.io/snapshot' } // for snapshot usage
45+
maven { url 'https://repo.spring.io/snapshot' }
5746
}
47+
*/
5848
5949
dependencies {
6050
implementation 'org.springframework.experimental:r2dbc-micrometer-spring-boot:[VERSION]'

0 commit comments

Comments
 (0)