Skip to content

Commit fa422e8

Browse files
add maven xml example
1 parent 9553fff commit fa422e8

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

README.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ The `snowball` package is implemented in java, and so it can be used in both jav
2020

2121
`snowball` expects you to provide `commons-math3` and `gibbous` dependencies, as shown here:
2222

23+
#### using SBT
2324
```scala
2425
resolvers += "manyangled" at "https://dl.bintray.com/manyangled/maven/"
2526

@@ -28,6 +29,27 @@ libraryDependencies ++= Seq(
2829
"com.manyangled" % "gibbous" % "0.2.2",
2930
"org.apache.commons" % "commons-math3" % "3.6.1")
3031
```
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+
```
3153

3254
### Examples
3355

0 commit comments

Comments
 (0)