diff --git a/.github/workflows/tests-ce.yml b/.github/workflows/tests-ce.yml index 1d2811d3a..114576f53 100644 --- a/.github/workflows/tests-ce.yml +++ b/.github/workflows/tests-ce.yml @@ -14,18 +14,19 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - tarantool-version: [ "1.x", "2.10.6"] + tarantool-version: [ "1.x", "2.11.6"] fail-fast: false steps: - uses: actions/checkout@v2 - - name: Set up JDK 1.8 - uses: actions/setup-java@v1 + - name: Set up JDK 11 + uses: actions/setup-java@v5 with: - java-version: 1.8 + java-version: 11 + distribution: zulu - name: Cache Maven packages - uses: actions/cache@v2 + uses: actions/cache@v4.2.0 with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} diff --git a/.github/workflows/tests-ee.yml b/.github/workflows/tests-ee.yml index 01321d674..69c91ad98 100644 --- a/.github/workflows/tests-ee.yml +++ b/.github/workflows/tests-ee.yml @@ -15,13 +15,14 @@ jobs: steps: - uses: actions/checkout@v2 - - name: Set up JDK 1.8 - uses: actions/setup-java@v1 + - name: Set up JDK 11 + uses: actions/setup-java@v5 with: - java-version: 1.8 + java-version: 11 + distribution: zulu - name: Cache Maven packages - uses: actions/cache@v2 + uses: actions/cache@v4.2.0 with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} diff --git a/pom.xml b/pom.xml index 1a9ed2b65..27e3a0172 100644 --- a/pom.xml +++ b/pom.xml @@ -49,7 +49,7 @@ scm:git:git@github.com/tarantool/cartridge-java.git scm:git:git@github.com:tarantool/cartridge-java.git http://github.com/tarantool/cartridge-java/tree/master - v0.13.0 + v0.14.3 @@ -68,16 +68,14 @@ org.apache.maven.plugins maven-compiler-plugin - 3.8.0 + 3.8.1 - 1.8 true true true true true - 8 - 8 + 8 **/package-info.java @@ -96,8 +94,8 @@ - - [1.8.0,) + + [1.11.0,) [3.1.1,) @@ -175,7 +173,7 @@ true ossrh - https://oss.sonatype.org/ + https://ossrh-staging-api.central.sonatype.com/ false @@ -502,11 +500,11 @@ sonatype-nexus-snapshots - https://oss.sonatype.org/content/repositories/snapshots + https://central.sonatype.com/repository/maven-snapshots/ sonatype-nexus-staging - https://oss.sonatype.org/service/local/staging/deploy/maven2/ + https://ossrh-staging-api.central.sonatype.com/service/local/staging/deploy/maven2/ diff --git a/src/main/java/io/tarantool/driver/api/space/options/crud/OperationWithYieldEveryOptions.java b/src/main/java/io/tarantool/driver/api/space/options/crud/OperationWithYieldEveryOptions.java index 5efacf3ff..a3715bcc6 100644 --- a/src/main/java/io/tarantool/driver/api/space/options/crud/OperationWithYieldEveryOptions.java +++ b/src/main/java/io/tarantool/driver/api/space/options/crud/OperationWithYieldEveryOptions.java @@ -10,8 +10,8 @@ public interface OperationWithYieldEveryOptions { /** - * Sets number of tuples processed on storage to yield after, "yield_every" should be > 0. - * @param yieldEvery number of tuples processed on storage to yield after, "yield_every" should be > 0. + * Sets number of tuples processed on storage to yield after, "yield_every" should be > 0. + * @param yieldEvery number of tuples processed on storage to yield after, "yield_every" should be > 0. * @return this option instance. * @throws IllegalArgumentException {@code if yieldEvery < 0}. */