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
    Add them as properties of 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>
    
  4. Add them to the properties file
    No Format
    ~/.kuali/ole/ole-sql.properties