File tree Expand file tree Collapse file tree 1 file changed +22
-1
lines changed Expand file tree Collapse file tree 1 file changed +22
-1
lines changed Original file line number Diff line number Diff line change @@ -156,7 +156,11 @@ The latest builds are available from our
156
156
[ ![ Build Status] ( https://jenkins.wetator.org/buildStatus/icon?job=HtmlUnit+-+Neko )] ( https://jenkins.wetator.org/view/HtmlUnit/job/HtmlUnit%20-%20Neko/ )
157
157
158
158
159
- If you use maven please add:
159
+ Read on if you want to try the latest bleeding-edge snapshot.
160
+
161
+ ### Maven
162
+
163
+ Add the dependency to your ` pom.xml ` :
160
164
161
165
<dependency>
162
166
<groupId>org.htmlunit</groupId>
@@ -181,6 +185,23 @@ You have to add the Central Portal snapshot repository to your pom `repositories
181
185
</repository>
182
186
</repositories>
183
187
188
+ ### Gradle
189
+
190
+ Add the snapshot repository and dependency to your ` build.gradle ` :
191
+
192
+ ``` groovy
193
+ repositories {
194
+ maven { url "https://central.sonatype.com/repository/maven-snapshots" }
195
+ // ...
196
+ }
197
+ // ...
198
+ dependencies {
199
+ implementation group: 'org.htmlunit', name: 'neko-htmlunit', version: '4.14.0-SNAPSHOT'
200
+ // ...
201
+ }
202
+ ```
203
+
204
+
184
205
## Porting from 3.x to 4.x
185
206
186
207
Version 4.x introduces a major change in the handling of encodings - the mapping from the encoding
You can’t perform that action at this time.
0 commit comments