groupdocs-editor
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.groupdocs</groupId>
<artifactId>groupdocs-editor</artifactId>
<version>17.9</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>
<groupId>com.groupdocs</groupId>
<artifactId>groupdocs-editor</artifactId>
<name>GroupDocs.Editor for Java</name>
<version>17.9</version>
<description>GroupDocs.Editor for Java is a powerful document editing API using HTML.
API can be used with any external, opensource or paid HTML editor.
Editor API will process to load documents, convert it to HTML, provide HTML to external UI and then save HTML to original document after manipulation.
It can also be used to generate different PDF files, Microsoft Word (DOC, DOCX), Excel spreadsheets (XLS, XSLSX), PowerPoint presentations (PPT, PPTX) and TXT documents.
Manipulate Using HTML:
Load Document
Edit content using HTML
Edit styles
Perform Editor operations
Convert back to supported file
Document Editor is a computer program for editing HTML, the markup of a webpage.
Although the HTML markup of a web page can be written with any text editor, specialized HTML editors can offer convenience and added functionality.
For example, many HTML editors handle not only HTML, but also related technologies such as CSS, XML and JavaScript or ECMAScript.
In some cases they also manage communication with remote web servers via FTP and WebDAV, and version control systems such as Subversion or Git.
Many word processing, graphic design and page layout programs that are not dedicated to web design, such as Microsoft Word or Quark XPress, also have the ability to function as HTML editors.</description>
<url>https://products.groupdocs.com/editor</url>
<developers>
<developer>
<id>groupdocs</id>
<name>Marketplace Team</name>
<email>support@groupdocs.com</email>
</developer>
</developers>
<licenses>
<license>
<name>GroupDocs License, Version 1.0</name>
<url>http://groupdocs.com/corporate/purchase/end-user-license-agreement</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>git@groupdocs.com/editor</url>
</scm>
<build>
<resources>
<resource>
<directory>${pom.basedir}/src/main/resources</directory>
</resource>
<resource>
<directory>${pom.basedir}/res/f/src/main/resources</directory>
</resource>
</resources>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.0.2</version>
<configuration>
<compilerArgument>-XDignore.symbol.file</compilerArgument>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
<encoding>${project.build.sourceEncoding}</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.12</version>
<executions>
<execution>
<id>add-source</id>
<phase>initialize</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>${project.basedir}/res/f/src/main/java</source>
<source>${project.basedir}/res/f/lib</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>2.3</version>
<executions>
<execution>
<id>reduced-pom</id>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<createDependencyReducedPom>true</createDependencyReducedPom>
</configuration>
</execution>
<execution>
<id>shade-jar</id>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<outputFile>${project.build.directory}/${project.build.finalName}-shaded.jar</outputFile>
</configuration>
</execution>
</executions>
<configuration>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>*.png</exclude>
<exclude>*.gif</exclude>
<exclude>*.txt</exclude>
<exclude>*.js</exclude>
<exclude>*.css</exclude>
<exclude>*.dtd</exclude>
<exclude>header</exclude>
<exclude>testngtasks</exclude>
<exclude>*.properties</exclude>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
</excludes>
</filter>
</filters>
</configuration>
</plugin>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.8</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<tasks>
<java>
<arg />
<arg />
<arg />
<arg />
<arg />
<arg />
<arg />
</java>
</tasks>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.github.wvengen</groupId>
<artifactId>proguard-maven-plugin</artifactId>
<version>2.0.14</version>
<executions>
<execution>
<id>proguard</id>
<phase>package</phase>
<goals>
<goal>proguard</goal>
</goals>
</execution>
</executions>
<configuration>
<maxMemory>2048m</maxMemory>
<proguardInclude>./config/groupdocs-editor.pro</proguardInclude>
<libs>
<lib>${java.bootstrap.classes}</lib>
<lib>${java.cryptographic.extension.classes}</lib>
<lib>${java.secure.socket.extension.classes}</lib>
</libs>
<obfuscate>true</obfuscate>
<injar>${project.build.finalName}-shaded-jarjar.jar</injar>
<outjar>${project.build.finalName}-shaded-jarjar-final.jar</outjar>
<outputDirectory>${project.build.directory}</outputDirectory>
</configuration>
</plugin>
<plugin>
<artifactId>maven-install-plugin</artifactId>
<version>2.5.1</version>
<executions>
<execution>
<id>install</id>
<phase>package</phase>
<goals>
<goal>install-file</goal>
</goals>
</execution>
</executions>
<configuration>
<file>${project.build.directory}/${project.build.finalName}-shaded-jarjar-final.jar</file>
<artifactId>${project.artifactId}</artifactId>
<groupId>${project.groupId}</groupId>
<version>${project.version}</version>
<packaging>${project.packaging}</packaging>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.19.1</version>
<configuration>
<forkMode>always</forkMode>
<argLine>-Xms1024m -Xmx2048m -XX:MaxPermSize=256m -Dfile.encoding=UTF-8</argLine>
<skip>${qa.skip.junit}</skip>
<workingDirectory>target/</workingDirectory>
<includes>
<include>**/**Test.java</include>
<include>**/**Tests.java</include>
</includes>
<systemProperties>
<testing.files>${project.build.directory}/test-classes/</testing.files>
</systemProperties>
</configuration>
</plugin>
<plugin>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
<configuration>
<skip>true</skip>
<file>${project.build.directory}/${project.build.finalName}.jar</file>
</configuration>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<phase>initialize</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<nodeprecated>true</nodeprecated>
<charset>UTF-8</charset>
<docencoding>UTF-8</docencoding>
<docfilessubdirs>true</docfilessubdirs>
<show>public</show>
<source>1.6</source>
<doctitle>${project.name} (${project.version}) API Reference</doctitle>
<windowtitle>${project.name} (${project.version}) API Reference</windowtitle>
<sourcepath>${project.basedir}/src/main/java;
${project.basedir}/res/f/src/main/java;</sourcepath>
<sourceFileIncludes>
<include>com/groupdocs/editor/EditorHandler.java</include>
<include>com/groupdocs/editor/InputHtmlDocument.java</include>
<include>com/groupdocs/editor/license/License.java</include>
<include>com/groupdocs/editor/OutputHtmlDocument.java</include>
<include>com/groupdocs/editor/htmlcss/css/datatypes/Ratio.java</include>
<include>com/groupdocs/editor/htmlcss/resources/IAuxDisposable.java</include>
<include>com/groupdocs/editor/htmlcss/resources/IHtmlResource.java</include>
<include>com/groupdocs/editor/htmlcss/resources/IResourceType.java</include>
<include>com/groupdocs/editor/htmlcss/resources/ResourceTypeDetector.java</include>
<include>com/groupdocs/editor/htmlcss/resources/fonts/EotFont.java</include>
<include>com/groupdocs/editor/htmlcss/resources/fonts/FontResourceBase.java</include>
<include>com/groupdocs/editor/htmlcss/resources/fonts/FontType.java</include>
<include>com/groupdocs/editor/htmlcss/resources/fonts/TtfFont.java</include>
<include>com/groupdocs/editor/htmlcss/resources/fonts/Woff2Font.java</include>
<include>com/groupdocs/editor/htmlcss/resources/fonts/WoffFont.java</include>
<include>com/groupdocs/editor/htmlcss/resources/images/Dimensions.java</include>
<include>com/groupdocs/editor/htmlcss/resources/images/IImageResource.java</include>
<include>com/groupdocs/editor/htmlcss/resources/images/ImageType.java</include>
<include>com/groupdocs/editor/htmlcss/resources/images/raster/BmpImage.java</include>
<include>com/groupdocs/editor/htmlcss/resources/images/raster/GifImage.java</include>
<include>com/groupdocs/editor/htmlcss/resources/images/raster/IconImage.java</include>
<include>com/groupdocs/editor/htmlcss/resources/images/raster/JpegImage.java</include>
<include>com/groupdocs/editor/htmlcss/resources/images/raster/PngImage.java</include>
<include>com/groupdocs/editor/htmlcss/resources/images/raster/RasterImageResourceBase.java</include>
<include>com/groupdocs/editor/htmlcss/resources/images/vector/SvgImage.java</include>
<include>com/groupdocs/editor/htmlcss/resources/textual/CssText.java</include>
<include>com/groupdocs/editor/htmlcss/resources/textual/ITextResource.java</include>
<include>com/groupdocs/editor/htmlcss/resources/textual/TextType.java</include>
<include>com/groupdocs/editor/htmlcss/resources/textual/XmlText.java</include>
<include>com/groupdocs/editor/options/FontExtractionOptions.java</include>
<include>com/groupdocs/editor/options/IDocumentLoadOptions.java</include>
<include>com/groupdocs/editor/options/IDocumentSaveOptions.java</include>
<include>com/groupdocs/editor/options/PdfSaveOptions.java</include>
<include>com/groupdocs/editor/options/TextToHtmlOptions.java</include>
<include>com/groupdocs/editor/words/htmltowords/WordFormats.java</include>
<include>com/groupdocs/editor/words/htmltowords/WordsSaveOptions.java</include>
<include>com/groupdocs/editor/words/wordstohtml/WordToHtmlOptions.java</include>
</sourceFileIncludes>
</configuration>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<includes>
<include>**/META-INF/**</include>
</includes>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.2-beta-5</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
<configuration>
<finalName>${package.name}</finalName>
<outputDirectory>${project.build.directory}</outputDirectory>
<descriptor>./config/assembly.xml</descriptor>
</configuration>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.3</version>
<extensions>true</extensions>
<configuration>
<serverId>sonatype-nexus-staging</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>false</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<artifactId>maven-install-plugin</artifactId>
<version>2.5.1</version>
<executions>
<execution>
<phase>initialize</phase>
<goals>
<goal>install-file</goal>
</goals>
<configuration>
<groupId>com.aspose.ms</groupId>
<artifactId>aspose.ms-jdk</artifactId>
<version>6.0.0</version>
<packaging>jar</packaging>
<file>${pom.basedir}/res/f/lib/aspose.ms-jdk-6.0.0.jar</file>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>development</id>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.8</version>
</plugin>
<plugin>
<artifactId>maven-install-plugin</artifactId>
<configuration>
<file>${project.build.directory}/${project.build.finalName}-shaded-jarjar.jar</file>
</configuration>
</plugin>
</plugins>
</build>
<properties>
<qa.skip.junit>true</qa.skip.junit>
<jarjar.rules>./config/groupdocs-editor-development.rules</jarjar.rules>
</properties>
</profile>
<profile>
<id>final</id>
<build>
<plugins>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.8</version>
</plugin>
<plugin>
<groupId>com.github.wvengen</groupId>
<artifactId>proguard-maven-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-install-plugin</artifactId>
</plugin>
</plugins>
</build>
<properties>
<qa.skip.junit>false</qa.skip.junit>
</properties>
</profile>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.8</version>
</plugin>
<plugin>
<groupId>com.github.wvengen</groupId>
<artifactId>proguard-maven-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-install-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
</plugin>
</plugins>
</build>
<properties>
<qa.skip.junit>false</qa.skip.junit>
</properties>
</profile>
<profile>
<id>deploy</id>
<build>
<plugins>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>2.3</version>
<executions>
<execution>
<id>reduced-pom</id>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<createDependencyReducedPom>true</createDependencyReducedPom>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>*.png</exclude>
<exclude>*.gif</exclude>
<exclude>*.txt</exclude>
<exclude>*.js</exclude>
<exclude>*.css</exclude>
<exclude>*.dtd</exclude>
<exclude>header</exclude>
<exclude>testngtasks</exclude>
<exclude>*.properties</exclude>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
</excludes>
</filter>
</filters>
</configuration>
</execution>
<execution>
<id>shade-jar</id>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<outputFile>C:\Aspose\GitLab-Runner\builds\bd775882\0\rzeszow\lisbon\editor\java\target/groupdocs-editor-17.9-shaded.jar</outputFile>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>*.png</exclude>
<exclude>*.gif</exclude>
<exclude>*.txt</exclude>
<exclude>*.js</exclude>
<exclude>*.css</exclude>
<exclude>*.dtd</exclude>
<exclude>header</exclude>
<exclude>testngtasks</exclude>
<exclude>*.properties</exclude>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
</excludes>
</filter>
</filters>
</configuration>
</execution>
</executions>
<configuration>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>*.png</exclude>
<exclude>*.gif</exclude>
<exclude>*.txt</exclude>
<exclude>*.js</exclude>
<exclude>*.css</exclude>
<exclude>*.dtd</exclude>
<exclude>header</exclude>
<exclude>testngtasks</exclude>
<exclude>*.properties</exclude>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
</excludes>
</filter>
</filters>
</configuration>
</plugin>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.8</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<tasks>
<java>
<arg />
<arg />
<arg />
<arg />
<arg />
<arg />
<arg />
</java>
</tasks>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.github.wvengen</groupId>
<artifactId>proguard-maven-plugin</artifactId>
<version>2.0.14</version>
<executions>
<execution>
<id>proguard</id>
<phase>package</phase>
<goals>
<goal>proguard</goal>
</goals>
<configuration>
<outjar>groupdocs-editor-17.9.jar</outjar>
<maxMemory>2048m</maxMemory>
<proguardInclude>./config/groupdocs-editor.pro</proguardInclude>
<libs>
<lib>C:\Program Files\Java\jdk1.7.0_80\jre/lib/rt.jar</lib>
<lib>C:\Program Files\Java\jdk1.7.0_80\jre/lib/jce.jar</lib>
<lib>C:\Program Files\Java\jdk1.7.0_80\jre/lib/jsse.jar</lib>
</libs>
<obfuscate>true</obfuscate>
<injar>groupdocs-editor-17.9-shaded-jarjar.jar</injar>
<outputDirectory>C:\Aspose\GitLab-Runner\builds\bd775882\0\rzeszow\lisbon\editor\java\target</outputDirectory>
</configuration>
</execution>
</executions>
<configuration>
<outjar>groupdocs-editor-17.9.jar</outjar>
<maxMemory>2048m</maxMemory>
<proguardInclude>./config/groupdocs-editor.pro</proguardInclude>
<libs>
<lib>C:\Program Files\Java\jdk1.7.0_80\jre/lib/rt.jar</lib>
<lib>C:\Program Files\Java\jdk1.7.0_80\jre/lib/jce.jar</lib>
<lib>C:\Program Files\Java\jdk1.7.0_80\jre/lib/jsse.jar</lib>
</libs>
<obfuscate>true</obfuscate>
<injar>groupdocs-editor-17.9-shaded-jarjar.jar</injar>
<outputDirectory>C:\Aspose\GitLab-Runner\builds\bd775882\0\rzeszow\lisbon\editor\java\target</outputDirectory>
</configuration>
</plugin>
<plugin>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<skip>false</skip>
<file>C:\Aspose\GitLab-Runner\builds\bd775882\0\rzeszow\lisbon\editor\java\target/groupdocs-editor-17.9.jar</file>
</configuration>
</execution>
</executions>
<configuration>
<skip>false</skip>
<file>C:\Aspose\GitLab-Runner\builds\bd775882\0\rzeszow\lisbon\editor\java\target/groupdocs-editor-17.9.jar</file>
</configuration>
</plugin>
<plugin>
<artifactId>maven-install-plugin</artifactId>
<configuration>
<file>${project.build.directory}/${project.build.finalName}.jar</file>
</configuration>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<includes>
<include>**/META-INF/**</include>
</includes>
</configuration>
</execution>
</executions>
<configuration>
<includes>
<include>**/META-INF/**</include>
</includes>
</configuration>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<phase>initialize</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<nodeprecated>true</nodeprecated>
<charset>UTF-8</charset>
<docencoding>UTF-8</docencoding>
<docfilessubdirs>true</docfilessubdirs>
<show>public</show>
<source>1.6</source>
<doctitle>GroupDocs.Editor for Java (17.9) API Reference</doctitle>
<windowtitle>GroupDocs.Editor for Java (17.9) API Reference</windowtitle>
<sourcepath>C:\Aspose\GitLab-Runner\builds\bd775882\0\rzeszow\lisbon\editor\java/src/main/java;
C:\Aspose\GitLab-Runner\builds\bd775882\0\rzeszow\lisbon\editor\java/res/f/src/main/java;</sourcepath>
<sourceFileIncludes>
<include>com/groupdocs/editor/EditorHandler.java</include>
<include>com/groupdocs/editor/InputHtmlDocument.java</include>
<include>com/groupdocs/editor/license/License.java</include>
<include>com/groupdocs/editor/OutputHtmlDocument.java</include>
<include>com/groupdocs/editor/htmlcss/css/datatypes/Ratio.java</include>
<include>com/groupdocs/editor/htmlcss/resources/IAuxDisposable.java</include>
<include>com/groupdocs/editor/htmlcss/resources/IHtmlResource.java</include>
<include>com/groupdocs/editor/htmlcss/resources/IResourceType.java</include>
<include>com/groupdocs/editor/htmlcss/resources/ResourceTypeDetector.java</include>
<include>com/groupdocs/editor/htmlcss/resources/fonts/EotFont.java</include>
<include>com/groupdocs/editor/htmlcss/resources/fonts/FontResourceBase.java</include>
<include>com/groupdocs/editor/htmlcss/resources/fonts/FontType.java</include>
<include>com/groupdocs/editor/htmlcss/resources/fonts/TtfFont.java</include>
<include>com/groupdocs/editor/htmlcss/resources/fonts/Woff2Font.java</include>
<include>com/groupdocs/editor/htmlcss/resources/fonts/WoffFont.java</include>
<include>com/groupdocs/editor/htmlcss/resources/images/Dimensions.java</include>
<include>com/groupdocs/editor/htmlcss/resources/images/IImageResource.java</include>
<include>com/groupdocs/editor/htmlcss/resources/images/ImageType.java</include>
<include>com/groupdocs/editor/htmlcss/resources/images/raster/BmpImage.java</include>
<include>com/groupdocs/editor/htmlcss/resources/images/raster/GifImage.java</include>
<include>com/groupdocs/editor/htmlcss/resources/images/raster/IconImage.java</include>
<include>com/groupdocs/editor/htmlcss/resources/images/raster/JpegImage.java</include>
<include>com/groupdocs/editor/htmlcss/resources/images/raster/PngImage.java</include>
<include>com/groupdocs/editor/htmlcss/resources/images/raster/RasterImageResourceBase.java</include>
<include>com/groupdocs/editor/htmlcss/resources/images/vector/SvgImage.java</include>
<include>com/groupdocs/editor/htmlcss/resources/textual/CssText.java</include>
<include>com/groupdocs/editor/htmlcss/resources/textual/ITextResource.java</include>
<include>com/groupdocs/editor/htmlcss/resources/textual/TextType.java</include>
<include>com/groupdocs/editor/htmlcss/resources/textual/XmlText.java</include>
<include>com/groupdocs/editor/options/FontExtractionOptions.java</include>
<include>com/groupdocs/editor/options/IDocumentLoadOptions.java</include>
<include>com/groupdocs/editor/options/IDocumentSaveOptions.java</include>
<include>com/groupdocs/editor/options/PdfSaveOptions.java</include>
<include>com/groupdocs/editor/options/TextToHtmlOptions.java</include>
<include>com/groupdocs/editor/words/htmltowords/WordFormats.java</include>
<include>com/groupdocs/editor/words/htmltowords/WordsSaveOptions.java</include>
<include>com/groupdocs/editor/words/wordstohtml/WordToHtmlOptions.java</include>
</sourceFileIncludes>
</configuration>
</execution>
</executions>
<configuration>
<nodeprecated>true</nodeprecated>
<charset>UTF-8</charset>
<docencoding>UTF-8</docencoding>
<docfilessubdirs>true</docfilessubdirs>
<show>public</show>
<source>1.6</source>
<doctitle>GroupDocs.Editor for Java (17.9) API Reference</doctitle>
<windowtitle>GroupDocs.Editor for Java (17.9) API Reference</windowtitle>
<sourcepath>C:\Aspose\GitLab-Runner\builds\bd775882\0\rzeszow\lisbon\editor\java/src/main/java;
C:\Aspose\GitLab-Runner\builds\bd775882\0\rzeszow\lisbon\editor\java/res/f/src/main/java;</sourcepath>
<sourceFileIncludes>
<include>com/groupdocs/editor/EditorHandler.java</include>
<include>com/groupdocs/editor/InputHtmlDocument.java</include>
<include>com/groupdocs/editor/license/License.java</include>
<include>com/groupdocs/editor/OutputHtmlDocument.java</include>
<include>com/groupdocs/editor/htmlcss/css/datatypes/Ratio.java</include>
<include>com/groupdocs/editor/htmlcss/resources/IAuxDisposable.java</include>
<include>com/groupdocs/editor/htmlcss/resources/IHtmlResource.java</include>
<include>com/groupdocs/editor/htmlcss/resources/IResourceType.java</include>
<include>com/groupdocs/editor/htmlcss/resources/ResourceTypeDetector.java</include>
<include>com/groupdocs/editor/htmlcss/resources/fonts/EotFont.java</include>
<include>com/groupdocs/editor/htmlcss/resources/fonts/FontResourceBase.java</include>
<include>com/groupdocs/editor/htmlcss/resources/fonts/FontType.java</include>
<include>com/groupdocs/editor/htmlcss/resources/fonts/TtfFont.java</include>
<include>com/groupdocs/editor/htmlcss/resources/fonts/Woff2Font.java</include>
<include>com/groupdocs/editor/htmlcss/resources/fonts/WoffFont.java</include>
<include>com/groupdocs/editor/htmlcss/resources/images/Dimensions.java</include>
<include>com/groupdocs/editor/htmlcss/resources/images/IImageResource.java</include>
<include>com/groupdocs/editor/htmlcss/resources/images/ImageType.java</include>
<include>com/groupdocs/editor/htmlcss/resources/images/raster/BmpImage.java</include>
<include>com/groupdocs/editor/htmlcss/resources/images/raster/GifImage.java</include>
<include>com/groupdocs/editor/htmlcss/resources/images/raster/IconImage.java</include>
<include>com/groupdocs/editor/htmlcss/resources/images/raster/JpegImage.java</include>
<include>com/groupdocs/editor/htmlcss/resources/images/raster/PngImage.java</include>
<include>com/groupdocs/editor/htmlcss/resources/images/raster/RasterImageResourceBase.java</include>
<include>com/groupdocs/editor/htmlcss/resources/images/vector/SvgImage.java</include>
<include>com/groupdocs/editor/htmlcss/resources/textual/CssText.java</include>
<include>com/groupdocs/editor/htmlcss/resources/textual/ITextResource.java</include>
<include>com/groupdocs/editor/htmlcss/resources/textual/TextType.java</include>
<include>com/groupdocs/editor/htmlcss/resources/textual/XmlText.java</include>
<include>com/groupdocs/editor/options/FontExtractionOptions.java</include>
<include>com/groupdocs/editor/options/IDocumentLoadOptions.java</include>
<include>com/groupdocs/editor/options/IDocumentSaveOptions.java</include>
<include>com/groupdocs/editor/options/PdfSaveOptions.java</include>
<include>com/groupdocs/editor/options/TextToHtmlOptions.java</include>
<include>com/groupdocs/editor/words/htmltowords/WordFormats.java</include>
<include>com/groupdocs/editor/words/htmltowords/WordsSaveOptions.java</include>
<include>com/groupdocs/editor/words/wordstohtml/WordToHtmlOptions.java</include>
</sourceFileIncludes>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.2-beta-5</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<descriptor>./config/assembly-deploy.xml</descriptor>
<finalName>GroupDocs.Editor_17.9-Java</finalName>
<outputDirectory>C:\Aspose\GitLab-Runner\builds\bd775882\0\rzeszow\lisbon\editor\java\target</outputDirectory>
</configuration>
</execution>
</executions>
<configuration>
<descriptor>./config/assembly-deploy.xml</descriptor>
<finalName>GroupDocs.Editor_17.9-Java</finalName>
<outputDirectory>C:\Aspose\GitLab-Runner\builds\bd775882\0\rzeszow\lisbon\editor\java\target</outputDirectory>
</configuration>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.3</version>
<extensions>true</extensions>
<executions>
<execution>
<id>injected-nexus-deploy</id>
<phase>deploy</phase>
<goals>
<goal>deploy</goal>
</goals>
<configuration>
<serverId>sonatype-nexus-staging</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>false</autoReleaseAfterClose>
</configuration>
</execution>
</executions>
<configuration>
<serverId>sonatype-nexus-staging</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>false</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
<properties>
<qa.skip.junit>false</qa.skip.junit>
</properties>
</profile>
<profile>
<id>javadoc</id>
<build>
<plugins>
<plugin>
<artifactId>maven-install-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>3.0.2</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>test</id>
<properties>
<qa.skip.junit>false</qa.skip.junit>
</properties>
</profile>
</profiles>
<repositories>
<repository>
<id>maven.aspose.com</id>
<name>maven.aspose.com-releases</name>
<url>http://maven.aspose.com/repository/ext-release-local</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.aspose</groupId>
<artifactId>aspose-note</artifactId>
<version>17.3.0</version>
<classifier>jdk16</classifier>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.aspose</groupId>
<artifactId>aspose-cad</artifactId>
<version>17.4</version>
<classifier>jdk16</classifier>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.aspose</groupId>
<artifactId>aspose-diagram</artifactId>
<version>17.8</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.aspose</groupId>
<artifactId>aspose-email</artifactId>
<version>17.8</version>
<classifier>jdk16</classifier>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.aspose</groupId>
<artifactId>aspose-tasks</artifactId>
<version>17.5</version>
<classifier>jdk16</classifier>
<scope>provided</scope>
</dependency>
</dependencies>
<properties>
<java.cryptographic.extension.classes>${java.home}/lib/jce.jar</java.cryptographic.extension.classes>
<aspose.diagram.version>17.8</aspose.diagram.version>
<aspose.cad.version>17.4</aspose.cad.version>
<aspose.slides.version>17.7</aspose.slides.version>
<aspose.barcode.version>17.7</aspose.barcode.version>
<aspose.imaging.version>17.7</aspose.imaging.version>
<aspose.note.version>17.3.0</aspose.note.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<package.name>GroupDocs.Editor_${project.version}-Java</package.name>
<maven.compiler.source>1.6</maven.compiler.source>
<jarjar.rules>./config/groupdocs-editor.rules</jarjar.rules>
<aspose.tasks.version>17.5</aspose.tasks.version>
<qa.skip.junit>false</qa.skip.junit>
<maven.compiler.target>1.6</maven.compiler.target>
<java.secure.socket.extension.classes>${java.home}/lib/jsse.jar</java.secure.socket.extension.classes>
<aspose.pdf.version>17.8</aspose.pdf.version>
<aspose.cells.version>17.8</aspose.cells.version>
<aspose.words.version>17.9</aspose.words.version>
<aspose.email.version>17.8</aspose.email.version>
<java.bootstrap.classes>${java.home}/lib/rt.jar</java.bootstrap.classes>
</properties>
</project>