From df61260d4e0733cc7e488c67fbb24ab840340d45 Mon Sep 17 00:00:00 2001 From: shyamz-22 Date: Sat, 16 Dec 2017 13:36:43 +0100 Subject: [PATCH] Add travis badge to ReadMe.md file --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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.