* BAEL-2587: create separate module for cognito * BAEL-2587: add separate module for cognito in parent pom * BAEL-2587: remove cognito from spring-5-security-oauth module and correct pom.xml * BAEL-2587: replace tabs with spaces in pom.xml to fix indentation * BAEL-2587: fix pom indentation * BAEL-2587: fix article link
15 lines
451 B
Java
15 lines
451 B
Java
package com.baeldung.cognito;
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
import org.springframework.context.annotation.PropertySource;
|
|
|
|
@SpringBootApplication
|
|
@PropertySource("cognito/application-cognito.yml")
|
|
public class SpringCognitoApplication {
|
|
|
|
public static void main(String[] args) {
|
|
SpringApplication.run(SpringCognitoApplication.class, args);
|
|
}
|
|
}
|