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-02-25 07:43:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
plugins {
|
2018-05-04 17:23:08 +03:00
|
|
|
id 'idea'
|
|
|
|
|
id 'groovy'
|
|
|
|
|
id "io.ratpack.ratpack-groovy" version "1.5.1"
|
|
|
|
|
id "org.flywaydb.flyway" version "5.0.7"
|
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
|
|
|
}
|