##
# This files declares dependencies that are included in projects when project.construction#addTextAndLocalDependencies()
# is invoked.
# COMPILE+RUNTIME : stands for dependencies used for compilation and for runtime as well.
#                   This is the most common place to declare dependencies.
# COMPILE : stands for dependencies used for compilation but not for runtime
# RUNTIME : stands for dependencies used for runtime but not for compilation.
#           Runtime dependencies has impact when creating fat jars and for the definition of published dependencies.
# TEST    : stands for dependencies used only for testing.
#
# Dependencies has to be declared using 'gradle-short' format, meaning 'group:module:version' though version is optional.
#
# Example :
#
# - TEST
#  org.springframework.boot:spring-boot-starter-test
#  org.seleniumhq.selenium:selenium-chrome-driver:3.4.0
#
# Note : If you don't need this, you can remove safely this file.
##

- COMPILE+RUNTIME

- COMPILE

- RUNTIME

- TEST



