File tree Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ The `snowball` package is implemented in java, and so it can be used in both jav
20
20
21
21
` snowball ` expects you to provide ` commons-math3 ` and ` gibbous ` dependencies, as shown here:
22
22
23
+ #### using SBT
23
24
``` scala
24
25
resolvers += " manyangled" at " https://dl.bintray.com/manyangled/maven/"
25
26
@@ -28,6 +29,27 @@ libraryDependencies ++= Seq(
28
29
" com.manyangled" % " gibbous" % " 0.2.2" ,
29
30
" org.apache.commons" % " commons-math3" % " 3.6.1" )
30
31
```
32
+ #### using maven
33
+ ``` xml
34
+ <dependency >
35
+ <groupId >com.manyangled</groupId >
36
+ <artifactId >snowball</artifactId >
37
+ <version >0.2.2</version >
38
+ <type >pom</type >
39
+ </dependency >
40
+ <dependency >
41
+ <groupId >com.manyangled</groupId >
42
+ <artifactId >gibbous</artifactId >
43
+ <version >0.2.2</version >
44
+ <type >pom</type >
45
+ </dependency >
46
+ <dependency >
47
+ <groupId >org.apache.commons</groupId >
48
+ <artifactId >commons-math3</artifactId >
49
+ <version >3.6.1</version >
50
+ <type >pom</type >
51
+ </dependency >
52
+ ```
31
53
32
54
### Examples
33
55
You can’t perform that action at this time.
0 commit comments