How to add a dependency to Maven
Add the following cool.william.frontend : spring-boot-livereload-index-controller maven dependency to the pom.xml
file with your favorite IDE (IntelliJ / Eclipse / Netbeans):
<dependency>
<groupId>cool.william.frontend</groupId>
<artifactId>spring-boot-livereload-index-controller</artifactId>
<version>0.0.3</version>
</dependency>
How to add a dependency to Gradle
Gradle Groovy DSL: Add the following cool.william.frontend : spring-boot-livereload-index-controller gradle dependency to your build.gradle
file:
implementation 'cool.william.frontend:spring-boot-livereload-index-controller:0.0.3'
Gradle Kotlin DSL: Add the following cool.william.frontend : spring-boot-livereload-index-controller gradle kotlin dependency to your build.gradle.kts
file:
implementation("cool.william.frontend:spring-boot-livereload-index-controller:0.0.3")
How to add a dependency to SBT Scala
SBT Scala: Add the following cool.william.frontend : spring-boot-livereload-index-controller sbt scala dependency to your build.sbt
file:
libraryDependencies += "cool.william.frontend" % "spring-boot-livereload-index-controller" % "0.0.3"