@@ -38,21 +38,23 @@ 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
55- 1 . Add AKSW Maven repository to your pom.xml (will be added to Maven Central soon)
57+ 1 . Add AKSW Maven repository to your pom.xml (will be added to Maven Central soon)
5658``` xml
5759<repository >
5860 <id >maven.aksw.snapshots</id >
@@ -79,24 +81,25 @@ For Apache Flink
7981 </snapshots >
8082</repository >
8183```
82- 2 . Add dependency to your pom.xml
84+ '2' . Add dependency to your pom.xml
8385
8486For Apache Spark
8587``` xml
8688<dependency >
8789 <groupId >net.sansa-stack</groupId >
88- <artifactId >sansa-inference-spark </artifactId >
89- <version >0.1.0-SNAPSHOT </version >
90+ <artifactId >sansa-inference-spark_2.11 </artifactId >
91+ <version >VERSION </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
101104SANSA 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
110113For 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
115118and 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