com.adaptc.gradle.moabsdk.utils.MoabSdkUtils.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of moab-sdk Show documentation
Show all versions of moab-sdk Show documentation
Gradle plugins comprising a plugin SDK for Moab.
package com.adaptc.gradle.moabsdk.utils
import org.gradle.api.Project
/**
* @author bsaville
*/
public class MoabSdkUtils {
public static def getProperty(Project project, String propertyName, defaultValue=null) {
if (project.hasProperty(propertyName))
return project."${propertyName}" ?: defaultValue
return defaultValue
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy