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

Commit 2ffcbee

Browse files
Merge pull request #5 from microsoftgraph/mavenSnapshot
Readme edit for Maven snapshot
2 parents c5478bc + 28ecdb8 commit 2ffcbee

File tree

1 file changed

+19
-3
lines changed

1 file changed

+19
-3
lines changed

README.md

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
# Microsoft Graph Auth SDK for Java
22

3-
[ ![Download](https://api.bintray.com/packages/microsoftgraph/Maven/microsoft-graph/images/download.svg) ](https://bintray.com/microsoftgraph/Maven/microsoft-graph/_latestVersion)
4-
5-
63
Get started with the Microsoft Graph SDK for Java by integrating the [Microsoft Graph API](https://graph.microsoft.io/en-us/getting-started) into your Java application!
74

85
## 1. Installation
@@ -35,6 +32,25 @@ Add the dependency in `dependencies` in pom.xml
3532
</dependency>
3633
```
3734

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

4056
### 2.1 Register your application

0 commit comments

Comments
 (0)