
org.bdd.reporting.BddReportingConfiguration.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bdd-reporting-service Show documentation
Show all versions of bdd-reporting-service Show documentation
BDD Enterprise Reporting Server. This server provides the ability to upload reports from tools like Cucumber,
SpecFlow, Pickles and the information is then aggregated into a central view across all projects.
The newest version!
package org.bdd.reporting
import org.bdd.reporting.repository.elasticsearch.FeatureRepository
import org.springframework.boot.context.properties.ConfigurationProperties
import org.springframework.boot.context.properties.EnableConfigurationProperties
import org.springframework.context.annotation.ComponentScan
import org.springframework.context.annotation.Configuration
import org.springframework.data.elasticsearch.repository.config.EnableElasticsearchRepositories
/**
*/
@Suppress("SpringFacetCode", "unused")
@ComponentScan(basePackageClasses = arrayOf(BddReportingConfiguration::class))
@Configuration
@EnableElasticsearchRepositories(basePackageClasses = arrayOf(FeatureRepository::class))
open class BddReportingConfiguration {
@Configuration
@ConfigurationProperties(prefix = "")
@EnableConfigurationProperties(BddReportingProperties::class)
open class BddReportingProperties {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy