We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb6a5f6 commit cf4edceCopy full SHA for cf4edce
1 file changed
README.md
@@ -41,6 +41,28 @@ Before setting up LiquidJava, ensure you have the following installed:
41
- Java 20+ - JDK for compiling and running Java programs
42
- Maven 3.6+ - For building and dependency management
43
44
+Additionally, you'll need the following dependency, which includes the LiquidJava API annotations:
45
+
46
+#### Maven
47
+```xml
48
+<dependency>
49
+ <groupId>io.github.rcosta358</groupId>
50
+ <artifactId>liquidjava-api</artifactId>
51
+ <version>0.0.2</version>
52
+</dependency>
53
+```
54
55
+#### Gradle
56
+```groovy
57
+repositories {
58
+ mavenCentral()
59
+}
60
61
+dependencies {
62
+ implementation 'io.github.rcosta358:liquidjava-api:0.0.2'
63
64
65
66
#### Setup
67
68
1. Clone the repository: `git clone https://github.com/CatarinaGamboa/liquidjava.git`
0 commit comments