Skip to content
This repository was archived by the owner on Mar 16, 2021. It is now read-only.

Commit 5011411

Browse files
author
Nakul Sabharwal
committed
edited readme for maven snapshot
1 parent c5478bc commit 5011411

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

README.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,25 @@ Add the dependency in `dependencies` in pom.xml
3535
</dependency>
3636
```
3737

38+
Add in `project`
39+
```
40+
<profiles>
41+
<profile>
42+
<id>allow-snapshots</id>
43+
<activation><activeByDefault>true</activeByDefault></activation>
44+
<repositories>
45+
<repository>
46+
<id>snapshots-repo</id>
47+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
48+
<releases><enabled>false</enabled></releases>
49+
<snapshots><enabled>true</enabled></snapshots>
50+
</repository>
51+
</repositories>
52+
</profile>
53+
</profiles>
54+
55+
```
56+
3857
## 2. Getting started
3958

4059
### 2.1 Register your application

0 commit comments

Comments
 (0)