Skip to content

Latest commit

 

History

History
51 lines (41 loc) · 1.4 KB

README.md

File metadata and controls

51 lines (41 loc) · 1.4 KB

baeso-msgraph

What it is

This is an experimental library to access the Graph-API of Microsoft

Usage

The library is currently not published to maven central so you need to build it your own and push it to an artifact repository. If you are not eager setup nexus you might choose quak a light weight maven repo by BestSolution

Integration

To use the code in an application you need to following maven dependencies

  ...
  <dependencies>
    <dependency>
      <groupId>org.glassfish</groupId>
      <artifactId>jakarta.json</artifactId>
      <version>2.0.1</version>
    </dependency>
    <dependency>
      <groupId>at.bestsolution.baeso.msgraph</groupId>
      <artifactId>msgraph-api</artifactId>
      <version>999.9.0-SNAPSHOT</version>
    </dependency>
    <dependency>
      <groupId>at.bestsolution.baeso.msgraph</groupId>
      <artifactId>msgraph-impl</artifactId>
      <version>999.9.0-SNAPSHOT</version>
    </dependency>
    <dependency>
      <groupId>at.bestsolution.baeso.msgraph</groupId>
      <artifactId>msgraph-auth-msal4j</artifactId>
      <version>999.9.0-SNAPSHOT</version>
    </dependency>
  </dependencies>
  ...

Code Sample

public static class App {
    public static void main(String[] args) {
        
    }
}