public abstract class AbstractDbMojo
extends org.apache.maven.plugin.AbstractMojo
| Modifier and Type | Field and Description |
|---|---|
protected String |
catalog
Database catalog
|
protected String |
driver
JDBC driver class name.
|
protected String |
password
Database connection user password.
|
protected String |
schema
Database schema
|
protected String |
url
Database connection string.
|
protected String |
user
Database connection user name.
|
| Constructor and Description |
|---|
AbstractDbMojo() |
@Parameter(property="driver",
defaultValue="org.hsqldb.jdbcDriver",
required=true)
protected String driver
@Parameter(property="url",
defaultValue="jdbc:hsqldb:file:${project.build.directory}/databases/test",
required=true)
protected String url
@Parameter(property="user",
defaultValue="SA",
required=true)
protected String user
@Parameter(property="password",
defaultValue="")
protected String password
@Parameter(property="catalog") protected String catalog
@Parameter(property="schema",
defaultValue="PUBLIC")
protected String schema
Copyright © 2014. All Rights Reserved.