* API Call: POST /license
*
* @param licenseText The text for the license file to upload.
*/
public void set(String licenseText) {
License license = new License();
license.setLicenseText(licenseText);
client.post(String.class, license, LICENSE_URL);
}