Split project into sub-projects
This commit is contained in:
18
dbt-demo/build.gradle
Normal file
18
dbt-demo/build.gradle
Normal file
@@ -0,0 +1,18 @@
|
||||
apply plugin: "org.flywaydb.flyway"
|
||||
|
||||
dependencies {
|
||||
compile project(':dbt-core')
|
||||
|
||||
runtime ratpack.dependency('h2')
|
||||
runtime ratpack.dependency('jdbc-tx')
|
||||
runtime ratpack.dependency('session')
|
||||
|
||||
compile 'org.flywaydb:flyway-core:5.0.7'
|
||||
runtime 'org.slf4j:slf4j-simple:1.7.25'
|
||||
}
|
||||
|
||||
flyway {
|
||||
url = 'jdbc:h2:mem:dbtdb'
|
||||
user = 'SA'
|
||||
}
|
||||
run.dependsOn(flywayMigrate)
|
||||
Reference in New Issue
Block a user