Skip to content

Commit

Permalink
Upgrade to Spark 2.1.0 (#54)
Browse files Browse the repository at this point in the history
* Remove deprecated SparkLoggerComponent
* Bump Spark to 2.1.0
* Update CHANGELOG.md
  • Loading branch information
JesusMtnez committed Feb 23, 2017
1 parent 751e602 commit f6dc63a
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 57 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
# Changelog

Only listing significant user-visible, not internal code cleanups and minor bug fixes.

## 0.10.0 (upcoming)

* Pending changelog
* Bump Spark to 2.1.0
* Bump Curator to 3.2.0
* Remove Spark Logging

## 0.9.0 (February 07, 2017)

* Pending changelog
* Add exists path in DAO Components

## 0.8.0 (January 30, 2017)

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
<akka.version>2.4.9</akka.version>
<json4s.version>3.4.0</json4s.version>
<curator.version>3.2.0</curator.version>
<spark.version>1.6.2</spark.version>
<spark.version>2.1.0</spark.version>
<slf4j.version>1.7.7</slf4j.version>
<scalaz-version>7.2.1</scalaz-version>
<!-- Scala version and cross build properties -->
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ package com.stratio.common.utils.integration

import com.stratio.common.utils.components.config.impl.TypesafeConfigComponent
import com.stratio.common.utils.components.dao.GenericDAOComponent
import com.stratio.common.utils.components.logger.impl.SparkLoggerComponent
import com.stratio.common.utils.components.logger.impl.Slf4jLoggerComponent
import org.apache.curator.test.TestingServer
import org.apache.curator.utils.CloseableUtils
import org.junit.runner.RunWith
Expand Down Expand Up @@ -88,7 +88,7 @@ class ZookeeperIntegrationTest extends WordSpec
}


trait DummyDAOComponent extends GenericDAOComponent[Dummy] with TypesafeConfigComponent with SparkLoggerComponent {
trait DummyDAOComponent extends GenericDAOComponent[Dummy] with TypesafeConfigComponent with Slf4jLoggerComponent {

override val dao : DAO = new GenericDAO(Option("dummy"))
}
Expand Down

0 comments on commit f6dc63a

Please sign in to comment.