Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Default property values can be overridden as needed
  2. Use -Dname=value on the Maven command line
    No Format
    mvn initialize -Pdb,mysql -Dmysql.dba.password=xyz
  3. Add them to the properties file
    No Format
    ~/.kuali/ole/ole-sql.properties
  4. Add them as properties to a profile called 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>