diff options
author | Vitaly Takmazov | 2019-10-22 14:18:47 +0000 |
---|---|---|
committer | Vitaly Takmazov | 2019-10-22 14:18:47 +0000 |
commit | f62db11edaa4c7420591e03a04b63cb3e3e136c2 (patch) | |
tree | 1d187ba51a081374e108d9b19ab50ab47bcc6436 /build.gradle | |
parent | f00be8c6d4b1d420119f9f08d400719fd62d2d39 (diff) |
Revert "Spring Boot 2.2"
This reverts commit d3648888eaea9904fb3b806d56b22827c7614f54.
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 22 |
1 files changed, 14 insertions, 8 deletions
diff --git a/build.gradle b/build.gradle index b637ae6c..bc0f3d0e 100644 --- a/build.gradle +++ b/build.gradle @@ -6,12 +6,12 @@ buildscript { jcenter() } dependencies { - classpath 'com.github.ben-manes:gradle-versions-plugin:0.27.0' + classpath 'com.github.ben-manes:gradle-versions-plugin:0.25.0' classpath 'io.github.swagger2markup:swagger2markup-gradle-plugin:1.3.3' } } plugins { - id 'org.springframework.boot' version '2.2.0.RELEASE' apply false + id 'org.springframework.boot' version '2.1.8.RELEASE' apply false id("org.asciidoctor.convert") version "2.3.0" apply false } @@ -149,19 +149,25 @@ dependencies { compile "javax.xml.bind:jaxb-api:2.3.1" runtime 'org.glassfish.jaxb:jaxb-runtime:2.3.2' + + compileOnly 'io.springfox:springfox-core:2.9.2' + + compile 'org.apache.commons:commons-email:1.5' + compile 'com.github.scribejava:scribejava-apis:6.8.1' + compile 'com.github.pengrad:java-telegram-bot-api:4.4.0' + compile 'com.twelvemonkeys.imageio:imageio-jpeg:3.4.2' + compile 'org.imgscalr:imgscalr-lib:4.2' + compile 'org.twitter4j:twitter4j-core:4.0.7' + compile 'rocks.xmpp:xmpp-core-client:0.8.1' compile 'rocks.xmpp:xmpp-extensions-client:0.8.1' compile 'com.rometools:rome:1.12.2' compile 'com.rometools:rome-modules:1.12.2' - compileOnly 'io.springfox:springfox-core:2.9.2' - - compile 'com.github.scribejava:scribejava-apis:6.9.0' - compile 'com.github.pengrad:java-telegram-bot-api:4.4.0' - compile 'org.twitter4j:twitter4j-core:4.0.7' + compile 'org.flywaydb:flyway-core:5.2.4' - runtime 'org.mariadb.jdbc:mariadb-java-client:2.5.1' + runtime 'org.mariadb.jdbc:mariadb-java-client:2.4.4' runtime 'net.java.dev.jna:jna:5.4.0' runtime 'net.java.dev.jna:jna-platform:5.4.0' runtime 'com.h2database:h2:1.4.199' |