What is the equivalent plugin for dbunit-maven-plugin in Gradle?

Currently I am migrating a maven project to Gradle. One of the module uses dbunit-maven-plugin. What is the equivalent in Gradle?

      
            org.codehaus.mojo
            dbunit-maven-plugin
            1.0-beta-3
          
            
              org.hsqldb
              hsqldb
              ${hsqldb.version}
              runtime
            
          
            
              
                
                  export
                
              
            
            
              ${dbunit.export.format}
              target/dbunit/export-${dbunit.export.format}.xml
                ${test.common.db.driver}
            ${test.common.db.url}
            ${test.common.db.user}
            ${test.common.db.password}
            
        

If you can’t find an equivalent gradle task, you could invoke the ant task

http://dbunit.sourceforge.net/anttask.html
https://docs.gradle.org/current/userguide/ant.html

I am not aware of a Gradle plugin for dbunit. This Gist might be helpful though.

Have a look at https://github.com/ferigma/dbunit-gradle-plugin