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 waysby:
    1. Using -Dname=value on the Maven command line
      No 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>
        <profiles>
          <profile>
            <id>db</id>
            <properties>
              <mysql.dba.password>xyz</mysql.dba.password>
            </properties>
          </profile>
        </profiles>
      </settings>
      
    2. Adding them to the properties file
      No Format
      ~/.kuali/ole/ole-sql.properties