diff --git a/docs/index.html b/docs/index.html index dbe34e2..508c0ac 100644 --- a/docs/index.html +++ b/docs/index.html @@ -69,17 +69,19 @@

Getting started with Spring Boot Database Admin requires including it as a dependency and then performing a simple configuration step.

2.1 Installation

-

At the moment the code is not yet distributed on Maven, so it is necessary to build and install manually. Clone the Github repo and mvn install the project into your local repository. Then, include the dependency in your pom.xml:

+

Since Spring Boot Database Admin is distributed on Maven, the easiest way to start is to include this dependency in your pom.xml:

 <dependency>
 	<groupId>tech.ailef</groupId>
 	<artifactId>spring-boot-db-admin</artifactId>
-	<version>0.0.4</version>
+	<version>0.1.2</version>
 </dependency>
 
 
-

TIP The version in this snippet might be different from the one you pulled from Github. Make sure to edit it to match the version contained in the project's pom.xml file.

+

TIP Go to the Maven repository to retrieve the exact snippet for the latest stable release.

+ +

If you want the latest unstable release, you can clone the main branch of the Github repo and execute mvn install -D skipTests in the project's directory. This will install the library in your local repository, which you can then include using the same snippet as above, but replacing the version number with the one contained in the pom.xml file of the code you pulled from Github.

2.2 Configuration

After including the dependency, a few configuration steps are required on your end in order to integrate the library into your project.