org.leberrigaud.maven.plugins.database.Database Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of database-maven-plugin Show documentation
Show all versions of database-maven-plugin Show documentation
A maven plugin to create and drop databases and their associated users.
package org.leberrigaud.maven.plugins.database;
import java.util.List;
public interface Database
{
List create(String username, String password, String dbName, String schema);
List drop(String username, String password, String dbName, String schema);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy