com.capitalone.dashboard.Application Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jira-xray-testresult-collector Show documentation
Show all versions of jira-xray-testresult-collector Show documentation
Jira XRay collector micro service collects data from Jira XRay
package com.capitalone.dashboard;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
/**
* Application configuration and bootstrap
*/
@SpringBootApplication
public class Application {
/**
* Main thread of operation that runs the Spring Boot collector application.
*
* @param args
* Any command line arguments that need to be captured at runtime
* (currently, none are used)
*/
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy