<?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">
  <parent>
    <artifactId>oss-parent</artifactId>
    <groupId>org.sonatype.oss</groupId>
    <version>7</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.groupdocs</groupId>
  <artifactId>groupdocs-conversion</artifactId>
  <name>GroupDocs Java Conversion</name>
  <version>1.3.0</version>
  <description>GroupDocs.Conversion an advanced class library that allows you to convert back and forth between over 50
        document formats from within your Java applications.
        The library supports all Microsoft Office document formats as well as PDF, HTML and common image file formats
        (TIFF, JPEG, GIF, PNG, BMP).
        Documents can be converted one by one on the fly, or added to a conversion queue.</description>
  <url>http://maven.apache.org</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://www.aspose.com/corporate/purchase/end-user-license-agreement.aspx</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <scm>
    <connection>scm:git:ssh://git@bitbucket.org/groupdocs/groupdocs-java-conversion</connection>
    <developerConnection>scm:git:ssh://git@bitbucket.org/groupdocs/groupdocs-java-conversion</developerConnection>
    <url>https://bitbucket.org/groupdocs/groupdocs-java-conversion</url>
  </scm>
  <organization>
    <name>GroupDocs</name>
    <url>http://groupdocs.com</url>
  </organization>
  <build>
    <pluginManagement>
      <plugins>
        <plugin>
          <artifactId>maven-jar-plugin</artifactId>
          <version>2.4</version>
          <configuration>
            <archive>
              <manifest>
                <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
              </manifest>
            </archive>
          </configuration>
        </plugin>
        <plugin>
          <artifactId>maven-shade-plugin</artifactId>
          <version>1.6</version>
          <executions>
            <execution>
              <phase>package</phase>
              <goals>
                <goal>shade</goal>
              </goals>
            </execution>
          </executions>
          <configuration>
            <createDependencyReducedPom>true</createDependencyReducedPom>
            <filters>
              <filter>
                <artifact>*:*</artifact>
                <excludes>
                  <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>
                  <java>
                    <arg />
                    <arg />
                    <arg />
                    <arg />
                    <arg />
                    <arg />
                    <arg />
                  </java>
                </tasks>
              </configuration>
            </execution>
          </executions>
        </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}-jarjar-fat-final.jar</file>
            <artifactId>${project.artifactId}</artifactId>
            <groupId>${project.groupId}</groupId>
            <version>${project.version}</version>
            <packaging>${project.packaging}</packaging>
          </configuration>
        </plugin>
        <plugin>
          <groupId>com.github.wvengen</groupId>
          <artifactId>proguard-maven-plugin</artifactId>
          <executions>
            <execution>
              <id>proguard</id>
              <phase>package</phase>
              <goals>
                <goal>proguard</goal>
              </goals>
            </execution>
          </executions>
          <dependencies>
            <dependency>
              <groupId>net.sf.proguard</groupId>
              <artifactId>proguard-base</artifactId>
              <version>5.2.1</version>
              <scope>runtime</scope>
            </dependency>
          </dependencies>
          <configuration>
            <maxMemory>2048m</maxMemory>
            <proguardInclude>${basedir}/groupdocs-conversion.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}-jarjar-stage-two.jar</injar>
            <outjar>${project.build.finalName}-jarjar-fat-final.jar</outjar>
            <outputDirectory>${project.build.directory}</outputDirectory>
          </configuration>
        </plugin>
        <plugin>
          <artifactId>maven-javadoc-plugin</artifactId>
          <executions>
            <execution>
              <id>attach-javadocs</id>
              <phase>initialize</phase>
              <goals>
                <goal>jar</goal>
              </goals>
            </execution>
          </executions>
          <configuration>
            <charset>UTF-8</charset>
            <docencoding>UTF-8</docencoding>
            <docfilessubdirs>true</docfilessubdirs>
            <show>protected</show>
            <source>1.6</source>
            <sourceFileIncludes>
              <include>com/groupdocs/conversion/api/options/*</include>
              <include>com/groupdocs/conversion/api/interfaces/*</include>
              <include>com/groupdocs/conversion/api/ApiFactory.java</include>
              <include>com/groupdocs/conversion/exception/*</include>
              <include>com/groupdocs/conversion/config/*</include>
              <include>com/groupdocs/conversion/domain/*</include>
              <include>com/groupdocs/conversion/converter/options/*</include>
              <include>com/groupdocs/conversion/handler/*</include>
              <include>com/groupdocs/conversion/merge/options/*</include>
              <include>com/groupdocs/conversion/option/*</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>
            <excludes>
              <exclude>**/com/groupdocs/conversion/**</exclude>
            </excludes>
          </configuration>
        </plugin>
        <plugin>
          <artifactId>maven-surefire-plugin</artifactId>
          <version>2.18.1</version>
          <configuration>
            <workingDirectory>${project.build.directory}/junit/</workingDirectory>
            <argLine>-Xms512m -Xmx512m -XX:MaxPermSize=512m -XX:PermSize=512m -ea -XX:-UseSplitVerifier</argLine>
            <skip>${qa.skip.junit}</skip>
            <systemPropertyVariables>
              <mavenRunner>true</mavenRunner>
            </systemPropertyVariables>
          </configuration>
        </plugin>
        <plugin>
          <artifactId>maven-gpg-plugin</artifactId>
          <executions>
            <execution>
              <id>sign-artifacts</id>
              <phase>verify</phase>
              <goals>
                <goal>sign</goal>
              </goals>
            </execution>
          </executions>
          <configuration>
            <passphrase>${gpg.passphrase}</passphrase>
            <publicKeyring>${gpg.publicKeyring}</publicKeyring>
          </configuration>
        </plugin>
      </plugins>
    </pluginManagement>
    <plugins>
      <plugin>
        <artifactId>maven-install-plugin</artifactId>
        <version>2.5.1</version>
        <configuration>
          <skip>true</skip>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-enforcer-plugin</artifactId>
        <executions>
          <execution>
            <id>enforce-versions</id>
            <goals>
              <goal>enforce</goal>
            </goals>
            <configuration>
              <rules>
                <requireJavaVersion>
                  <version>[1.6,)</version>
                </requireJavaVersion>
              </rules>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
  <profiles>
    <profile>
      <id>development</id>
      <build>
        <plugins>
          <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}-jarjar-stage-two.jar</file>
            </configuration>
          </plugin>
          <plugin>
            <artifactId>maven-surefire-plugin</artifactId>
          </plugin>
        </plugins>
      </build>
    </profile>
    <profile>
      <id>fat</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>
    </profile>
    <profile>
      <id>release</id>
      <build>
        <plugins>
          <plugin>
            <artifactId>maven-shade-plugin</artifactId>
            <version>1.6</version>
            <executions>
              <execution>
                <phase>package</phase>
                <goals>
                  <goal>shade</goal>
                </goals>
                <configuration>
                  <createDependencyReducedPom>true</createDependencyReducedPom>
                  <filters>
                    <filter>
                      <artifact>*:*</artifact>
                      <excludes>
                        <exclude>META-INF/*.SF</exclude>
                        <exclude>META-INF/*.DSA</exclude>
                        <exclude>META-INF/*.RSA</exclude>
                      </excludes>
                    </filter>
                  </filters>
                </configuration>
              </execution>
            </executions>
            <configuration>
              <createDependencyReducedPom>true</createDependencyReducedPom>
              <filters>
                <filter>
                  <artifact>*:*</artifact>
                  <excludes>
                    <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>
                    <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.11</version>
            <executions>
              <execution>
                <id>proguard</id>
                <phase>package</phase>
                <goals>
                  <goal>proguard</goal>
                </goals>
                <configuration>
                  <outjar>groupdocs-conversion-1.3.0.jar</outjar>
                  <maxMemory>2048m</maxMemory>
                  <proguardInclude>D:\workspace\workspace_java\groupdocs-java-conversion\v1.3.0\groupdocs-java-conversion/groupdocs-conversion.pro</proguardInclude>
                  <libs>
                    <lib>C:\Java\jdk1.7.0_79\jre/lib/rt.jar</lib>
                    <lib>C:\Java\jdk1.7.0_79\jre/lib/jce.jar</lib>
                    <lib>C:\Java\jdk1.7.0_79\jre/lib/jsse.jar</lib>
                  </libs>
                  <obfuscate>true</obfuscate>
                  <injar>groupdocs-conversion-1.3.0-jarjar-stage-two.jar</injar>
                  <outputDirectory>D:\workspace\workspace_java\groupdocs-java-conversion\v1.3.0\groupdocs-java-conversion\target</outputDirectory>
                </configuration>
              </execution>
            </executions>
            <dependencies>
              <dependency>
                <groupId>net.sf.proguard</groupId>
                <artifactId>proguard-base</artifactId>
                <version>5.2.1</version>
                <scope>runtime</scope>
              </dependency>
            </dependencies>
            <configuration>
              <outjar>groupdocs-conversion-1.3.0.jar</outjar>
              <maxMemory>2048m</maxMemory>
              <proguardInclude>D:\workspace\workspace_java\groupdocs-java-conversion\v1.3.0\groupdocs-java-conversion/groupdocs-conversion.pro</proguardInclude>
              <libs>
                <lib>C:\Java\jdk1.7.0_79\jre/lib/rt.jar</lib>
                <lib>C:\Java\jdk1.7.0_79\jre/lib/jce.jar</lib>
                <lib>C:\Java\jdk1.7.0_79\jre/lib/jsse.jar</lib>
              </libs>
              <obfuscate>true</obfuscate>
              <injar>groupdocs-conversion-1.3.0-jarjar-stage-two.jar</injar>
              <outputDirectory>D:\workspace\workspace_java\groupdocs-java-conversion\v1.3.0\groupdocs-java-conversion\target</outputDirectory>
            </configuration>
          </plugin>
          <plugin>
            <artifactId>maven-javadoc-plugin</artifactId>
            <version>2.10.3</version>
            <executions>
              <execution>
                <id>attach-javadocs</id>
                <phase>initialize</phase>
                <goals>
                  <goal>jar</goal>
                </goals>
                <configuration>
                  <charset>UTF-8</charset>
                  <docencoding>UTF-8</docencoding>
                  <docfilessubdirs>true</docfilessubdirs>
                  <show>protected</show>
                  <source>1.6</source>
                  <sourceFileIncludes>
                    <include>com/groupdocs/conversion/api/options/*</include>
                    <include>com/groupdocs/conversion/api/interfaces/*</include>
                    <include>com/groupdocs/conversion/api/ApiFactory.java</include>
                    <include>com/groupdocs/conversion/exception/*</include>
                    <include>com/groupdocs/conversion/config/*</include>
                    <include>com/groupdocs/conversion/domain/*</include>
                    <include>com/groupdocs/conversion/converter/options/*</include>
                    <include>com/groupdocs/conversion/handler/*</include>
                    <include>com/groupdocs/conversion/merge/options/*</include>
                    <include>com/groupdocs/conversion/option/*</include>
                  </sourceFileIncludes>
                </configuration>
              </execution>
            </executions>
            <configuration>
              <charset>UTF-8</charset>
              <docencoding>UTF-8</docencoding>
              <docfilessubdirs>true</docfilessubdirs>
              <show>protected</show>
              <source>1.6</source>
              <sourceFileIncludes>
                <include>com/groupdocs/conversion/api/options/*</include>
                <include>com/groupdocs/conversion/api/interfaces/*</include>
                <include>com/groupdocs/conversion/api/ApiFactory.java</include>
                <include>com/groupdocs/conversion/exception/*</include>
                <include>com/groupdocs/conversion/config/*</include>
                <include>com/groupdocs/conversion/domain/*</include>
                <include>com/groupdocs/conversion/converter/options/*</include>
                <include>com/groupdocs/conversion/handler/*</include>
                <include>com/groupdocs/conversion/merge/options/*</include>
                <include>com/groupdocs/conversion/option/*</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>
                <configuration>
                  <excludes>
                    <exclude>**/com/groupdocs/conversion/**</exclude>
                  </excludes>
                </configuration>
              </execution>
            </executions>
            <configuration>
              <excludes>
                <exclude>**/com/groupdocs/conversion/**</exclude>
              </excludes>
            </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>
                  <file>groupdocs-conversion-1.3.0.jar</file>
                  <passphrase>supportpasswd</passphrase>
                  <publicKeyring>C:\Users\liosha\AppData\Roaming\gnupg\secring.gpg</publicKeyring>
                </configuration>
              </execution>
            </executions>
            <configuration>
              <file>groupdocs-conversion-1.3.0.jar</file>
              <passphrase>supportpasswd</passphrase>
              <publicKeyring>C:\Users\liosha\AppData\Roaming\gnupg\secring.gpg</publicKeyring>
            </configuration>
          </plugin>
          <plugin>
            <artifactId>maven-install-plugin</artifactId>
            <configuration>
              <file>${project.build.directory}/${project.build.finalName}.jar</file>
            </configuration>
          </plugin>
        </plugins>
      </build>
    </profile>
    <profile>
      <id>javadoc</id>
      <build>
        <plugins>
          <plugin>
            <artifactId>maven-javadoc-plugin</artifactId>
          </plugin>
        </plugins>
      </build>
    </profile>
  </profiles>
  <repositories>
    <repository>
      <id>com.springsource.repository.bundles.external</id>
      <name>SpringSource Enterprise Bundle Repository - External Bundle Releases</name>
      <url>http://repository.springsource.com/maven/bundles/external</url>
    </repository>
    <repository>
      <releases />
      <id>maven-central</id>
      <url>https://repo1.maven.org/maven2</url>
    </repository>
    <repository>
      <snapshots>
        <enabled>false</enabled>
      </snapshots>
      <id>central</id>
      <name>libs-release</name>
      <url>http://maven.aspose.com/repository/libs-release</url>
    </repository>
    <repository>
      <snapshots />
      <id>snapshots</id>
      <name>libs-snapshot</name>
      <url>http://maven.aspose.com/repository/libs-snapshot</url>
    </repository>
  </repositories>
  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.12</version>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <artifactId>hamcrest-core</artifactId>
          <groupId>org.hamcrest</groupId>
        </exclusion>
      </exclusions>
    </dependency>
  </dependencies>
  <properties>
    <aspose.imaging.version>3.0.2</aspose.imaging.version>
    <aspose.slides.version>15.8.0</aspose.slides.version>
    <aspose.email.version>5.8.0</aspose.email.version>
    <java.secure.socket.extension.classes>${java.home}/lib/jsse.jar</java.secure.socket.extension.classes>
    <aspose.diagram.version>5.7.0</aspose.diagram.version>
    <aspose.tasks.version>8.8.0</aspose.tasks.version>
    <aspose.pdf.version>10.8.0</aspose.pdf.version>
    <aspose.words.version>15.9.0</aspose.words.version>
    <aspose.cells.version>8.6.0</aspose.cells.version>
    <java.bootstrap.classes>${java.home}/lib/rt.jar</java.bootstrap.classes>
    <maven.compiler.target>1.6</maven.compiler.target>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <java.cryptographic.extension.classes>${java.home}/lib/jce.jar</java.cryptographic.extension.classes>
    <maven.compiler.source>1.6</maven.compiler.source>
    <qa.skip.junit>false</qa.skip.junit>
  </properties>
</project>

