diff --git a/README.md b/README.md index 9fc4d93..27780fe 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,9 @@ # Conditional Profiles +[![Build Status](https://travis-ci.org/shyamz-22/conditional-profiles.svg?branch=master)](https://travis-ci.org/shyamz-22/conditional-profiles) + ### Default Spring profile behavior ```@Profile("A", "B")``` on a bean , Creates that bean when Profile A or B is active. -### Conditional Profiles +### Conditional Profiles ```@ConditionalOnProfiles("A","B")``` on a bean , Creates that bean only when Profile A and B is active.