docusign-esign-java
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.docusign</groupId> <artifactId>docusign-esign-java</artifactId> <version>6.0.0</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.docusign</groupId> <artifactId>docusign-esign-java</artifactId> <name>docusign-esign-java</name> <version>6.0.0</version> <description>The official Docusign eSignature JAVA client is based on version 2.1 of the Docusign REST API and provides libraries for JAVA application integration. It is recommended that you use this version of the library for new development.</description> <url>https://developers.docusign.com</url> <prerequisites> <maven>2.2.0</maven> </prerequisites> <developers> <developer> <name>DocuSign Developer Center</name> <email>devcenter@docusign.com</email> <organization>DocuSign</organization> <organizationUrl>https://developers.docusign.com</organizationUrl> </developer> </developers> <licenses> <license> <name>DocuSign Java Client License</name> <url>https://raw.githubusercontent.com/docusign/docusign-esign-java-client/master/LICENSE</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:git@github.com:docusign/docusign-esign-java-client.git</connection> <developerConnection>scm:git:git@github.com:docusign/docusign-esign-java-client.git</developerConnection> <url>git@github.com:docusign/docusign-esign-java-client.git</url> </scm> <build> <plugins> <plugin> <groupId>com.diffplug.spotless</groupId> <artifactId>spotless-maven-plugin</artifactId> <version>2.12.1</version> <executions> <execution> <phase>compile</phase> <goals> <goal>apply</goal> </goals> </execution> </executions> <configuration> <java> <includes> <include>src/main/java/**/*.java</include> <include>src/test/java/**/*.java</include> </includes> <importOrder /> <removeUnusedImports /> <googleJavaFormat> <version>1.7</version> <style>GOOGLE</style> </googleJavaFormat> </java> </configuration> </plugin> <plugin> <artifactId>maven-checkstyle-plugin</artifactId> <version>3.1.2</version> <executions> <execution> <phase>compile</phase> <goals> <goal>checkstyle</goal> </goals> </execution> </executions> <configuration> <configLocation>${project.basedir}/checkstyle.xml</configLocation> </configuration> </plugin> <plugin> <artifactId>maven-enforcer-plugin</artifactId> <version>3.0.0-M1</version> <executions> <execution> <id>enforce-maven</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireMavenVersion> <version>2.2.0</version> </requireMavenVersion> </rules> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>3.0.0-M3</version> <dependencies> <dependency> <groupId>org.apache.maven.surefire</groupId> <artifactId>surefire-junit47</artifactId> <version>3.0.0-M3</version> </dependency> </dependencies> <configuration> <runOrder>alphabetical</runOrder> <argLine>-Xms512m -Xmx1500m</argLine> <parallel>methods</parallel> <useUnlimitedThreads>true</useUnlimitedThreads> <forkCount>1</forkCount> <reuseForks>false</reuseForks> <threadCount>1</threadCount> <perCoreThreadCount>false</perCoreThreadCount> <includes> <include>**/*Tests.java</include> </includes> </configuration> </plugin> <plugin> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>copy-dependencies</goal> </goals> <configuration> <outputDirectory>${project.build.directory}/lib</outputDirectory> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>3.1.1</version> <executions> <execution> <goals> <goal>test-jar</goal> </goals> </execution> </executions> <configuration /> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>1.10</version> <executions> <execution> <id>add_sources</id> <phase>generate-sources</phase> <goals> <goal>add-source</goal> </goals> <configuration> <sources> <source>src/main/java</source> </sources> </configuration> </execution> <execution> <id>add_test_sources</id> <phase>generate-test-sources</phase> <goals> <goal>add-test-source</goal> </goals> <configuration> <sources> <source>src/test/java</source> </sources> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.6.1</version> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.4</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.owasp</groupId> <artifactId>dependency-check-maven</artifactId> <version>10.0.2</version> <executions> <execution> <goals> <goal>check</goal> </goals> </execution> </executions> <configuration> <failBuildOnCVSS>8</failBuildOnCVSS> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>3.3.0</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <shadedArtifactAttached>true</shadedArtifactAttached> <shadedClassifierName>shaded</shadedClassifierName> <artifactSet> <excludes> <exclude>junit:junit:jar:</exclude> <exclude>org.hamcrest:hamcrest-core:jar</exclude> </excludes> </artifactSet> <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> </plugin> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.8</version> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.1</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>hamcrest-core</artifactId> <groupId>org.hamcrest</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>5.10.2</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>opentest4j</artifactId> <groupId>org.opentest4j</groupId> </exclusion> <exclusion> <artifactId>junit-platform-commons</artifactId> <groupId>org.junit.platform</groupId> </exclusion> <exclusion> <artifactId>apiguardian-api</artifactId> <groupId>org.apiguardian</groupId> </exclusion> </exclusions> </dependency> </dependencies> <distributionManagement> <repository> <id>ossrh2</id> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <properties> <swagger-core-version>2.2.8</swagger-core-version> <jersey-version>3.1.6</jersey-version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <junit-version>4.13.1</junit-version> <jackson-version>2.14.2</jackson-version> </properties> </project>