私はgradle用のliquibaseプラグインを見つけ、多くの人がtlberglundのgradle-liquibase-pluginを勧めてくれました。私はgradleバージョン1.2を使用しています。次の構造でbuild.gradleを作成します。
apply plugin: 'java'
apply plugin: 'liquibase'
repositories {
mavenCentral()
}
dependencies {
compile('org.hsqldb:hsqldb:2.2.8')
compile('org.hsqldb:sqltool:2.2.8')
compile('com.h2database:h2:1.3.167')
compile('org.liquibase:liquibase-core:2.0.1')
compile('com.augusttechgroup:groovy-liquibase-dsl:0.7.3')
compile('postgresql:postgresql:9.1-901.jdbc4')
}
buildscript {
dependencies {
classpath 'com.augusttechgroup:gradle-liquibase-plugin:0.6.1'
}
}
databases {
postgre {
url = "${postgreBaseUrl}" + "${postgreDB}"
username = "${postgreUserName}"
password = "${postgreUserPassword}"
}
}
changelogs {
main {
file = file('src/main/liquibase/mainChanges.groovy')
}
}
task dbInit << {
databases.postgre.url = "${postgreBaseUrl}"
databases.postgre.username = "${postgreRootUserName}"
databases.postgre.password = "${postgreRootUserPassword}"
changelogs.main.file = file('src/main/liquibase/tablespaceChanges.groovy')
}
「gradlebuild」タスクを実行しようとすると、テキストメッセージが表示されました
FAILURE: Build failed with an exception.
* What went wrong:
Could not resolve all dependencies for configuration ':classpath'.
> Could not find group:com.augusttechgroup, module:gradle-liquibase-plugin, vers
ion:0.6.1.
Required by:
:demo:unspecified
* Try:
Run with --stacktrace option to get the stack trace. Run with --debug option to
get more log output.
BUILD FAILED
中央のMavenリポジトリから依存関係を取得しました Mavenリポジトリ
依存関係を「コンパイル」としてマークすると、大丈夫です。
dependencies {
compile 'com.augusttechgroup:gradle-liquibase-plugin:0.6.1'
}
ローカルリポジトリを確認したところ、gradle-liquibase-plugin-0.6.1.jarが見つかりました
何が悪いのかわかりません。githubの元のドキュメントに記載されているように試しました
https://github.com/tlberglund/gradle-liquibase-plugin/blob/master/plugin.gradle
しかし、同じ結果が得られました。多分誰かがこのプラグインを使用しましたか?
私は本当に助けが必要です、そして私の悪い英語をお詫びします)