Skip to content

Commit 17a305c

Browse files
author
Majid Mallis
committed
Dousing Signature Java client - 2.0.1
- jersey-version=1.19.1 - jackson-version=2.7.0
1 parent 532a5b8 commit 17a305c

File tree

898 files changed

+109434
-51099
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

898 files changed

+109434
-51099
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Add this dependency to your project's POM:
1818
<dependency>
1919
<groupId>com.docusign</groupId>
2020
<artifactId>docusign-esign-java</artifactId>
21-
<version>2.0.0</version>
21+
<version>2.0.1</version>
2222
</dependency>
2323
```
2424

@@ -27,7 +27,7 @@ Add this dependency to your project's POM:
2727
Add this dependency to your project's build file:
2828

2929
```groovy
30-
compile "com.docusign:docusign-esign-java:2.0.0"
30+
compile "com.docusign:docusign-esign-java:2.0.1"
3131
```
3232

3333
#### Note for Android Developers
@@ -53,14 +53,14 @@ android {
5353

5454
This client is available through the following Java package managers:
5555

56-
- [Nexus Repository Manager](https://oss.sonatype.org/#nexus-search;quick~docusign-esign-java) (oss.sonatype.org). You can search for com.docusign or docusign-esign-java. The current version is 2.0.0.
57-
- [JFrog Bintray](https://bintray.com/search?query=docusign-esign-java) (bintray.com). You can search for com.docusign or docusign-esign-java. The current version is 2.0.0.
56+
- [Nexus Repository Manager](https://oss.sonatype.org/#nexus-search;quick~docusign-esign-java) (oss.sonatype.org). You can search for com.docusign or docusign-esign-java. The current version is 2.0.1.
57+
- [JFrog Bintray](https://bintray.com/search?query=docusign-esign-java) (bintray.com). You can search for com.docusign or docusign-esign-java. The current version is 2.0.1.
5858

5959
### Others
6060

6161
Or you can manually download and add the following JARs to your project:
6262

63-
* The [docusign-esign-java-2.0.0](/target/docusign-esign-java-2.0.0.jar) JAR.
63+
* The [docusign-esign-java-2.0.1](/target/docusign-esign-java-2.0.1.jar) JAR.
6464
* The [Dependency JARs](/target/lib) in /lib folder.
6565

6666

build.gradle

100755100644
Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
1-
group = 'com.docusign.esign'
2-
version = '15.4.0'
1+
apply plugin: 'idea'
2+
apply plugin: 'eclipse'
3+
4+
group = 'com.docusign'
5+
version = '2.0.1'
36

47
buildscript {
58
repositories {
@@ -80,7 +83,7 @@ if(hasProperty('target') && target == 'android') {
8083

8184
install {
8285
repositories.mavenInstaller {
83-
pom.artifactId = 'com.docusign.esign'
86+
pom.artifactId = 'docusign-esign-java'
8487
}
8588
}
8689

@@ -91,22 +94,23 @@ if(hasProperty('target') && target == 'android') {
9194
}
9295

9396
ext {
94-
swagger_annotations_version = "1.5.0"
95-
jackson_version = "2.4.2"
96-
jersey_version = "1.18"
97-
jodatime_version = "2.3"
98-
junit_version = "4.8.1"
97+
swagger_annotations_version = "1.5.8"
98+
jackson_version = "2.7.0"
99+
jersey_version = "1.19.1"
100+
jodatime_version = "2.9.3"
101+
junit_version = "4.12"
99102
}
100103

101104
dependencies {
102105
compile "io.swagger:swagger-annotations:$swagger_annotations_version"
103-
compile “javax.annotation:jsr250-api:1.0
104106
compile "com.sun.jersey:jersey-client:$jersey_version"
105107
compile "com.sun.jersey.contribs:jersey-multipart:$jersey_version"
106108
compile "com.fasterxml.jackson.core:jackson-core:$jackson_version"
107109
compile "com.fasterxml.jackson.core:jackson-annotations:$jackson_version"
108110
compile "com.fasterxml.jackson.core:jackson-databind:$jackson_version"
111+
compile "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider:$jackson_version"
109112
compile "com.fasterxml.jackson.datatype:jackson-datatype-joda:2.1.5"
110113
compile "joda-time:joda-time:$jodatime_version"
114+
compile "com.brsanthu:migbase64:2.2"
111115
testCompile "junit:junit:$junit_version"
112-
}
116+
}

git_push.sh

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
#!/bin/sh
2+
# ref: https://help.github.com/articles/adding-an-existing-project-to-github-using-the-command-line/
3+
#
4+
# Usage example: /bin/sh ./git_push.sh wing328 swagger-petstore-perl "minor update"
5+
6+
git_user_id=$1
7+
git_repo_id=$2
8+
release_note=$3
9+
10+
if [ "$git_user_id" = "" ]; then
11+
git_user_id="YOUR_GIT_USR_ID"
12+
echo "[INFO] No command line input provided. Set \$git_user_id to $git_user_id"
13+
fi
14+
15+
if [ "$git_repo_id" = "" ]; then
16+
git_repo_id="YOUR_GIT_REPO_ID"
17+
echo "[INFO] No command line input provided. Set \$git_repo_id to $git_repo_id"
18+
fi
19+
20+
if [ "$release_note" = "" ]; then
21+
release_note="Minor update"
22+
echo "[INFO] No command line input provided. Set \$release_note to $release_note"
23+
fi
24+
25+
# Initialize the local directory as a Git repository
26+
git init
27+
28+
# Adds the files in the local repository and stages them for commit.
29+
git add .
30+
31+
# Commits the tracked changes and prepares them to be pushed to a remote repository.
32+
git commit -m "$release_note"
33+
34+
# Sets the new remote
35+
git_remote=`git remote`
36+
if [ "$git_remote" = "" ]; then # git remote not defined
37+
38+
if [ "$GIT_TOKEN" = "" ]; then
39+
echo "[INFO] \$GIT_TOKEN (environment variable) is not set. Using the git crediential in your environment."
40+
git remote add origin https://github.com/${git_user_id}/${git_repo_id}.git
41+
else
42+
git remote add origin https://${git_user_id}:${GIT_TOKEN}@github.com/${git_user_id}/${git_repo_id}.git
43+
fi
44+
45+
fi
46+
47+
git pull origin master
48+
49+
# Pushes (Forces) the changes in the local repository up to the remote repository
50+
echo "Git pushing to https://github.com/${git_user_id}/${git_repo_id}.git"
51+
git push origin master 2>&1 | grep -v 'To https'
52+

gradle.properties

100755100644
File mode changed.

pom.xml

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
<groupId>com.docusign</groupId>
55
<artifactId>docusign-esign-java</artifactId>
66
<packaging>jar</packaging>
7-
<name>${project.groupId}:${project.artifactId}</name>
8-
<version>2.0.0</version>
7+
<name>docusign-esign-java</name>
8+
<version>2.0.1</version>
99
<description>The official DocuSign eSignature JAVA client is based on version 2 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>
1010
<url>https://www.docusign.com/developer-center</url>
1111

@@ -96,10 +96,13 @@
9696
<execution>
9797
<id>attach-javadocs</id>
9898
<goals>
99-
<goal>jar</goal>
99+
<goal>jar</goal>
100100
</goals>
101+
<configuration>
102+
<additionalparam>-Xdoclint:none</additionalparam>
103+
</configuration>
101104
</execution>
102-
</executions>
105+
</executions>
103106
</plugin>
104107

105108
<plugin>
@@ -226,7 +229,7 @@
226229
<groupId>com.fasterxml.jackson.jaxrs</groupId>
227230
<artifactId>jackson-jaxrs-json-provider</artifactId>
228231
<version>${jackson-version}</version>
229-
</dependency>
232+
</dependency>
230233
<dependency>
231234
<groupId>com.fasterxml.jackson.datatype</groupId>
232235
<artifactId>jackson-datatype-joda</artifactId>
@@ -254,11 +257,12 @@
254257
</dependency>
255258
</dependencies>
256259
<properties>
257-
<swagger-annotations-version>1.5.4</swagger-annotations-version>
258-
<jersey-version>1.18</jersey-version>
259-
<jackson-version>2.4.2</jackson-version>
260-
<jodatime-version>2.3</jodatime-version>
260+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
261+
<swagger-annotations-version>1.5.8</swagger-annotations-version>
262+
<jersey-version>1.19.1</jersey-version>
263+
<jackson-version>2.7.0</jackson-version>
264+
<jodatime-version>2.9.3</jodatime-version>
261265
<maven-plugin-version>1.0.0</maven-plugin-version>
262-
<junit-version>4.8.1</junit-version>
266+
<junit-version>4.12</junit-version>
263267
</properties>
264268
</project>

settings.gradle

100755100644
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
rootProject.name = "com.docusign.esign"
1+
rootProject.name = "docusign-esign-java"

src/main/AndroidManifest.xml

100755100644
File mode changed.

0 commit comments

Comments
 (0)