com.societegenerale.githubcrawler.GitHubCrawlerProperties.kt Maven / Gradle / Ivy
package com.societegenerale.githubcrawler
import org.springframework.boot.context.properties.ConfigurationProperties
@ConfigurationProperties
class GitHubCrawlerProperties {
val searchesPerRepo: Map = HashMap()
val indicatorsToFetchByFile: Map> = HashMap()
var repositoriesToExclude: List = ArrayList()
var publishExcludedRepositories: Boolean = false
var crawlAllBranches: Boolean = false
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy