graph-convert-sample
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.plutext.graph-convert</groupId>
<artifactId>graph-convert-sample</artifactId>
<version>1.0.1</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.plutext.graph-convert</groupId>
<artifactId>java-docx-to-pdf-using-Microsoft-Graph-parent</artifactId>
<version>1.0.1</version>
</parent>
<artifactId>graph-convert-sample</artifactId>
<packaging>${packaging.type}</packaging>
<name>graph-convert-sample</name>
<description>
graph-convert-sample
</description>
<dependencies>
<!-- choose ONE only of the 4 following implementations -->
<dependency>
<groupId>org.plutext.graph-convert</groupId>
<artifactId>using-graph-sdk</artifactId>
<version>${project.version}</version>
</dependency>
<!--
<dependency>
<groupId>org.plutext.graph-convert</groupId>
<artifactId>using-graph-sdk-core-only</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.plutext.graph-convert</groupId>
<artifactId>without-graph-sdk-using-msal4j</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.plutext.graph-convert</groupId>
<artifactId>without-graph-sdk-using-scribe</artifactId>
<version>${project.version}</version>
</dependency>
-->
<!--
<dependency>
<groupId>com.github.scribejava</groupId>
<artifactId>scribejava-httpclient-apache</artifactId>
<version>7.0.0</version>
</dependency>
-->
<!-- if you choose without-graph-sdk-using-scribe, you can optionally also specify your preferred httpclient -->
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.2.3</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>