From 658152e86d35cc6005d1422cf983a1bc0c81ca5e Mon Sep 17 00:00:00 2001 From: Artem Labazin Date: Wed, 17 Apr 2019 17:07:28 +0300 Subject: [PATCH] Fix Travis build --- .settings.xml | 18 ++++++++++++++++++ .travis.yml | 15 +++++---------- CHANGELOG.md | 12 +++++++++++- README.md | 4 ++-- benchmarks/pom.xml | 4 ++-- pom.xml | 4 ++-- popout/pom.xml | 2 +- .../lib/popout/CompressedFilesConfig.java | 2 +- .../java/org/infobip/lib/popout/FileQueue.java | 2 +- .../infobip/lib/popout/ReadWriteBytesPool.java | 2 +- .../org/infobip/lib/popout/WalFilesConfig.java | 2 +- .../batched/BatchedFileQueueBuilder.java | 2 +- .../popout/synced/SyncedFileQueueBuilder.java | 2 +- 13 files changed, 47 insertions(+), 24 deletions(-) diff --git a/.settings.xml b/.settings.xml index 797ed3c..81a2c5b 100644 --- a/.settings.xml +++ b/.settings.xml @@ -1,3 +1,21 @@ + + + + org.infobip.lib popout - 2.0.0 + 2.0.1 ... @@ -55,7 +55,7 @@ Include the dependency to your project's pom.xml file: or Gradle: ```groovy -compile 'org.infobip.lib:poput:2.0.0' +compile 'org.infobip.lib:poput:2.0.1' ``` ### Create a queue diff --git a/benchmarks/pom.xml b/benchmarks/pom.xml index 98dcbb7..7ff23d6 100644 --- a/benchmarks/pom.xml +++ b/benchmarks/pom.xml @@ -25,7 +25,7 @@ limitations under the License. org.infobip.lib parent - 2.0.0 + 2.0.1 benchmarks @@ -41,7 +41,7 @@ limitations under the License. ${project.groupId} popout - 2.0.0 + 2.0.1 diff --git a/pom.xml b/pom.xml index 8cda20a..32bba73 100644 --- a/pom.xml +++ b/pom.xml @@ -24,7 +24,7 @@ limitations under the License. org.infobip.lib parent - 2.0.0 + 2.0.1 pom @@ -71,7 +71,7 @@ limitations under the License. https://github.com/infobip/popout scm:git:https://github.com/infobip/popout.git scm:git:https://github.com/infobip/popout.git - 2.0.0 + 2.0.1 diff --git a/popout/pom.xml b/popout/pom.xml index 659b5e1..59f0101 100644 --- a/popout/pom.xml +++ b/popout/pom.xml @@ -25,7 +25,7 @@ limitations under the License. org.infobip.lib parent - 2.0.0 + 2.0.1 popout diff --git a/popout/src/main/java/org/infobip/lib/popout/CompressedFilesConfig.java b/popout/src/main/java/org/infobip/lib/popout/CompressedFilesConfig.java index 7fcd6bd..8d126d8 100644 --- a/popout/src/main/java/org/infobip/lib/popout/CompressedFilesConfig.java +++ b/popout/src/main/java/org/infobip/lib/popout/CompressedFilesConfig.java @@ -28,7 +28,7 @@ * The compression files configuration object. * * @author Artem Labazin - * @since 2.0.0 + * @since 2.0.1 */ @Value @Wither diff --git a/popout/src/main/java/org/infobip/lib/popout/FileQueue.java b/popout/src/main/java/org/infobip/lib/popout/FileQueue.java index e5764e0..c5730ba 100644 --- a/popout/src/main/java/org/infobip/lib/popout/FileQueue.java +++ b/popout/src/main/java/org/infobip/lib/popout/FileQueue.java @@ -103,7 +103,7 @@ public static BatchedFileQueueBuilder batched () { * @param the type of elements in this builded queues * * @author Artem Labazin - * @since 2.0.0 + * @since 2.0.1 */ @Getter @SuppressWarnings({ diff --git a/popout/src/main/java/org/infobip/lib/popout/ReadWriteBytesPool.java b/popout/src/main/java/org/infobip/lib/popout/ReadWriteBytesPool.java index 0e50c36..5b43401 100644 --- a/popout/src/main/java/org/infobip/lib/popout/ReadWriteBytesPool.java +++ b/popout/src/main/java/org/infobip/lib/popout/ReadWriteBytesPool.java @@ -27,7 +27,7 @@ /** * Singleton pool for read/write bytes buffers. * - * @since 2.0.0 + * @since 2.0.1 * @author Artem Labazin */ @FieldDefaults(level = PRIVATE, makeFinal = true) diff --git a/popout/src/main/java/org/infobip/lib/popout/WalFilesConfig.java b/popout/src/main/java/org/infobip/lib/popout/WalFilesConfig.java index b40f61d..ba9441a 100644 --- a/popout/src/main/java/org/infobip/lib/popout/WalFilesConfig.java +++ b/popout/src/main/java/org/infobip/lib/popout/WalFilesConfig.java @@ -28,7 +28,7 @@ * The WAL files configuration object. * * @author Artem Labazin - * @since 2.0.0 + * @since 2.0.1 */ @Value @Wither diff --git a/popout/src/main/java/org/infobip/lib/popout/batched/BatchedFileQueueBuilder.java b/popout/src/main/java/org/infobip/lib/popout/batched/BatchedFileQueueBuilder.java index d1f11f1..5ae4c46 100644 --- a/popout/src/main/java/org/infobip/lib/popout/batched/BatchedFileQueueBuilder.java +++ b/popout/src/main/java/org/infobip/lib/popout/batched/BatchedFileQueueBuilder.java @@ -29,7 +29,7 @@ * @param the type of elements in this queue * * @author Artem Labazin - * @since 2.0.0 + * @since 2.0.1 */ @Getter @FieldDefaults(level = PRIVATE) diff --git a/popout/src/main/java/org/infobip/lib/popout/synced/SyncedFileQueueBuilder.java b/popout/src/main/java/org/infobip/lib/popout/synced/SyncedFileQueueBuilder.java index 66486ac..7ddb324 100644 --- a/popout/src/main/java/org/infobip/lib/popout/synced/SyncedFileQueueBuilder.java +++ b/popout/src/main/java/org/infobip/lib/popout/synced/SyncedFileQueueBuilder.java @@ -29,7 +29,7 @@ * @param the type of elements in this queue * * @author Artem Labazin - * @since 2.0.0 + * @since 2.0.1 */ @Getter @FieldDefaults(level = PRIVATE)