This is an experimental library to access the Graph-API of Microsoft
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
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>
...
public static class App {
public static void main(String[] args) {
}
}