From 01a3c0e5120859825f5ca278db0db159210b08a3 Mon Sep 17 00:00:00 2001 From: serega6531 Date: Tue, 14 Apr 2020 22:08:01 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9E=D0=B1=D0=BD=D0=BE=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=D1=8B=20=D0=B7=D0=B0=D0=B2=D0=B8=D1=81=D0=B8=D0=BC=D0=BE?= =?UTF-8?q?=D1=81=D1=82=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build.gradle | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build.gradle b/build.gradle index 586f0c6..edcca92 100644 --- a/build.gradle +++ b/build.gradle @@ -1,5 +1,5 @@ plugins { - id 'org.springframework.boot' version '2.2.5.RELEASE' + id 'org.springframework.boot' version '2.2.6.RELEASE' id 'java' } @@ -8,8 +8,8 @@ apply plugin: 'io.spring.dependency-management' group = 'ru.serega6531' version = '1.0-SNAPSHOT' -sourceCompatibility = JavaVersion.VERSION_13 -targetCompatibility = JavaVersion.VERSION_13 +sourceCompatibility = JavaVersion.VERSION_14 +targetCompatibility = JavaVersion.VERSION_14 configurations { compileOnly { @@ -30,7 +30,7 @@ dependencies { implementation "org.springframework.boot:spring-boot-starter-security" implementation "org.springframework.boot:spring-boot-starter-websocket" implementation 'org.springframework.session:spring-session-core' - compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.9' + compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.10' compile group: 'commons-io', name: 'commons-io', version: '2.6' compile 'org.pcap4j:pcap4j-core:1.8.2' compile 'org.pcap4j:pcap4j-packetfactory-static:1.8.2' @@ -40,5 +40,5 @@ dependencies { runtimeOnly 'org.springframework.boot:spring-boot-devtools' runtimeOnly 'org.postgresql:postgresql' annotationProcessor 'org.projectlombok:lombok' - testCompile 'org.junit.jupiter:junit-jupiter:5.6.0' + testCompile 'org.junit.jupiter:junit-jupiter:5.6.2' }