This repository was archived by the owner on Oct 13, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +10
-14
lines changed
Expand file tree Collapse file tree 2 files changed +10
-14
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
88
99## [ 1.2.0] - 2020-02-03
1010
11+ - support for scala 2.11 and 2.12
1112- nested collections support
1213- enhanced map support
1314
Original file line number Diff line number Diff line change @@ -19,24 +19,19 @@ Added support for:
1919To add the dependency to your project with maven, add the following code to your pom.xml:
2020
2121``` XML
22- <dependencies >
22+ <!-- Scala 2.11 -- >
2323 <dependency >
2424 <groupId >com.arangodb</groupId >
25- <artifactId >velocypack-module-scala </artifactId >
26- <version >1.0.2 </version >
25+ <artifactId >velocypack-module-scala_2.11 </artifactId >
26+ <version >1.2.0 </version >
2727 </dependency >
28- </dependencies >
29- ```
30-
31- If you want to test with a snapshot version (e.g. 1.0.0-SNAPSHOT), add the staging repository of oss.sonatype.org to your pom.xml:
3228
33- ``` XML
34- <repositories >
35- <repository >
36- <id >arangodb-snapshots</id >
37- <url >https://oss.sonatype.org/content/groups/staging</url >
38- </repository >
39- </repositories >
29+ <!-- Scala 2.12 -->
30+ <dependency >
31+ <groupId >com.arangodb</groupId >
32+ <artifactId >velocypack-module-scala_2.12</artifactId >
33+ <version >1.2.0</version >
34+ </dependency >
4035```
4136
4237## Compile
You can’t perform that action at this time.
0 commit comments