Files
spring-boot-rest/spring-5-security-cognito/src/main/java/com/baeldung/cognito/SpringCognitoApplication.java
Adrian Precub 57ec69ad3b BAEL-2587: create separate module for cognito (#6814)
* 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
2019-05-08 08:26:17 -06:00

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);
}
}