diff --git a/README.md b/README.md index 8083876..ddb7bb5 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,8 @@ Although you can make a Java application as a monolithic block on top of the JRE ## Prerequisites +[![Codacy Badge](https://api.codacy.com/project/badge/Grade/04363fe4528d49668ccf72379890c09c)](https://www.codacy.com/app/tiagosimao/booty?utm_source=github.com&utm_medium=referral&utm_content=irenical/booty&utm_campaign=badger) + Each of your application's modules must somehow implement LifeCycle. This is the minimum contract Booty needs in order to handle them. If you don't want to change your module dependencies, you can simply create anonymous LifeCycle classes that wrap them. Either way you end up having to implement the following methods for each of your modules: void start(), void stop(), boolean isRunning(). Chances are the behaviours themselves are already implemented in each module. ## Usage