Skip to content
This repository was archived by the owner on Oct 8, 2020. It is now read-only.

Commit d0d8c91

Browse files
Update README.md
1 parent ba9f6ab commit d0d8c91

1 file changed

Lines changed: 16 additions & 12 deletions

File tree

README.md

Lines changed: 16 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -38,18 +38,20 @@ For Apache Spark
3838
```xml
3939
<dependency>
4040
<groupId>net.sansa-stack</groupId>
41-
<artifactId>sansa-inference-spark</artifactId>
42-
<version>0.1.0-SNAPSHOT</version>
41+
<artifactId>sansa-inference-spark_2.11</artifactId>
42+
<version>VERSION</version>
4343
</dependency>
4444
```
45-
For Apache Flink
45+
and for Apache Flink
4646
```xml
4747
<dependency>
4848
<groupId>net.sansa-stack</groupId>
49-
<artifactId>sansa-inference-flink</artifactId>
50-
<version>0.1.0-SNAPSHOT</version>
49+
<artifactId>sansa-inference-flink_2.11</artifactId>
50+
<version>VERSION</version>
5151
</dependency>
5252
```
53+
with `VERSION` beeing the released version you want to use.
54+
5355
### Using Maven pre-build artifacts
5456

5557
1. Add AKSW Maven repository to your pom.xml (will be added to Maven Central soon)
@@ -85,18 +87,19 @@ For Apache Spark
8587
```xml
8688
<dependency>
8789
<groupId>net.sansa-stack</groupId>
88-
<artifactId>sansa-inference-spark</artifactId>
90+
<artifactId>sansa-inference-spark_2.11</artifactId>
8991
<version>0.1.0-SNAPSHOT</version>
9092
</dependency>
9193
```
92-
For Apache Flink
94+
and for Apache Flink
9395
```xml
9496
<dependency>
9597
<groupId>net.sansa-stack</groupId>
96-
<artifactId>sansa-inference-flink</artifactId>
97-
<version>0.1.0-SNAPSHOT</version>
98+
<artifactId>sansa-inference-flink_2.11</artifactId>
99+
<version>VERSION</version>
98100
</dependency>
99101
```
102+
with `VERSION` beeing the released version you want to use.
100103
### Using SBT
101104
SANSA Inference API has not been published on Maven Central yet, thus, you have to add an additional repository as follows
102105
```scala
@@ -109,14 +112,15 @@ Then you have to add a dependency on either the Apache Spark or the Apache Flink
109112

110113
For Apache Spark add
111114
```scala
112-
"net.sansa-stack" % "sansa-inference-spark" % VERSION
115+
"net.sansa-stack" % "sansa-inference-spark_2.11" % VERSION
113116
```
114117

115118
and for Apache Flink add
116119
```scala
117-
"net.sansa-stack" % "sansa-inference-flink" % VERSION
120+
"net.sansa-stack" % "sansa-inference-flink_2.11" % VERSION
118121
```
119-
where, `VERSION` is the released version you want to use of the Inference API.
122+
123+
where `VERSION` is the released version you want to use.
120124

121125
## Usage
122126
```

0 commit comments

Comments
 (0)