From 05e97693b34bea3f1f178ae8dc5029ea17c7b749 Mon Sep 17 00:00:00 2001 From: pkryshtop Date: Wed, 6 Aug 2025 16:07:09 +0300 Subject: [PATCH 1/3] fix: deploy to Central Publisher Portal instead of sonatype OSSRH --- .circleci/config.yml | 4 +++- .circleci/release.sh | 11 ++++++++++- .circleci/settings.xml | 6 +++--- pom.xml | 19 +++++++++++++++---- 4 files changed, 31 insertions(+), 9 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 7ce72f20..fe60771c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -49,4 +49,6 @@ workflows: - test filters: branches: - only: master + only: + - master + - deploy-test diff --git a/.circleci/release.sh b/.circleci/release.sh index 9099d2ca..3ac297ac 100755 --- a/.circleci/release.sh +++ b/.circleci/release.sh @@ -9,4 +9,13 @@ if ! ./mvnw -Prelease conventional-commits:validate; then fi ./mvnw -B -Prelease -DskipTests -Darguments='-DskipTests' -s .circleci/settings.xml conventional-commits:version release:prepare -./mvnw -B -DskipTests -Darguments=-DskipTests -s .circleci/settings.xml release:perform + +# Get the tag created by release:prepare +TAG=$(git describe --tags --abbrev=0) +echo "Deploying tag: $TAG" + +# Checkout the tagged version +git checkout $TAG + +# Deploy using central-publishing-maven-plugin +./mvnw -B -Prelease -DskipTests -s .circleci/settings.xml clean deploy diff --git a/.circleci/settings.xml b/.circleci/settings.xml index ad95e21c..3051899c 100644 --- a/.circleci/settings.xml +++ b/.circleci/settings.xml @@ -18,9 +18,9 @@ - sonatype-oss-staging - ${env.SONATYPE_USERNAME} - ${env.SONATYPE_PASSWORD} + central + ${env.CENTRAL_SONATYPE_USERNAME} + ${env.CENTRAL_SONATYPE_PASSWORD} diff --git a/pom.xml b/pom.xml index 32f461f0..506ba4ee 100644 --- a/pom.xml +++ b/pom.xml @@ -207,10 +207,6 @@ - - sonatype-oss-staging - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - github https://maven.pkg.github.com/smartling/java-api-sdk @@ -238,6 +234,21 @@ v@{project.version} false ci: + + prepare + + + + org.sonatype.central + central-publishing-maven-plugin + 0.8.0 + true + + central + false + uploaded + required + Java API SDK (${project.version}) From 7547c8562957b52dbb94d71f9e822c8326b3ed71 Mon Sep 17 00:00:00 2001 From: "Smartling, Inc" Date: Wed, 6 Aug 2025 14:25:52 +0000 Subject: [PATCH 2/3] ci: prepare release v1.19.4 --- pom.xml | 4 ++-- samrtling-api-test-utils/pom.xml | 4 ++-- smartling-accounts-api/pom.xml | 6 ++--- smartling-api-commons/pom.xml | 6 ++--- smartling-api-sdk-all/pom.xml | 30 ++++++++++++------------- smartling-attachments-api/pom.xml | 6 ++--- smartling-contexts-api/pom.xml | 6 ++--- smartling-file-translations-api/pom.xml | 8 +++---- smartling-files-api/pom.xml | 8 +++---- smartling-glossary-api/pom.xml | 8 +++---- smartling-issues-api/pom.xml | 6 ++--- smartling-job-batches-api/pom.xml | 6 ++--- smartling-jobs-api/pom.xml | 6 ++--- smartling-locales-api/pom.xml | 6 ++--- smartling-mt-router-api/pom.xml | 6 ++--- smartling-projects-api/pom.xml | 6 ++--- smartling-reports-api/pom.xml | 6 ++--- smartling-strings-api/pom.xml | 6 ++--- 18 files changed, 67 insertions(+), 67 deletions(-) diff --git a/pom.xml b/pom.xml index 506ba4ee..ccae8a0c 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ com.smartling.api smartling-sdk-parent pom - 1.19.3-SNAPSHOT + 1.19.4 Smartling API Parent Smartling API SDK https://api-reference.smartling.com @@ -13,7 +13,7 @@ https://github.com/Smartling/java-api-sdk scm:git:ssh://git@github.com/Smartling/java-api-sdk - HEAD + v1.19.4 diff --git a/samrtling-api-test-utils/pom.xml b/samrtling-api-test-utils/pom.xml index 60baeddd..a7824264 100644 --- a/samrtling-api-test-utils/pom.xml +++ b/samrtling-api-test-utils/pom.xml @@ -4,13 +4,13 @@ smartling-api-test-utils jar - 1.19.3-SNAPSHOT + 1.19.4 Smartling API Test Utils com.smartling.api smartling-sdk-parent - 1.19.3-SNAPSHOT + 1.19.4 diff --git a/smartling-accounts-api/pom.xml b/smartling-accounts-api/pom.xml index db4c1906..4982e315 100644 --- a/smartling-accounts-api/pom.xml +++ b/smartling-accounts-api/pom.xml @@ -5,11 +5,11 @@ com.smartling.api smartling-sdk-parent - 1.19.3-SNAPSHOT + 1.19.4 smartling-accounts-api - 1.19.3-SNAPSHOT + 1.19.4 Smartling Accounts API @@ -25,7 +25,7 @@ com.smartling.api smartling-api-commons - 1.19.3-SNAPSHOT + 1.19.4 diff --git a/smartling-api-commons/pom.xml b/smartling-api-commons/pom.xml index 0a911b7f..68bed539 100644 --- a/smartling-api-commons/pom.xml +++ b/smartling-api-commons/pom.xml @@ -3,13 +3,13 @@ smartling-api-commons jar - 1.19.3-SNAPSHOT + 1.19.4 Smartling API Commons com.smartling.api smartling-sdk-parent - 1.19.3-SNAPSHOT + 1.19.4 @@ -25,7 +25,7 @@ com.smartling.api smartling-api-test-utils - 1.19.3-SNAPSHOT + 1.19.4 test diff --git a/smartling-api-sdk-all/pom.xml b/smartling-api-sdk-all/pom.xml index 8e6b8ec7..34340a7d 100644 --- a/smartling-api-sdk-all/pom.xml +++ b/smartling-api-sdk-all/pom.xml @@ -4,78 +4,78 @@ com.smartling.api smartling-sdk-parent - 1.19.3-SNAPSHOT + 1.19.4 smartling-api-sdk - 1.19.3-SNAPSHOT + 1.19.4 jar Smartling API SDK com.smartling.api smartling-accounts-api - 1.19.3-SNAPSHOT + 1.19.4 com.smartling.api smartling-issues-api - 1.19.3-SNAPSHOT + 1.19.4 com.smartling.api smartling-locales-api - 1.19.3-SNAPSHOT + 1.19.4 com.smartling.api smartling-jobs-api - 1.19.3-SNAPSHOT + 1.19.4 com.smartling.api smartling-job-batches-api - 1.19.3-SNAPSHOT + 1.19.4 com.smartling.api smartling-files-api - 1.19.3-SNAPSHOT + 1.19.4 com.smartling.api smartling-projects-api - 1.19.3-SNAPSHOT + 1.19.4 com.smartling.api smartling-strings-api - 1.19.3-SNAPSHOT + 1.19.4 com.smartling.api smartling-contexts-api - 1.19.3-SNAPSHOT + 1.19.4 com.smartling.api smartling-attachments-api - 1.19.3-SNAPSHOT + 1.19.4 com.smartling.api smartling-reports-api - 1.19.3-SNAPSHOT + 1.19.4 compile com.smartling.api smartling-glossary-api - 1.19.3-SNAPSHOT + 1.19.4 com.smartling.api smartling-file-translations-api - 1.19.3-SNAPSHOT + 1.19.4 diff --git a/smartling-attachments-api/pom.xml b/smartling-attachments-api/pom.xml index d77fbbcb..d008d566 100644 --- a/smartling-attachments-api/pom.xml +++ b/smartling-attachments-api/pom.xml @@ -4,10 +4,10 @@ com.smartling.api smartling-sdk-parent - 1.19.3-SNAPSHOT + 1.19.4 smartling-attachments-api - 1.19.3-SNAPSHOT + 1.19.4 Smartling Attachments API @@ -23,7 +23,7 @@ com.smartling.api smartling-api-commons - 1.19.3-SNAPSHOT + 1.19.4 diff --git a/smartling-contexts-api/pom.xml b/smartling-contexts-api/pom.xml index 8a378cc7..6bc70c8a 100644 --- a/smartling-contexts-api/pom.xml +++ b/smartling-contexts-api/pom.xml @@ -4,10 +4,10 @@ com.smartling.api smartling-sdk-parent - 1.19.3-SNAPSHOT + 1.19.4 smartling-contexts-api - 1.19.3-SNAPSHOT + 1.19.4 Smartling Contexts API @@ -23,7 +23,7 @@ com.smartling.api smartling-api-commons - 1.19.3-SNAPSHOT + 1.19.4 diff --git a/smartling-file-translations-api/pom.xml b/smartling-file-translations-api/pom.xml index 5b111be1..9949ed5f 100644 --- a/smartling-file-translations-api/pom.xml +++ b/smartling-file-translations-api/pom.xml @@ -5,11 +5,11 @@ com.smartling.api smartling-sdk-parent - 1.19.3-SNAPSHOT + 1.19.4 smartling-file-translations-api - 1.19.3-SNAPSHOT + 1.19.4 Smartling File Translations API @@ -25,7 +25,7 @@ com.smartling.api smartling-api-commons - 1.19.3-SNAPSHOT + 1.19.4 org.apache.commons @@ -35,7 +35,7 @@ com.smartling.api smartling-api-test-utils - 1.19.3-SNAPSHOT + 1.19.4 test diff --git a/smartling-files-api/pom.xml b/smartling-files-api/pom.xml index eb79f253..384769e9 100644 --- a/smartling-files-api/pom.xml +++ b/smartling-files-api/pom.xml @@ -5,11 +5,11 @@ com.smartling.api smartling-sdk-parent - 1.19.3-SNAPSHOT + 1.19.4 smartling-files-api - 1.19.3-SNAPSHOT + 1.19.4 Smartling Content Files API @@ -25,7 +25,7 @@ com.smartling.api smartling-api-commons - 1.19.3-SNAPSHOT + 1.19.4 org.apache.commons @@ -35,7 +35,7 @@ com.smartling.api smartling-api-test-utils - 1.19.3-SNAPSHOT + 1.19.4 test diff --git a/smartling-glossary-api/pom.xml b/smartling-glossary-api/pom.xml index 1f981f63..7b5cade9 100644 --- a/smartling-glossary-api/pom.xml +++ b/smartling-glossary-api/pom.xml @@ -5,11 +5,11 @@ com.smartling.api smartling-sdk-parent - 1.19.3-SNAPSHOT + 1.19.4 smartling-glossary-api - 1.19.3-SNAPSHOT + 1.19.4 Smartling Glossary API @@ -26,7 +26,7 @@ com.smartling.api smartling-api-commons - 1.19.3-SNAPSHOT + 1.19.4 org.apache.commons @@ -36,7 +36,7 @@ com.smartling.api smartling-api-test-utils - 1.19.3-SNAPSHOT + 1.19.4 test diff --git a/smartling-issues-api/pom.xml b/smartling-issues-api/pom.xml index 22e59262..f2cd5a1e 100644 --- a/smartling-issues-api/pom.xml +++ b/smartling-issues-api/pom.xml @@ -5,11 +5,11 @@ com.smartling.api smartling-sdk-parent - 1.19.3-SNAPSHOT + 1.19.4 smartling-issues-api - 1.19.3-SNAPSHOT + 1.19.4 Smartling Issues API @@ -25,7 +25,7 @@ com.smartling.api smartling-api-commons - 1.19.3-SNAPSHOT + 1.19.4 diff --git a/smartling-job-batches-api/pom.xml b/smartling-job-batches-api/pom.xml index f59c8095..9d52d3ae 100644 --- a/smartling-job-batches-api/pom.xml +++ b/smartling-job-batches-api/pom.xml @@ -5,11 +5,11 @@ com.smartling.api smartling-sdk-parent - 1.19.3-SNAPSHOT + 1.19.4 smartling-job-batches-api - 1.19.3-SNAPSHOT + 1.19.4 Smartling Job Batches API @@ -28,7 +28,7 @@ com.smartling.api smartling-api-commons - 1.19.3-SNAPSHOT + 1.19.4 diff --git a/smartling-jobs-api/pom.xml b/smartling-jobs-api/pom.xml index 066cc619..428aafee 100644 --- a/smartling-jobs-api/pom.xml +++ b/smartling-jobs-api/pom.xml @@ -5,11 +5,11 @@ com.smartling.api smartling-sdk-parent - 1.19.3-SNAPSHOT + 1.19.4 smartling-jobs-api - 1.19.3-SNAPSHOT + 1.19.4 Smartling Jobs API @@ -26,7 +26,7 @@ com.smartling.api smartling-api-commons - 1.19.3-SNAPSHOT + 1.19.4 diff --git a/smartling-locales-api/pom.xml b/smartling-locales-api/pom.xml index 21ed50df..6b1fa23b 100644 --- a/smartling-locales-api/pom.xml +++ b/smartling-locales-api/pom.xml @@ -4,10 +4,10 @@ com.smartling.api smartling-sdk-parent - 1.19.3-SNAPSHOT + 1.19.4 smartling-locales-api - 1.19.3-SNAPSHOT + 1.19.4 Smartling Locales API @@ -22,7 +22,7 @@ com.smartling.api smartling-api-commons - 1.19.3-SNAPSHOT + 1.19.4 diff --git a/smartling-mt-router-api/pom.xml b/smartling-mt-router-api/pom.xml index 56646224..edfaf1f5 100644 --- a/smartling-mt-router-api/pom.xml +++ b/smartling-mt-router-api/pom.xml @@ -4,11 +4,11 @@ com.smartling.api smartling-sdk-parent - 1.19.3-SNAPSHOT + 1.19.4 smartling-mt-router-api - 1.19.3-SNAPSHOT + 1.19.4 Smartling MT Router API @@ -24,7 +24,7 @@ com.smartling.api smartling-api-commons - 1.19.3-SNAPSHOT + 1.19.4 diff --git a/smartling-projects-api/pom.xml b/smartling-projects-api/pom.xml index ef199baf..e203b50f 100644 --- a/smartling-projects-api/pom.xml +++ b/smartling-projects-api/pom.xml @@ -4,10 +4,10 @@ com.smartling.api smartling-sdk-parent - 1.19.3-SNAPSHOT + 1.19.4 smartling-projects-api - 1.19.3-SNAPSHOT + 1.19.4 Smartling Projects API @@ -23,7 +23,7 @@ com.smartling.api smartling-api-commons - 1.19.3-SNAPSHOT + 1.19.4 diff --git a/smartling-reports-api/pom.xml b/smartling-reports-api/pom.xml index c21dddf0..e102442e 100644 --- a/smartling-reports-api/pom.xml +++ b/smartling-reports-api/pom.xml @@ -4,10 +4,10 @@ com.smartling.api smartling-sdk-parent - 1.19.3-SNAPSHOT + 1.19.4 smartling-reports-api - 1.19.3-SNAPSHOT + 1.19.4 Smartling Reports API @@ -23,7 +23,7 @@ com.smartling.api smartling-api-commons - 1.19.3-SNAPSHOT + 1.19.4 diff --git a/smartling-strings-api/pom.xml b/smartling-strings-api/pom.xml index b2caed53..0b3c23b4 100644 --- a/smartling-strings-api/pom.xml +++ b/smartling-strings-api/pom.xml @@ -4,10 +4,10 @@ com.smartling.api smartling-sdk-parent - 1.19.3-SNAPSHOT + 1.19.4 smartling-strings-api - 1.19.3-SNAPSHOT + 1.19.4 Smartling Strings API @@ -23,7 +23,7 @@ com.smartling.api smartling-api-commons - 1.19.3-SNAPSHOT + 1.19.4 From 4e57c5e94a331045b7305de350bd0bfc48d7d130 Mon Sep 17 00:00:00 2001 From: "Smartling, Inc" Date: Wed, 6 Aug 2025 14:25:53 +0000 Subject: [PATCH 3/3] ci: prepare for next development iteration --- pom.xml | 4 ++-- samrtling-api-test-utils/pom.xml | 4 ++-- smartling-accounts-api/pom.xml | 6 ++--- smartling-api-commons/pom.xml | 6 ++--- smartling-api-sdk-all/pom.xml | 30 ++++++++++++------------- smartling-attachments-api/pom.xml | 6 ++--- smartling-contexts-api/pom.xml | 6 ++--- smartling-file-translations-api/pom.xml | 8 +++---- smartling-files-api/pom.xml | 8 +++---- smartling-glossary-api/pom.xml | 8 +++---- smartling-issues-api/pom.xml | 6 ++--- smartling-job-batches-api/pom.xml | 6 ++--- smartling-jobs-api/pom.xml | 6 ++--- smartling-locales-api/pom.xml | 6 ++--- smartling-mt-router-api/pom.xml | 6 ++--- smartling-projects-api/pom.xml | 6 ++--- smartling-reports-api/pom.xml | 6 ++--- smartling-strings-api/pom.xml | 6 ++--- 18 files changed, 67 insertions(+), 67 deletions(-) diff --git a/pom.xml b/pom.xml index ccae8a0c..8e0b2c27 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ com.smartling.api smartling-sdk-parent pom - 1.19.4 + 1.19.5-SNAPSHOT Smartling API Parent Smartling API SDK https://api-reference.smartling.com @@ -13,7 +13,7 @@ https://github.com/Smartling/java-api-sdk scm:git:ssh://git@github.com/Smartling/java-api-sdk - v1.19.4 + HEAD diff --git a/samrtling-api-test-utils/pom.xml b/samrtling-api-test-utils/pom.xml index a7824264..58af8774 100644 --- a/samrtling-api-test-utils/pom.xml +++ b/samrtling-api-test-utils/pom.xml @@ -4,13 +4,13 @@ smartling-api-test-utils jar - 1.19.4 + 1.19.5-SNAPSHOT Smartling API Test Utils com.smartling.api smartling-sdk-parent - 1.19.4 + 1.19.5-SNAPSHOT diff --git a/smartling-accounts-api/pom.xml b/smartling-accounts-api/pom.xml index 4982e315..144ebbf1 100644 --- a/smartling-accounts-api/pom.xml +++ b/smartling-accounts-api/pom.xml @@ -5,11 +5,11 @@ com.smartling.api smartling-sdk-parent - 1.19.4 + 1.19.5-SNAPSHOT smartling-accounts-api - 1.19.4 + 1.19.5-SNAPSHOT Smartling Accounts API @@ -25,7 +25,7 @@ com.smartling.api smartling-api-commons - 1.19.4 + 1.19.5-SNAPSHOT diff --git a/smartling-api-commons/pom.xml b/smartling-api-commons/pom.xml index 68bed539..b062df64 100644 --- a/smartling-api-commons/pom.xml +++ b/smartling-api-commons/pom.xml @@ -3,13 +3,13 @@ smartling-api-commons jar - 1.19.4 + 1.19.5-SNAPSHOT Smartling API Commons com.smartling.api smartling-sdk-parent - 1.19.4 + 1.19.5-SNAPSHOT @@ -25,7 +25,7 @@ com.smartling.api smartling-api-test-utils - 1.19.4 + 1.19.5-SNAPSHOT test diff --git a/smartling-api-sdk-all/pom.xml b/smartling-api-sdk-all/pom.xml index 34340a7d..4c7ec0c6 100644 --- a/smartling-api-sdk-all/pom.xml +++ b/smartling-api-sdk-all/pom.xml @@ -4,78 +4,78 @@ com.smartling.api smartling-sdk-parent - 1.19.4 + 1.19.5-SNAPSHOT smartling-api-sdk - 1.19.4 + 1.19.5-SNAPSHOT jar Smartling API SDK com.smartling.api smartling-accounts-api - 1.19.4 + 1.19.5-SNAPSHOT com.smartling.api smartling-issues-api - 1.19.4 + 1.19.5-SNAPSHOT com.smartling.api smartling-locales-api - 1.19.4 + 1.19.5-SNAPSHOT com.smartling.api smartling-jobs-api - 1.19.4 + 1.19.5-SNAPSHOT com.smartling.api smartling-job-batches-api - 1.19.4 + 1.19.5-SNAPSHOT com.smartling.api smartling-files-api - 1.19.4 + 1.19.5-SNAPSHOT com.smartling.api smartling-projects-api - 1.19.4 + 1.19.5-SNAPSHOT com.smartling.api smartling-strings-api - 1.19.4 + 1.19.5-SNAPSHOT com.smartling.api smartling-contexts-api - 1.19.4 + 1.19.5-SNAPSHOT com.smartling.api smartling-attachments-api - 1.19.4 + 1.19.5-SNAPSHOT com.smartling.api smartling-reports-api - 1.19.4 + 1.19.5-SNAPSHOT compile com.smartling.api smartling-glossary-api - 1.19.4 + 1.19.5-SNAPSHOT com.smartling.api smartling-file-translations-api - 1.19.4 + 1.19.5-SNAPSHOT diff --git a/smartling-attachments-api/pom.xml b/smartling-attachments-api/pom.xml index d008d566..bc06a21b 100644 --- a/smartling-attachments-api/pom.xml +++ b/smartling-attachments-api/pom.xml @@ -4,10 +4,10 @@ com.smartling.api smartling-sdk-parent - 1.19.4 + 1.19.5-SNAPSHOT smartling-attachments-api - 1.19.4 + 1.19.5-SNAPSHOT Smartling Attachments API @@ -23,7 +23,7 @@ com.smartling.api smartling-api-commons - 1.19.4 + 1.19.5-SNAPSHOT diff --git a/smartling-contexts-api/pom.xml b/smartling-contexts-api/pom.xml index 6bc70c8a..a206274e 100644 --- a/smartling-contexts-api/pom.xml +++ b/smartling-contexts-api/pom.xml @@ -4,10 +4,10 @@ com.smartling.api smartling-sdk-parent - 1.19.4 + 1.19.5-SNAPSHOT smartling-contexts-api - 1.19.4 + 1.19.5-SNAPSHOT Smartling Contexts API @@ -23,7 +23,7 @@ com.smartling.api smartling-api-commons - 1.19.4 + 1.19.5-SNAPSHOT diff --git a/smartling-file-translations-api/pom.xml b/smartling-file-translations-api/pom.xml index 9949ed5f..900e5089 100644 --- a/smartling-file-translations-api/pom.xml +++ b/smartling-file-translations-api/pom.xml @@ -5,11 +5,11 @@ com.smartling.api smartling-sdk-parent - 1.19.4 + 1.19.5-SNAPSHOT smartling-file-translations-api - 1.19.4 + 1.19.5-SNAPSHOT Smartling File Translations API @@ -25,7 +25,7 @@ com.smartling.api smartling-api-commons - 1.19.4 + 1.19.5-SNAPSHOT org.apache.commons @@ -35,7 +35,7 @@ com.smartling.api smartling-api-test-utils - 1.19.4 + 1.19.5-SNAPSHOT test diff --git a/smartling-files-api/pom.xml b/smartling-files-api/pom.xml index 384769e9..cf38077e 100644 --- a/smartling-files-api/pom.xml +++ b/smartling-files-api/pom.xml @@ -5,11 +5,11 @@ com.smartling.api smartling-sdk-parent - 1.19.4 + 1.19.5-SNAPSHOT smartling-files-api - 1.19.4 + 1.19.5-SNAPSHOT Smartling Content Files API @@ -25,7 +25,7 @@ com.smartling.api smartling-api-commons - 1.19.4 + 1.19.5-SNAPSHOT org.apache.commons @@ -35,7 +35,7 @@ com.smartling.api smartling-api-test-utils - 1.19.4 + 1.19.5-SNAPSHOT test diff --git a/smartling-glossary-api/pom.xml b/smartling-glossary-api/pom.xml index 7b5cade9..cdb3ac84 100644 --- a/smartling-glossary-api/pom.xml +++ b/smartling-glossary-api/pom.xml @@ -5,11 +5,11 @@ com.smartling.api smartling-sdk-parent - 1.19.4 + 1.19.5-SNAPSHOT smartling-glossary-api - 1.19.4 + 1.19.5-SNAPSHOT Smartling Glossary API @@ -26,7 +26,7 @@ com.smartling.api smartling-api-commons - 1.19.4 + 1.19.5-SNAPSHOT org.apache.commons @@ -36,7 +36,7 @@ com.smartling.api smartling-api-test-utils - 1.19.4 + 1.19.5-SNAPSHOT test diff --git a/smartling-issues-api/pom.xml b/smartling-issues-api/pom.xml index f2cd5a1e..e7dc3a2a 100644 --- a/smartling-issues-api/pom.xml +++ b/smartling-issues-api/pom.xml @@ -5,11 +5,11 @@ com.smartling.api smartling-sdk-parent - 1.19.4 + 1.19.5-SNAPSHOT smartling-issues-api - 1.19.4 + 1.19.5-SNAPSHOT Smartling Issues API @@ -25,7 +25,7 @@ com.smartling.api smartling-api-commons - 1.19.4 + 1.19.5-SNAPSHOT diff --git a/smartling-job-batches-api/pom.xml b/smartling-job-batches-api/pom.xml index 9d52d3ae..a0c0abe2 100644 --- a/smartling-job-batches-api/pom.xml +++ b/smartling-job-batches-api/pom.xml @@ -5,11 +5,11 @@ com.smartling.api smartling-sdk-parent - 1.19.4 + 1.19.5-SNAPSHOT smartling-job-batches-api - 1.19.4 + 1.19.5-SNAPSHOT Smartling Job Batches API @@ -28,7 +28,7 @@ com.smartling.api smartling-api-commons - 1.19.4 + 1.19.5-SNAPSHOT diff --git a/smartling-jobs-api/pom.xml b/smartling-jobs-api/pom.xml index 428aafee..ba7c6ecf 100644 --- a/smartling-jobs-api/pom.xml +++ b/smartling-jobs-api/pom.xml @@ -5,11 +5,11 @@ com.smartling.api smartling-sdk-parent - 1.19.4 + 1.19.5-SNAPSHOT smartling-jobs-api - 1.19.4 + 1.19.5-SNAPSHOT Smartling Jobs API @@ -26,7 +26,7 @@ com.smartling.api smartling-api-commons - 1.19.4 + 1.19.5-SNAPSHOT diff --git a/smartling-locales-api/pom.xml b/smartling-locales-api/pom.xml index 6b1fa23b..c382f696 100644 --- a/smartling-locales-api/pom.xml +++ b/smartling-locales-api/pom.xml @@ -4,10 +4,10 @@ com.smartling.api smartling-sdk-parent - 1.19.4 + 1.19.5-SNAPSHOT smartling-locales-api - 1.19.4 + 1.19.5-SNAPSHOT Smartling Locales API @@ -22,7 +22,7 @@ com.smartling.api smartling-api-commons - 1.19.4 + 1.19.5-SNAPSHOT diff --git a/smartling-mt-router-api/pom.xml b/smartling-mt-router-api/pom.xml index edfaf1f5..0b51737d 100644 --- a/smartling-mt-router-api/pom.xml +++ b/smartling-mt-router-api/pom.xml @@ -4,11 +4,11 @@ com.smartling.api smartling-sdk-parent - 1.19.4 + 1.19.5-SNAPSHOT smartling-mt-router-api - 1.19.4 + 1.19.5-SNAPSHOT Smartling MT Router API @@ -24,7 +24,7 @@ com.smartling.api smartling-api-commons - 1.19.4 + 1.19.5-SNAPSHOT diff --git a/smartling-projects-api/pom.xml b/smartling-projects-api/pom.xml index e203b50f..041d5069 100644 --- a/smartling-projects-api/pom.xml +++ b/smartling-projects-api/pom.xml @@ -4,10 +4,10 @@ com.smartling.api smartling-sdk-parent - 1.19.4 + 1.19.5-SNAPSHOT smartling-projects-api - 1.19.4 + 1.19.5-SNAPSHOT Smartling Projects API @@ -23,7 +23,7 @@ com.smartling.api smartling-api-commons - 1.19.4 + 1.19.5-SNAPSHOT diff --git a/smartling-reports-api/pom.xml b/smartling-reports-api/pom.xml index e102442e..ced06b38 100644 --- a/smartling-reports-api/pom.xml +++ b/smartling-reports-api/pom.xml @@ -4,10 +4,10 @@ com.smartling.api smartling-sdk-parent - 1.19.4 + 1.19.5-SNAPSHOT smartling-reports-api - 1.19.4 + 1.19.5-SNAPSHOT Smartling Reports API @@ -23,7 +23,7 @@ com.smartling.api smartling-api-commons - 1.19.4 + 1.19.5-SNAPSHOT diff --git a/smartling-strings-api/pom.xml b/smartling-strings-api/pom.xml index 0b3c23b4..dbc6b704 100644 --- a/smartling-strings-api/pom.xml +++ b/smartling-strings-api/pom.xml @@ -4,10 +4,10 @@ com.smartling.api smartling-sdk-parent - 1.19.4 + 1.19.5-SNAPSHOT smartling-strings-api - 1.19.4 + 1.19.5-SNAPSHOT Smartling Strings API @@ -23,7 +23,7 @@ com.smartling.api smartling-api-commons - 1.19.4 + 1.19.5-SNAPSHOT