groupdocs-watermark
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.groupdocs</groupId>
<artifactId>groupdocs-watermark</artifactId>
<version>18.3</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-watermark</artifactId>
<name>GroupDocs.Watermark Java</name>
<version>18.3</version>
<description>GroupDocs.Watermark for Java is a powerful document watermarking API to add image and text watermarks. Furthermore, API works to search and remove the watermarks which were already added to the documents by other third-party softwares.
The watermarks added by this API are hard to remove by any third-party tools.
It is straight-forward and self-descriptive for integration into the custom applications.
The most notable features are:
- Add text and image watermarks into documents and images
- Search for possible watermarks in documents and remove them
- Support various document formats: Pdf; MS Office: Word, Excel, PowerPoint, Visio
- Support various image formats: png, bmp, jpeg, jpeg2000, gif, tiff, webp (including multiframe gif and tiff)
- Process documents and images attached to stored email messages (msg, oft, eml, emlx formats are supported)
- Add watermarks to images inside documents of all supported formats
- Two ways of watermark adding/removing are supported: using generalized approach and working with supported format specifics</description>
<url>http://www.groupdocs.com/java/document-watermark-library</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/watermark</url>
</scm>
<build>
<resources>
<resource>
<directory>${project.basedir}/src/main/resources</directory>
</resource>
<resource>
<directory>${project.basedir}/dependencies/aspose-ms/classlib/classes_mscorlib/src/main/resources</directory>
</resource>
<resource>
<directory>${project.basedir}/dependencies/aspose-ms/classlib/classes_System.Security/src/main/resources</directory>
</resource>
<resource>
<directory>${project.basedir}/dependencies/aspose-ms/classlib/classes_System/src/main/resources</directory>
</resource>
<resource>
<directory>${project.basedir}/dependencies/aspose-ms/classlib/classes_System.Xml/src/main/resources</directory>
</resource>
<resource>
<directory>${project.basedir}/dependencies/aspose-ms/classlib/classes_System.Drawing/src/main/resources</directory>
</resource>
<resource>
<directory>${project.basedir}/dependencies/aspose-ms/classlib/classes_NUnit.Framework/src/main/resources</directory>
<excludes>
<exclude>**/*org.testng.ITestNGListener</exclude>
</excludes>
</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>
<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>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
</excludes>
</filter>
</filters>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>3.0.0</version>
<executions>
<execution>
<id>add-source</id>
<phase>generate-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>${project.basedir}/src/test/java/com/groupdocs/watermark</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.8</version>
<executions>
<execution>
<id>create-jarjar</id>
<phase>package</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<target>
<echo />
<java>
<arg />
<arg />
<arg />
<arg />
<arg />
<arg />
<arg />
</java>
</target>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.github.wvengen</groupId>
<artifactId>proguard-maven-plugin</artifactId>
<version>2.0.13</version>
<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.3.1</version>
<scope>runtime</scope>
</dependency>
</dependencies>
<configuration>
<maxMemory>2048m</maxMemory>
<proguardInclude>./config/groupdocs-watermark.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>
<suiteXmlFiles>
<suiteXmlFile>testng.xml</suiteXmlFile>
</suiteXmlFiles>
<argLine>-XX:ErrorFile=c:\JenkinsRemoteRoot\sharedspace\WJ\jvm.log -Xloggc:c:\JenkinsRemoteRoot\sharedspace\WJ\gc.log -XX:+PrintGC -XX:+PrintGCDetails -XX:+PrintGCTimeStamps -XX:+PrintGCDateStamps -XX:+HeapDumpOnOutOfMemoryError -XX:-TieredCompilation -Xms1024m -Xmx2048m -XX:-UseCodeCacheFlushing -XX:ReservedCodeCacheSize=256m -XX:MaxPermSize=512m -Dfile.encoding=UTF-8 -XX:+PrintFlagsFinal</argLine>
<skip>${qa.skip.junit}</skip>
<workingDirectory>target/</workingDirectory>
<configfailurepolicy>continue</configfailurepolicy>
<groups>MultiCulture, LongRunning, MultiThreading, License, Functional, Complex</groups>
<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-failsafe-plugin</artifactId>
<version>2.20.1</version>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
<configuration>
<suiteXmlFiles>
<suiteXmlFile>testng.xml</suiteXmlFile>
</suiteXmlFiles>
<argLine>-XX:ErrorFile=c:\JenkinsRemoteRoot\sharedspace\WJ\jvm.log -Xloggc:c:\JenkinsRemoteRoot\sharedspace\WJ\gc.log -XX:+PrintGC -XX:+PrintGCDetails -XX:+PrintGCTimeStamps -XX:+PrintGCDateStamps -XX:+HeapDumpOnOutOfMemoryError -XX:-TieredCompilation -Xms1024m -Xmx2048m -XX:-UseCodeCacheFlushing -XX:ReservedCodeCacheSize=256m -XX:MaxPermSize=512m -Dfile.encoding=UTF-8 -XX:+PrintFlagsFinal</argLine>
<skip>${qa.skip.failsafe}</skip>
<workingDirectory>target/</workingDirectory>
<testClassesDirectory>${project.build.directory}/${project.build.finalName}-shaded-jarjar-final.jar</testClassesDirectory>
<configfailurepolicy>continue</configfailurepolicy>
<groups>MultiCulture, LongRunning, MultiThreading, License, Functional, Complex</groups>
<includes>
<include>**/**Test.java</include>
<include>**/**Tests.java</include>
</includes>
</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>
<charset>UTF-8</charset>
<docencoding>UTF-8</docencoding>
<docfilessubdirs>true</docfilessubdirs>
<show>protected</show>
<source>1.7</source>
<sourcepath>${project.basedir}/src/main/java;</sourcepath>
</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>
<plugin>
<artifactId>maven-jarsigner-plugin</artifactId>
<version>1.4</version>
<executions>
<execution>
<id>sign</id>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
<configuration>
<storetype>pkcs12</storetype>
<keystore>${project.basedir}/submodules/SignatureKeys/Code Signing Cert.pfx</keystore>
<alias>le-9ad482e9-0b67-4fb9-b7d8-382d48e0ca61</alias>
<storepass>f27Hp99Ds3</storepass>
<archiveDirectory>${project.build.directory}</archiveDirectory>
<includes>
<include>${project.build.finalName}-shaded-jarjar-final.jar</include>
</includes>
<arguments>
<argument>-tsa</argument>
<argument>http://time.certum.pl</argument>
<argument>-sigalg</argument>
<argument>SHA256withRSA</argument>
<argument>-digestalg</argument>
<argument>SHA-256</argument>
</arguments>
<processAttachedArtifacts>false</processAttachedArtifacts>
<removeExistingSignatures>false</removeExistingSignatures>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</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.failsafe>true</qa.skip.failsafe>
<qa.skip.junit>true</qa.skip.junit>
<jarjar.rules>./config/groupdocs-watermark-development.rules</jarjar.rules>
</properties>
</profile>
<profile>
<id>final-notests</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>true</qa.skip.junit>
</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-jarsigner-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>true</qa.skip.junit>
</properties>
</profile>
<profile>
<id>test-obfuscated</id>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>3.0.0</version>
</plugin>
<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-failsafe-plugin</artifactId>
</plugin>
</plugins>
</build>
<properties>
<qa.skip.failsafe>false</qa.skip.failsafe>
<jarjar.rules>./config/groupdocs-watermark-test.rules</jarjar.rules>
<qa.skip.junit>true</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>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:\JenkinsRemoteRoot\sharedspace\WJ_Deploy\target/groupdocs-watermark-18.3-shaded.jar</outputFile>
<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>
<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>
<id>create-jarjar</id>
<phase>package</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<target>
<echo />
<java>
<arg />
<arg />
<arg />
<arg />
<arg />
<arg />
<arg />
</java>
</target>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.github.wvengen</groupId>
<artifactId>proguard-maven-plugin</artifactId>
<version>2.0.13</version>
<executions>
<execution>
<id>proguard</id>
<phase>package</phase>
<goals>
<goal>proguard</goal>
</goals>
<configuration>
<outjar>groupdocs-watermark-18.3.jar</outjar>
<maxMemory>2048m</maxMemory>
<proguardInclude>./config/groupdocs-watermark.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-watermark-18.3-shaded-jarjar.jar</injar>
<outputDirectory>c:\JenkinsRemoteRoot\sharedspace\WJ_Deploy\target</outputDirectory>
</configuration>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>net.sf.proguard</groupId>
<artifactId>proguard-base</artifactId>
<version>5.3.1</version>
<scope>runtime</scope>
</dependency>
</dependencies>
<configuration>
<outjar>groupdocs-watermark-18.3.jar</outjar>
<maxMemory>2048m</maxMemory>
<proguardInclude>./config/groupdocs-watermark.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-watermark-18.3-shaded-jarjar.jar</injar>
<outputDirectory>c:\JenkinsRemoteRoot\sharedspace\WJ_Deploy\target</outputDirectory>
</configuration>
</plugin>
<plugin>
<artifactId>maven-jarsigner-plugin</artifactId>
<version>1.4</version>
<executions>
<execution>
<id>sign</id>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<includes>
<include>c:\JenkinsRemoteRoot\sharedspace\WJ_Deploy\target/groupdocs-watermark-18.3.jar</include>
</includes>
<storetype>pkcs12</storetype>
<keystore>c:\JenkinsRemoteRoot\sharedspace\WJ_Deploy/submodules/SignatureKeys/Code Signing Cert.pfx</keystore>
<alias>le-9ad482e9-0b67-4fb9-b7d8-382d48e0ca61</alias>
<storepass>f27Hp99Ds3</storepass>
<archiveDirectory>c:\JenkinsRemoteRoot\sharedspace\WJ_Deploy\target</archiveDirectory>
<arguments>
<argument>-tsa</argument>
<argument>http://time.certum.pl</argument>
<argument>-sigalg</argument>
<argument>SHA256withRSA</argument>
<argument>-digestalg</argument>
<argument>SHA-256</argument>
</arguments>
<processAttachedArtifacts>false</processAttachedArtifacts>
<removeExistingSignatures>false</removeExistingSignatures>
</configuration>
</execution>
</executions>
<configuration>
<includes>
<include>c:\JenkinsRemoteRoot\sharedspace\WJ_Deploy\target/groupdocs-watermark-18.3.jar</include>
</includes>
<storetype>pkcs12</storetype>
<keystore>c:\JenkinsRemoteRoot\sharedspace\WJ_Deploy/submodules/SignatureKeys/Code Signing Cert.pfx</keystore>
<alias>le-9ad482e9-0b67-4fb9-b7d8-382d48e0ca61</alias>
<storepass>f27Hp99Ds3</storepass>
<archiveDirectory>c:\JenkinsRemoteRoot\sharedspace\WJ_Deploy\target</archiveDirectory>
<arguments>
<argument>-tsa</argument>
<argument>http://time.certum.pl</argument>
<argument>-sigalg</argument>
<argument>SHA256withRSA</argument>
<argument>-digestalg</argument>
<argument>SHA-256</argument>
</arguments>
<processAttachedArtifacts>false</processAttachedArtifacts>
<removeExistingSignatures>false</removeExistingSignatures>
</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:\JenkinsRemoteRoot\sharedspace\WJ_Deploy\target/groupdocs-watermark-18.3.jar</file>
</configuration>
</execution>
</executions>
<configuration>
<skip>false</skip>
<file>c:\JenkinsRemoteRoot\sharedspace\WJ_Deploy\target/groupdocs-watermark-18.3.jar</file>
</configuration>
</plugin>
<plugin>
<artifactId>maven-install-plugin</artifactId>
<version>2.5.1</version>
<executions>
<execution>
<id>default-install</id>
<phase>install</phase>
<goals>
<goal>install</goal>
</goals>
<configuration>
<file>c:\JenkinsRemoteRoot\sharedspace\WJ_Deploy\target/groupdocs-watermark-18.3.jar</file>
<artifactId>groupdocs-watermark</artifactId>
<groupId>com.groupdocs</groupId>
<version>18.3</version>
<packaging>jar</packaging>
</configuration>
</execution>
<execution>
<id>install</id>
<phase>package</phase>
<goals>
<goal>install-file</goal>
</goals>
<configuration>
<file>c:\JenkinsRemoteRoot\sharedspace\WJ_Deploy\target/groupdocs-watermark-18.3.jar</file>
<artifactId>groupdocs-watermark</artifactId>
<groupId>com.groupdocs</groupId>
<version>18.3</version>
<packaging>jar</packaging>
</configuration>
</execution>
</executions>
<configuration>
<file>c:\JenkinsRemoteRoot\sharedspace\WJ_Deploy\target/groupdocs-watermark-18.3.jar</file>
<artifactId>groupdocs-watermark</artifactId>
<groupId>com.groupdocs</groupId>
<version>18.3</version>
<packaging>jar</packaging>
</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>
<charset>UTF-8</charset>
<docencoding>UTF-8</docencoding>
<docfilessubdirs>true</docfilessubdirs>
<show>protected</show>
<source>1.7</source>
<sourcepath>c:\JenkinsRemoteRoot\sharedspace\WJ_Deploy/src/main/java;</sourcepath>
</configuration>
</execution>
</executions>
<configuration>
<charset>UTF-8</charset>
<docencoding>UTF-8</docencoding>
<docfilessubdirs>true</docfilessubdirs>
<show>protected</show>
<source>1.7</source>
<sourcepath>c:\JenkinsRemoteRoot\sharedspace\WJ_Deploy/src/main/java;</sourcepath>
</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.Watermark_18.3-Java</finalName>
<outputDirectory>c:\JenkinsRemoteRoot\sharedspace\WJ_Deploy\target</outputDirectory>
</configuration>
</execution>
</executions>
<configuration>
<descriptor>./config/assembly-deploy.xml</descriptor>
<finalName>GroupDocs.Watermark_18.3-Java</finalName>
<outputDirectory>c:\JenkinsRemoteRoot\sharedspace\WJ_Deploy\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>
<archive>
<manifestFile>src/main/resources/META-INF/MANIFEST.MF</manifestFile>
</archive>
</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-central</id>
<url>http://repo1.maven.org/maven2</url>
</repository>
<repository>
<id>sonatype-nexus-staging</id>
<url>http://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
<repository>
<id>central</id>
<url>http://maven.aspose.com/artifactory/libs-release</url>
</repository>
<repository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>aspose-central</id>
<url>http://maven.aspose.com/repository/ext-release-local/</url>
</repository>
<repository>
<id>aspose-moscow-central</id>
<name>moscow-tcba1-releases</name>
<url>https://artefacts.odessa.dynabic.com/artifactory/moscow-release-local</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>6.8.8</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>bsh</artifactId>
<groupId>org.beanshell</groupId>
</exclusion>
<exclusion>
<artifactId>jcommander</artifactId>
<groupId>com.beust</groupId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<distributionManagement>
<repository>
<id>sonatype-nexus-staging</id>
<url>http://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<properties>
<java.cryptographic.extension.classes>${java.home}/lib/jce.jar</java.cryptographic.extension.classes>
<aspose.diagram.version>17.7</aspose.diagram.version>
<aspose.cad.version>1.1.0</aspose.cad.version>
<aspose.slides.version>17.8</aspose.slides.version>
<aspose.barcode.version>17.03</aspose.barcode.version>
<aspose.imaging.version>17.4</aspose.imaging.version>
<qa.skip.failsafe>true</qa.skip.failsafe>
<aspose.note.version>16.12.0</aspose.note.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<package.name>GroupDocs.Watermark_${project.version}-Java</package.name>
<maven.compiler.source>1.7</maven.compiler.source>
<jarjar.rules>./config/groupdocs-watermark.rules</jarjar.rules>
<aspose.tasks.version>9.5.0</aspose.tasks.version>
<qa.skip.junit>false</qa.skip.junit>
<maven.compiler.target>1.7</maven.compiler.target>
<java.secure.socket.extension.classes>${java.home}/lib/jsse.jar</java.secure.socket.extension.classes>
<aspose.pdf.version>17.6</aspose.pdf.version>
<aspose.cells.version>17.12</aspose.cells.version>
<aspose.words.version>17.1.0</aspose.words.version>
<aspose.email.version>17.9</aspose.email.version>
<java.bootstrap.classes>${java.home}/lib/rt.jar</java.bootstrap.classes>
</properties>
</project>