Skip to content

Commit a8b0681

Browse files
committed
Merge pull request #191 from paxtonhare/more_gradle_changres
fixing filenames for databases
2 parents 3eef426 + 06b18db commit a8b0681

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

examples/gradle-advanced/build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -57,19 +57,19 @@ ext {
5757
mlAppDeployer.commands.remove(deployDbCmd)
5858

5959
// install the staging database
60-
def stagingDbCommand = new com.marklogic.appdeployer.command.databases.DeployDatabaseCommand("staging-db.json")
60+
def stagingDbCommand = new com.marklogic.appdeployer.command.databases.DeployDatabaseCommand("staging-database.json")
6161
mlAppDeployer.commands.add(stagingDbCommand)
62-
mlDatabaseCommands.add(0, stagingDbCommand)
62+
mlDatabaseCommands.add(stagingDbCommand)
6363

6464
// install the final database
65-
def finalDbCommand = new com.marklogic.appdeployer.command.databases.DeployDatabaseCommand("final-db.json")
65+
def finalDbCommand = new com.marklogic.appdeployer.command.databases.DeployDatabaseCommand("final-database.json")
6666
mlAppDeployer.commands.add(finalDbCommand)
67-
mlDatabaseCommands.add(1, finalDbCommand)
67+
mlDatabaseCommands.add(finalDbCommand)
6868

6969
// install the modules database
70-
def modulesDbCommand = new com.marklogic.appdeployer.command.databases.DeployDatabaseCommand("modules-db.json")
70+
def modulesDbCommand = new com.marklogic.appdeployer.command.databases.DeployDatabaseCommand("modules-database.json")
7171
mlAppDeployer.commands.add(modulesDbCommand)
72-
mlDatabaseCommands.add(2, modulesDbCommand)
72+
mlDatabaseCommands.add(modulesDbCommand)
7373

7474
// temp workaround for ml-gradle issue #78
7575
// https://github.com/rjrudin/ml-gradle/issues/78

0 commit comments

Comments
 (0)