All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.yerl.gradle.plugin.profile.ProfileContainer.groovy Maven / Gradle / Ivy

package cn.yerl.gradle.plugin.profile

/**
 * ProfileContainer
 * Created by Alan Yeh on 2016/12/4.
 */
class ProfileContainer {
    def classFields = [];
    def propertyFields = [];

    // 添加BuildProfile类的属性
    def classField(type, field, value) {
        classFields << [type, field, value];
    }

    // 添加properties的属性
    def propertyField(key, value) {
        propertyFields << [key, value];
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy