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

com.tinder.gitquery.GitQueryInitExtension.kt Maven / Gradle / Ivy

The newest version!
/*
 * © 2019 Match Group, LLC.
 */

package com.tinder.gitquery

import com.tinder.gitquery.core.config.DEFAULT_FLAT_FILES
import com.tinder.gitquery.core.config.DEFAULT_REVISION
import com.tinder.gitquery.core.config.defaultIncludeGlobs
import org.gradle.api.Project

/**
 * Contains the settings for the gitquery initialize plugin that helps init and update a gitquery config file.
 */
open class GitQueryInitExtension(val project: Project) {
    var includeGlobs: List = defaultIncludeGlobs
    var excludeGlobs: List = defaultIncludeGlobs
    var flatFiles: Boolean = DEFAULT_FLAT_FILES
    var revision: String = DEFAULT_REVISION
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy