Skip to content

Commit

Permalink
[FLINK-4292] [batch connectors] Fix setup of HCatalog project by addi…
Browse files Browse the repository at this point in the history
…ng Scala SDK dependency
  • Loading branch information
StephanEwen authored and uce committed Aug 2, 2016
1 parent a192679 commit 60b1085
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
7 changes: 6 additions & 1 deletion flink-batch-connectors/flink-hcatalog/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,12 @@ under the License.
<version>0.12.0</version>
</dependency>

<dependency>
<groupId>org.scala-lang</groupId>
<artifactId>scala-library</artifactId>
<scope>provided</scope>
</dependency>

</dependencies>

<build>
Expand All @@ -56,7 +62,6 @@ under the License.
<plugin>
<groupId>net.alchim31.maven</groupId>
<artifactId>scala-maven-plugin</artifactId>
<version>3.1.4</version>
<executions>
<!-- Run scala compiler in the process-resources phase, so that dependencies on
scala classes can be resolved later in the (Java) compile phase -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import org.apache.hive.hcatalog.data.schema.HCatFieldSchema
* A InputFormat to read from HCatalog tables.
* The InputFormat supports projection (selection and order of fields) and partition filters.
*
* Data can be returned as {@link HCatRecord} or Scala tuples.
* Data can be returned as [[HCatRecord]] or Scala tuples.
* Scala tuples support only up to 22 fields.
*
*/
Expand Down
2 changes: 1 addition & 1 deletion flink-streaming-scala/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ under the License.
</configuration>
</plugin>

<!-- Exclude generated classes from api compatibilty checks -->
<!-- Exclude generated classes from api compatibility checks -->
<plugin>
<groupId>com.github.siom79.japicmp</groupId>
<artifactId>japicmp-maven-plugin</artifactId>
Expand Down

0 comments on commit 60b1085

Please sign in to comment.