Skip to content

Commit 4ebda49

Browse files
Merge pull request #13 from signnow/sync-sdks
Sync sdks
2 parents c4bea36 + de1d6d6 commit 4ebda49

5 files changed

Lines changed: 32 additions & 7 deletions

File tree

.gitignore

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,36 @@
1+
# Build output
2+
/target
3+
/.gradle
4+
5+
# Dependencies
16
/vendor
7+
8+
# IDE
29
/.idea
310
/.fleet
411
/.vscode
5-
/target
12+
/.netbeans
13+
*.iml
14+
*.ipr
15+
*.iws
16+
17+
# Editor swap files
18+
*.swp
19+
*.swo
20+
*~
21+
22+
# OS
23+
.DS_Store
24+
Thumbs.db
25+
26+
# Environment / credentials
627
.env
728
.env.backup
829
.env.production
930
.env.development
31+
.env.test
32+
.env.local
33+
34+
# Project-local examples / fixtures
1035
examples/signnow-example.properties
1136
examples/files/bulk_real.csv

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# The MIT License
22

3-
Copyright (c) 2003-2019 airSlate Inc. [LICENSE](https://github.com/signnow/SignNowPHPSDK/blob/master/LICENSE.md)
3+
Copyright (c) 2003-present SignNow
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# signNow API Java SDK
1+
# SignNow API Java SDK
22
## v3.5.2
33

44
[![Java Version](https://img.shields.io/badge/codebase-java--11-yellowgreen)](https://www.java.com/)

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686
<plugin>
8787
<groupId>org.apache.maven.plugins</groupId>
8888
<artifactId>maven-surefire-plugin</artifactId>
89-
<version>3.0.0-M5</version>
89+
<version>3.5.2</version>
9090
</plugin>
9191
<plugin>
9292
<groupId>org.apache.maven.plugins</groupId>

src/main/java/com/signnow/Sdk.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* This file is a part of signNow SDK API client.
2+
* This file is a part of SignNow SDK API client.
33
*
44
* (с) Copyright © 2011-present airSlate Inc. (https://www.signnow.com)
55
*
@@ -18,7 +18,7 @@
1818
import com.signnow.core.token.BearerToken;
1919

2020
/**
21-
* Main class for the signNow SDK.
21+
* Main class for the SignNow SDK.
2222
*/
2323
public class Sdk {
2424

@@ -29,7 +29,7 @@ public class Sdk {
2929
private static final String GRANT_TYPE_BY_PASSWORD = "password";
3030

3131
/**
32-
* signNow SDK Service Provider
32+
* SignNow SDK Service Provider
3333
*/
3434
private final ApiServiceProvider apiServiceProvider;
3535

0 commit comments

Comments
 (0)