Versions Compared

Key

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

...

  1. Default property values can be customized in any of the following ways:
      Use
      1. Using -Dname=value on the Maven command line
        No Format
        mvn initialize -Pdb,mysql -Dmysql.dba.password=xyz
      Add
      1. Adding 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>
        
      Add
      1. Adding them to the properties file
        No Format
        ~/.kuali/ole/ole-sql.properties