2018-02-25 07:43:48 +02:00
|
|
|
buildscript {
|
2018-05-04 17:23:08 +03:00
|
|
|
repositories {
|
|
|
|
|
jcenter()
|
|
|
|
|
}
|
|
|
|
|
dependencies {
|
|
|
|
|
classpath "io.ratpack:ratpack-gradle:1.5.1"
|
2018-05-27 20:06:09 +03:00
|
|
|
classpath 'se.transmode.gradle:gradle-docker:1.2'
|
2018-05-04 17:23:08 +03:00
|
|
|
}
|
2018-02-25 07:43:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
plugins {
|
2018-05-04 17:23:08 +03:00
|
|
|
id 'idea'
|
|
|
|
|
id 'groovy'
|
2018-05-27 20:06:09 +03:00
|
|
|
id "io.ratpack.ratpack-groovy" version "1.5.1" apply false
|
|
|
|
|
id "org.flywaydb.flyway" version "5.0.7" apply false
|
2018-02-25 07:43:48 +02:00
|
|
|
}
|
|
|
|
|
|
2018-05-04 17:23:08 +03:00
|
|
|
allprojects {
|
|
|
|
|
apply plugin: 'io.ratpack.ratpack-groovy'
|
|
|
|
|
apply plugin: 'idea'
|
|
|
|
|
repositories {
|
|
|
|
|
jcenter()
|
|
|
|
|
}
|
2018-02-25 07:43:48 +02:00
|
|
|
}
|
2018-05-27 20:06:09 +03:00
|
|
|
|
|
|
|
|
task wrapper(type: Wrapper) {
|
|
|
|
|
gradleVersion = '4.7'
|
|
|
|
|
}
|