diff --git a/server/build.gradle.kts b/server/build.gradle.kts index fb11642..cb4e368 100644 --- a/server/build.gradle.kts +++ b/server/build.gradle.kts @@ -93,12 +93,12 @@ tasks.shadowJar { manifest { attributes["Main-Class"] = "org.ccoin.ServerKt" } - // mergeServiceFile() + mergeServiceFiles() } // Flyway configuration flyway { - url = "jbdc:postgresql://localhost:5432/ccoin" + url = "jdbc:postgresql://localhost:5432/ccoin" user = "ccoin" password = "ccoin" locations = arrayOf("classpath:db/migration")