java-docx-to-pdf-using-Microsoft-Graph-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.plutext.graph-convert</groupId> <artifactId>java-docx-to-pdf-using-Microsoft-Graph-parent</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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>9</version> </parent> <groupId>org.plutext.graph-convert</groupId> <artifactId>java-docx-to-pdf-using-Microsoft-Graph-parent</artifactId> <version>1.0.1</version> <properties> <revision>1.0.1-SNAPSHOT</revision> <packaging.type>jar</packaging.type> <!-- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> --> <!-- github server corresponds to entry in ~/.m2/settings.xml --> <github.global.server>github</github.global.server> </properties> <packaging>pom</packaging> <name>java-docx-to-pdf-using-Microsoft-Graph parent</name> <modules> <module>graph-convert-base</module> <module>without-graph-sdk-using-scribe</module> <module>without-graph-sdk-using-msal4j</module> <module>using-graph-sdk-core-only</module> <module>using-graph-sdk</module> <module>graph-convert-sample</module> </modules> <description> Demonstrate various approaches to using Microsoft Graph for docx to PDF conversion in Java. </description> <url>https://github.com/plutext/java-docx-to-pdf-using-Microsoft-Graph</url> <licenses> <license> <name>Apache 2</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> <comments>A business-friendly OSS license</comments> </license> </licenses> <developers> <developer> <name>Jason Harrop</name> <email>jason@plutext.org</email> <organization>Plutext</organization> <organizationUrl>http://www.plutext.com</organizationUrl> </developer> </developers> <scm> <developerConnection>scm:git|git@github.com:plutext/java-docx-to-pdf-using-Microsoft-Graph.git</developerConnection> <tag>HEAD</tag> </scm> <inceptionYear>2020</inceptionYear> <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> <profiles> <profile> <id>allow-snapshots</id> <activation><activeByDefault>true</activeByDefault></activation> <repositories> <repository> <id>snapshots-repo</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> <releases><enabled>false</enabled></releases> <snapshots><enabled>true</enabled></snapshots> </repository> </repositories> </profile> </profiles> </project>