|
66 | 66 | <!--<java.version>>=1.8</java.version>--> |
67 | 67 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
68 | 68 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
69 | | - <scala.version>2.11.11</scala.version> |
| 69 | + <scala.version>2.11.12</scala.version> |
70 | 70 | <scala.binary.version>2.11</scala.binary.version> |
71 | | - <spark.version>2.2.1</spark.version> |
72 | | - <flink.version>1.4.0</flink.version> |
73 | | - <jena.version>3.5.0</jena.version> |
| 71 | + <spark.version>2.3.1</spark.version> |
| 72 | + <flink.version>1.5.0</flink.version> |
| 73 | + <jena.version>3.6.0</jena.version> |
74 | 74 | <sansa.stack.version>0.3.1-SNAPSHOT</sansa.stack.version> |
75 | 75 | <sansa.rdf.version>${sansa.stack.version}</sansa.rdf.version> |
76 | 76 | <sansa.query.version>${sansa.stack.version}</sansa.query.version> |
77 | 77 | <sansa.owl.version>${sansa.stack.version}</sansa.owl.version> |
78 | | - <jsa.subversion>1</jsa.subversion> |
| 78 | + <jsa.subversion>3</jsa.subversion> |
79 | 79 | <jsa.version>${jena.version}-${jsa.subversion}</jsa.version> |
80 | 80 | <PermGen>64m</PermGen> |
81 | 81 | <MaxPermGen>512m</MaxPermGen> |
82 | 82 | <CodeCacheSize>512m</CodeCacheSize> |
83 | 83 | <gpg.keyname>AKSW</gpg.keyname> |
84 | | - <owlapi.version>5.1.3</owlapi.version> |
| 84 | + <owlapi.version>5.1.5</owlapi.version> |
85 | 85 | <scalastyle.config.path>${project.basedir}/scalastyle-config.xml</scalastyle.config.path> |
86 | 86 | </properties> |
87 | 87 |
|
|
96 | 96 | <groupId>${project.groupId}</groupId> |
97 | 97 | <artifactId>sansa-rdf-spark_${scala.binary.version}</artifactId> |
98 | 98 | <version>${sansa.rdf.version}</version> |
| 99 | + <!-- we have to exclude an old version here transitively included by a Kafka dependency of Spark |
| 100 | + Don't know how Spark 2.3 is able to work with Kafka 0.10 right now ... |
| 101 | + --> |
| 102 | + <exclusions> |
| 103 | + <exclusion> |
| 104 | + <groupId>net.jpountz.lz4</groupId> |
| 105 | + <artifactId>lz4</artifactId> |
| 106 | + </exclusion> |
| 107 | + </exclusions> |
99 | 108 | </dependency> |
100 | 109 | <dependency> |
101 | 110 | <groupId>${project.groupId}</groupId> |
|
149 | 158 | <artifactId>spark-sql_${scala.binary.version}</artifactId> |
150 | 159 | <version>${spark.version}</version> |
151 | 160 | </dependency> |
| 161 | + <dependency> |
| 162 | + <groupId>org.apache.spark</groupId> |
| 163 | + <artifactId>spark-streaming_${scala.binary.version}</artifactId> |
| 164 | + <version>${spark.version}</version> |
| 165 | + </dependency> |
| 166 | + <dependency> |
| 167 | + <groupId>org.apache.spark</groupId> |
| 168 | + <artifactId>spark-streaming-kafka-0-10_${scala.binary.version}</artifactId> |
| 169 | + <version>${spark.version}</version> |
| 170 | + </dependency> |
152 | 171 |
|
153 | 172 | <!-- Apache Flink --> |
154 | 173 | <dependency> |
|
178 | 197 | <artifactId>jena-arq</artifactId> |
179 | 198 | <version>${jena.version}</version> |
180 | 199 | </dependency> |
| 200 | + <dependency> |
| 201 | + <groupId>org.apache.jena</groupId> |
| 202 | + <artifactId>jena-tdb</artifactId> |
| 203 | + <version>${jena.version}</version> |
| 204 | + </dependency> |
| 205 | + <dependency> |
| 206 | + <groupId>org.apache.jena</groupId> |
| 207 | + <artifactId>jena-cmds</artifactId> |
| 208 | + <version>${jena.version}</version> |
| 209 | + </dependency> |
181 | 210 |
|
182 | 211 | <!-- OWL API --> |
183 | 212 | <dependency> |
|
203 | 232 |
|
204 | 233 | <!-- Graph API --> |
205 | 234 | <dependency> |
206 | | - <groupId>com.assembla.scala-incubator</groupId> |
| 235 | + <groupId>org.scala-graph</groupId> |
207 | 236 | <artifactId>graph-core_${scala.binary.version}</artifactId> |
208 | | - <version>1.10.0</version> |
| 237 | + <version>1.12.3</version> |
209 | 238 | </dependency> |
210 | 239 | <dependency> |
211 | | - <groupId>com.assembla.scala-incubator</groupId> |
| 240 | + <groupId>org.scala-graph</groupId> |
212 | 241 | <artifactId>graph-dot_${scala.binary.version}</artifactId> |
213 | | - <version>1.9.0</version> |
| 242 | + <version>1.11.5</version> |
214 | 243 | </dependency> |
215 | 244 | <dependency> |
216 | 245 | <groupId>org.jgrapht</groupId> |
217 | 246 | <artifactId>jgrapht-core</artifactId> |
218 | | - <version>1.1.0</version> |
| 247 | + <version>1.2.0</version> |
| 248 | + </dependency> |
| 249 | + <dependency> |
| 250 | + <groupId>org.jgrapht</groupId> |
| 251 | + <artifactId>jgrapht-io</artifactId> |
| 252 | + <version>1.2.0</version> |
219 | 253 | </dependency> |
220 | 254 | <dependency> |
221 | 255 | <groupId>org.jgrapht</groupId> |
222 | 256 | <artifactId>jgrapht-ext</artifactId> |
223 | | - <version>1.1.0</version> |
| 257 | + <version>1.2.0</version> |
224 | 258 | </dependency> |
225 | 259 | <dependency> |
226 | 260 | <groupId>org.gephi</groupId> |
|
265 | 299 | <dependency> |
266 | 300 | <groupId>com.typesafe.scala-logging</groupId> |
267 | 301 | <artifactId>scala-logging_${scala.binary.version}</artifactId> |
268 | | - <version>3.7.2</version> |
| 302 | + <version>3.9.0</version> |
269 | 303 | </dependency> |
270 | 304 |
|
271 | 305 | <!-- Guava --> |
|
279 | 313 | <dependency> |
280 | 314 | <groupId>com.chuusai</groupId> |
281 | 315 | <artifactId>shapeless_${scala.binary.version}</artifactId> |
282 | | - <version>2.3.2</version> |
| 316 | + <version>2.3.3</version> |
283 | 317 | </dependency> |
284 | 318 |
|
285 | 319 | <!-- Scopt --> |
|
293 | 327 | <dependency> |
294 | 328 | <groupId>com.typesafe</groupId> |
295 | 329 | <artifactId>config</artifactId> |
296 | | - <version>1.3.2</version> |
| 330 | + <version>1.3.3</version> |
297 | 331 | </dependency> |
298 | 332 |
|
299 | 333 |
|
|
0 commit comments