Step 1. Add the JitPack repository to your build file
Add it in your root settings.gradle at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
Add it in your settings.gradle.kts at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url = uri("https://jitpack.io") }
}
}
Add to pom.xml
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
Add it in your build.sbt at the end of resolvers:
resolvers += "jitpack" at "https://jitpack.io"
Add it in your project.clj at the end of repositories:
:repositories [["jitpack" "https://jitpack.io"]]
Step 2. Add the dependency
dependencies {
implementation 'com.github.sachin-handiekar:spring-social-live:spring-social-live-1.0.3'
}
dependencies {
implementation("com.github.sachin-handiekar:spring-social-live:spring-social-live-1.0.3")
}
<dependency>
<groupId>com.github.sachin-handiekar</groupId>
<artifactId>spring-social-live</artifactId>
<version>spring-social-live-1.0.3</version>
</dependency>
libraryDependencies += "com.github.sachin-handiekar" % "spring-social-live" % "spring-social-live-1.0.3"
:dependencies [[com.github.sachin-handiekar/spring-social-live "spring-social-live-1.0.3"]]
A provider extension for Spring Social to enable connectivity with Microsoft Live (OneDrive, Outlook and Identity) and API binding for Microsoft Live REST API.
If you're using Maven in your project, then you can integrate jInstagram by adding the following dependency in your pom.xml
<dependency>
<groupId>com.sachinhandiekar</groupId>
<artifactId>spring-social-live</artifactId>
<version>1.0.4</version>
</dependency>
If you prefer using the latest snapshot build, include the following lines to your pom.xml.
<repositories>
<repository>
<id>oss.snapshots</id>
<name>OSS Sonatype Snapshot Repository</name>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.sachinhandiekar</groupId>
<artifactId>spring-social-live</artifactId>
<version>1.0.5-SNAPSHOT</version>
</dependency>
</dependencies>
Please see the wiki link for a list of projects using Spring-Social-Live.
Please check the license file.