Skip to content

Commit

Permalink
disable analytics (DAT-18903) (#914)
Browse files Browse the repository at this point in the history
  • Loading branch information
StevenMassaro authored Nov 1, 2024
1 parent de5cdb2 commit 4622095
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,12 @@
<artifactId>dom</artifactId>
<version>2.3.0-jaxb-1.0.6</version>
</dependency>

<dependency>
<groupId>org.liquibase.ext</groupId>
<artifactId>liquibase-disable-analytics</artifactId>
<version>1.0.0</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ class FoundationalTest extends Specification {
shouldRunChangeSet = connection instanceof JdbcConnection
assert shouldRunChangeSet: "Database ${testInput.databaseName} ${testInput.version} is offline!"

and: "execute Liquibase validate command to ensure a chagelog is valid"
and: "execute Liquibase validate command to ensure a changelog is valid"
for (int i = 0; i < changelogList.size(); i++) {
argsMap.put("changeLogFile", changelogList.get(i))
executeCommandScope("validate", argsMap)
Expand Down

0 comments on commit 4622095

Please sign in to comment.