Skip to content

Commit

Permalink
Update dependencies to the latest versions (#922)
Browse files Browse the repository at this point in the history
  • Loading branch information
idelpivnitskiy committed Jan 17, 2020
1 parent 2be51e9 commit 464554a
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 18 deletions.
20 changes: 10 additions & 10 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@
group=io.servicetalk
version=0.22.0-SNAPSHOT

nettyVersion=4.1.44.Final
nettyVersion=4.1.45.Final
tcnativeVersion=2.0.28.Final
jsr305Version=3.0.2

log4jVersion=2.12.1
slf4jVersion=1.7.29
log4jVersion=2.13.0
slf4jVersion=1.7.30

javaxAnnotationsApiVersion=1.3.5
javaxActivationVersion=1.2.1
Expand All @@ -35,28 +35,28 @@ jerseyVersion=2.29.1
jsonUnitVersion=2.8.1

jmhCoreVersion=1.22
junitVersion=4.12
junitVersion=4.13
testngVersion=6.14.3
hamcrestVersion=1.3
mockitoCoreVersion=2.28.2

reactiveStreamsVersion=1.0.3
jcToolsVersion=2.1.2
jacksonVersion=2.10.0
jcToolsVersion=3.0.0
jacksonVersion=2.10.2

openTracingVersion=0.31.0
zipkinVersion=2.19.1
zipkinVersion=2.19.2

# Used for testing DNS ServiceDiscoverer
apacheDirectoryServerVersion=1.5.7
commonsLangVersion=2.6

# gRPC
grpcVersion=1.25.0
protobufGradlePluginVersion=0.8.10
grpcVersion=1.26.0
protobufGradlePluginVersion=0.8.11
protobufVersion=3.11.1
protoGoogleCommonProtosVersion=1.17.0
javaPoetVersion=1.11.1
javaPoetVersion=1.12.0

# Gradle Plugins
bintrayPluginVersion=1.8.4
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@

import java.util.concurrent.Callable;
import java.util.concurrent.CountDownLatch;

import javax.annotation.Nullable;

import static io.servicetalk.concurrent.api.SourceAdapters.toSource;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@

import java.util.concurrent.CountDownLatch;
import java.util.function.Supplier;

import javax.annotation.Nullable;

import static io.servicetalk.concurrent.api.SourceAdapters.toSource;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
import java.util.concurrent.TimeoutException;
import java.util.function.Consumer;
import java.util.function.LongSupplier;

import javax.annotation.Nullable;

import static java.lang.System.nanoTime;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ import org.gradle.api.JavaVersion
import static org.gradle.api.JavaVersion.VERSION_1_8

final class Versions {
static final String CHECKSTYLE_VERSION = "8.25"
static final String PMD_VERSION = "6.19.0"
static final String CHECKSTYLE_VERSION = "8.28"
static final String PMD_VERSION = "6.20.0"
static final String SPOTBUGS_VERSION = "3.1.12"
static final JavaVersion TARGET_VERSION = VERSION_1_8
}
Original file line number Diff line number Diff line change
Expand Up @@ -222,8 +222,6 @@
<module name="AtclauseOrder"/>
<module name="JavadocMethod">
<property name="scope" value="protected"/>
<property name="allowUndeclaredRTE" value="true"/>
<property name="validateThrows" value="true"/>
</module>
<module name="NonEmptyAtclauseDescription"/>
<module name="JavadocStyle">
Expand All @@ -243,6 +241,7 @@
</module>
<module name="InvalidJavadocPosition"/>
<module name="JavadocBlockTagLocation"/>
<module name="JavadocContentLocationCheck"/>

<!-- Miscellaneous -->
<module name="ArrayTypeStyle"/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ static <T> Queue<T> newUnboundedMpscQueue(final int initialCapacity) {
}

static <T> Queue<T> newUnboundedLinkedMpscQueue() {
return USE_UNSAFE_QUEUES ? MpscLinkedQueue.newMpscLinkedQueue()
return USE_UNSAFE_QUEUES ? new MpscLinkedQueue<>()
: new MpscLinkedAtomicQueue<>();
}

Expand Down

0 comments on commit 464554a

Please sign in to comment.