Skip to content

Commit e3f2e18

Browse files
committed
docs: declare all required dependencies explicitly in Maven and Gradle snippets
1 parent 046c025 commit e3f2e18

1 file changed

Lines changed: 35 additions & 1 deletion

File tree

README.md

Lines changed: 35 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ Higher-level RAG framework that orchestrates **FastContentParse** and **[FastCon
139139

140140
### Option 1: Maven (Recommended)
141141

142-
Add the **JitPack** repository and the dependency to your `pom.xml`. Maven automatically resolves transitive dependencies (`FastOCR`, `FastRegex`, `FastCore`, `pdfbox`):
142+
Add the **JitPack** repository and the dependencies to your `pom.xml`:
143143

144144
```xml
145145
<repositories>
@@ -150,11 +150,36 @@ Add the **JitPack** repository and the dependency to your `pom.xml`. Maven autom
150150
</repositories>
151151

152152
<dependencies>
153+
<!-- FastContentParse Core -->
153154
<dependency>
154155
<groupId>com.github.andrestubbe</groupId>
155156
<artifactId>FastContentParse</artifactId>
156157
<version>0.1.5</version>
157158
</dependency>
159+
160+
<!-- FastJava Ecosystem Dependencies -->
161+
<dependency>
162+
<groupId>com.github.andrestubbe</groupId>
163+
<artifactId>FastRegex</artifactId>
164+
<version>0.1.0</version>
165+
</dependency>
166+
<dependency>
167+
<groupId>com.github.andrestubbe</groupId>
168+
<artifactId>FastOCR</artifactId>
169+
<version>0.1.1</version>
170+
</dependency>
171+
<dependency>
172+
<groupId>com.github.andrestubbe</groupId>
173+
<artifactId>FastCore</artifactId>
174+
<version>0.1.0</version>
175+
</dependency>
176+
177+
<!-- Document Decoding -->
178+
<dependency>
179+
<groupId>org.apache.pdfbox</groupId>
180+
<artifactId>pdfbox</artifactId>
181+
<version>3.0.0</version>
182+
</dependency>
158183
</dependencies>
159184
```
160185

@@ -167,7 +192,16 @@ repositories {
167192
}
168193
169194
dependencies {
195+
// FastContentParse Core
170196
implementation 'com.github.andrestubbe:FastContentParse:0.1.5'
197+
198+
// FastJava Ecosystem Dependencies
199+
implementation 'com.github.andrestubbe:FastRegex:0.1.0'
200+
implementation 'com.github.andrestubbe:FastOCR:0.1.1'
201+
implementation 'com.github.andrestubbe:FastCore:0.1.0'
202+
203+
// Document Decoding
204+
implementation 'org.apache.pdfbox:pdfbox:3.0.0'
171205
}
172206
```
173207

0 commit comments

Comments
 (0)