[grails] database migration でのエラー 環境 grails : 3.3.5 database-migration : 3.1.0.RC1 現象 起動時に以下のエラー liquibase.exception.ChangeLogParseException: java.lang.IllegalArgumentException: Script text to compile cannot be null! .... Caused by: java.lang.IllegalArgumentException: Script text to compile cannot be null! ... 123456 liquibase.exception.ChangeLogParseException: java.lang.IllegalArgumentException: Script text to compile cannot be null!....Caused by: java.lang.IllegalArgumentException: Script text to compile cannot be null!... 解決方法 build.gradle に以下の文言を入れ忘れていただけ sourceSets { main { resources { srcDir 'grails-app/migrations' } } } 123456789 sourceSets { main { resources { srcDir 'grails-app/migrations' } }} ちゃんと説明されていたね。