From 9889cef03f5dc7ddd6968884fdfc1c4e5b323ab7 Mon Sep 17 00:00:00 2001 From: Petro Vakulenko Date: Fri, 1 May 2026 12:46:00 +0200 Subject: [PATCH 1/2] chore: SignNow rebrand in LICENSE + README, expand .gitignore, bump surefire to 3.5.2 LICENSE: replace 'airSlate Inc.' legacy copyright with 'SignNow' (2003-2026), drop broken cross-repo link. README: standardize H1 casing 'signNow' -> 'SignNow' to match peer SDKs. .gitignore: add OS files (.DS_Store, Thumbs.db), IDE patterns (*.iml/.netbeans), editor swap files, .env.test/local. pom.xml: bump maven-surefire-plugin from beta 3.0.0-M5 to stable 3.5.2. --- .gitignore | 27 ++++++++++++++++++++++++++- LICENSE.md | 2 +- README.md | 2 +- pom.xml | 2 +- 4 files changed, 29 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index b86e4ec..608d2e2 100644 --- a/.gitignore +++ b/.gitignore @@ -1,11 +1,36 @@ +# Build output +/target +/.gradle + +# Dependencies /vendor + +# IDE /.idea /.fleet /.vscode -/target +/.netbeans +*.iml +*.ipr +*.iws + +# Editor swap files +*.swp +*.swo +*~ + +# OS +.DS_Store +Thumbs.db + +# Environment / credentials .env .env.backup .env.production .env.development +.env.test +.env.local + +# Project-local examples / fixtures examples/signnow-example.properties examples/files/bulk_real.csv diff --git a/LICENSE.md b/LICENSE.md index 5c3fd83..8c8d48c 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,6 +1,6 @@ # The MIT License -Copyright (c) 2003-2019 airSlate Inc. [LICENSE](https://github.com/signnow/SignNowPHPSDK/blob/master/LICENSE.md) +Copyright (c) 2003-2026 SignNow Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index 61f3807..703f950 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# signNow API Java SDK +# SignNow API Java SDK ## v3.5.2 [![Java Version](https://img.shields.io/badge/codebase-java--11-yellowgreen)](https://www.java.com/) diff --git a/pom.xml b/pom.xml index 78b5b87..27eed09 100644 --- a/pom.xml +++ b/pom.xml @@ -86,7 +86,7 @@ org.apache.maven.plugins maven-surefire-plugin - 3.0.0-M5 + 3.5.2 org.apache.maven.plugins From de1d6d6b62c0c2fb82c55bd59037e6b22ed91180 Mon Sep 17 00:00:00 2001 From: Petro Vakulenko Date: Tue, 30 Jun 2026 13:29:33 +0200 Subject: [PATCH 2/2] Changed SignNow name. Changed license file range. --- LICENSE.md | 2 +- src/main/java/com/signnow/Sdk.java | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/LICENSE.md b/LICENSE.md index 8c8d48c..c30a6e5 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,6 +1,6 @@ # The MIT License -Copyright (c) 2003-2026 SignNow +Copyright (c) 2003-present SignNow Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/src/main/java/com/signnow/Sdk.java b/src/main/java/com/signnow/Sdk.java index 1ebf8f1..d851f35 100644 --- a/src/main/java/com/signnow/Sdk.java +++ b/src/main/java/com/signnow/Sdk.java @@ -1,5 +1,5 @@ /* - * This file is a part of signNow SDK API client. + * This file is a part of SignNow SDK API client. * * (с) Copyright © 2011-present airSlate Inc. (https://www.signnow.com) * @@ -18,7 +18,7 @@ import com.signnow.core.token.BearerToken; /** - * Main class for the signNow SDK. + * Main class for the SignNow SDK. */ public class Sdk { @@ -29,7 +29,7 @@ public class Sdk { private static final String GRANT_TYPE_BY_PASSWORD = "password"; /** - * signNow SDK Service Provider + * SignNow SDK Service Provider */ private final ApiServiceProvider apiServiceProvider;