|
1 | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2 | 2 | <modelVersion>4.0.0</modelVersion>
|
3 | 3 | <groupId>net.sansa-stack</groupId>
|
4 |
| - <artifactId>sansa-owl-parent</artifactId> |
5 |
| - <version>0.1.0</version> |
| 4 | + <artifactId>sansa-owl-parent_2.11</artifactId> |
| 5 | + <version>0.2.0</version> |
6 | 6 | <packaging>pom</packaging>
|
7 | 7 | <name>OWL - Parent</name>
|
8 | 8 |
|
|
65 | 65 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
66 | 66 | <scala.version>2.11.8</scala.version>
|
67 | 67 | <scala.binary.version>2.11</scala.binary.version>
|
68 |
| - <spark.version>2.0.0</spark.version> |
69 |
| - <flink.version>1.1.3</flink.version> |
| 68 | + <spark.version>2.1.1</spark.version> |
| 69 | + <flink.version>1.3.0</flink.version> |
70 | 70 | <hadoop.common.version>2.7.0</hadoop.common.version>
|
71 | 71 | <hadoop.mapreduce-client.version>2.3.0</hadoop.mapreduce-client.version>
|
72 |
| - <owlapi.version>5.0.3</owlapi.version> |
| 72 | + <owlapi.version>5.1.0</owlapi.version> |
73 | 73 | </properties>
|
74 | 74 |
|
75 | 75 |
|
|
85 | 85 | <!-- Apache Spark dependencies -->
|
86 | 86 | <dependency>
|
87 | 87 | <groupId>org.apache.spark</groupId>
|
88 |
| - <artifactId>spark-core_${scala.binary.version}</artifactId> |
| 88 | + <artifactId>spark-core_2.11</artifactId> |
89 | 89 | <version>${spark.version}</version>
|
90 | 90 | </dependency>
|
91 | 91 | <dependency>
|
|
105 | 105 | <artifactId>flink-clients_${scala.binary.version}</artifactId>
|
106 | 106 | <version>${flink.version}</version>
|
107 | 107 | </dependency>
|
| 108 | + <dependency> |
| 109 | + <groupId>org.apache.flink</groupId> |
| 110 | + <artifactId>flink-scala_2.11</artifactId> |
| 111 | + <version>${flink.version}</version> |
| 112 | + </dependency> |
| 113 | + <dependency> |
| 114 | + <groupId>org.apache.flink</groupId> |
| 115 | + <artifactId>flink-clients_2.11</artifactId> |
| 116 | + <version>${flink.version}</version> |
| 117 | + </dependency> |
| 118 | + <!-- was required to be able to switch to Flink 1.3 --> |
| 119 | + <dependency> |
| 120 | + <groupId>org.apache.flink</groupId> |
| 121 | + <artifactId>flink-hadoop-compatibility_${scala.binary.version}</artifactId> |
| 122 | + <version>${flink.version}</version> |
| 123 | + </dependency> |
108 | 124 |
|
109 | 125 | <!--
|
110 | 126 | Hadoop dependencies (used for custom InputFormat definition in
|
|
151 | 167 | <version>1.6.1</version>
|
152 | 168 | </dependency>
|
153 | 169 |
|
| 170 | + <!-- parsing dependencies --> |
| 171 | + <dependency> |
| 172 | + <groupId>org.scala-lang.modules</groupId> |
| 173 | + <artifactId>scala-parser-combinators_${scala.binary.version}</artifactId> |
| 174 | + <version>1.0.6</version> |
| 175 | + </dependency> |
| 176 | + |
154 | 177 | <!-- Testing dependencies -->
|
155 | 178 | <dependency>
|
156 | 179 | <groupId>junit</groupId>
|
|
167 | 190 | <dependency>
|
168 | 191 | <groupId>com.holdenkarau</groupId>
|
169 | 192 | <artifactId>spark-testing-base_${scala.binary.version}</artifactId>
|
170 |
| - <version>${spark.version}_0.4.7</version> |
| 193 | + <!--version>${spark.version}_0.4.7</version--> |
| 194 | + <version>2.1.0_0.6.0</version> |
171 | 195 | <scope>test</scope>
|
172 | 196 | </dependency>
|
173 | 197 |
|
|
177 | 201 | <artifactId>scala-logging_2.11</artifactId>
|
178 | 202 | <version>3.5.0</version>
|
179 | 203 | </dependency>
|
180 |
| - |
| 204 | + <!-- needed due to the flink-hadoop-compatibility dependency --> |
| 205 | + <dependency> |
| 206 | + <groupId>log4j</groupId> |
| 207 | + <artifactId>log4j</artifactId> |
| 208 | + <version>1.2.17</version> |
| 209 | + </dependency> |
181 | 210 | </dependencies>
|
182 | 211 | </dependencyManagement>
|
183 | 212 |
|
|
0 commit comments