...
- Default property values can be customized in any of the following waysby:
- Using
-Dname=value
on the Maven command line
Adding them as properties of a profile namedNo Format mvn initialize -Pdb,mysql -Dmysql.dba.password=xyz
db
in~/.m2/settings.xml
No Format <settings> <profiles> <profile> <id>db</id> <properties> <mysql.dba.password>xyz</mysql.dba.password> </properties> </profile> </profiles> </settings>
- Adding them to the properties file
No Format ~/.kuali/ole/ole-sql.properties
- Using