...
- Default property values can be customized in any of the following ways:
- Using
-Dname=value
on the Maven command lineNo Format mvn initialize -Pdb,mysql -Dmysql.dba.password=xyz
- Adding them as properties of a profile named
db
in~/.m2/settings.xml
No Format <settings> <activeProfiles> <activeProfile>db</activeProfile> </activeProfiles> <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