Skip to content

Commit

Permalink
Renaming transform submodule into engine
Browse files Browse the repository at this point in the history
  • Loading branch information
sergiimk committed May 4, 2020
1 parent a212234 commit a0bd59b
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[submodule "kamu-core-manifests"]
path = core.manifests
url = https://github.com/kamu-data/kamu-core-manifests
[submodule "kamu-core-transform-streaming"]
path = core.transform.streaming
url = https://github.com/kamu-data/kamu-core-transform-streaming
[submodule "core.utils"]
path = core.utils
url = https://github.com/kamu-data/kamu-core-utils.git
[submodule "engine.spark"]
path = engine.spark
url = https://github.com/kamu-data/kamu-engine-spark.git
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.14.0] - 2020-05-03
### Changed
- Consolidating more logic into `engine.spark`

## [0.13.0] - 2020-05-02
### Added
- New `log` command
Expand Down
10 changes: 4 additions & 6 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ lazy val kamuCli = project
.dependsOn(
kamuCoreUtils % "compile->compile;test->test",
kamuCoreManifests,
kamuCoreTransformStreaming
kamuEngineSpark
)
.aggregate(
kamuCoreUtils,
kamuCoreManifests,
kamuCoreTransformStreaming
kamuEngineSpark
)
.enablePlugins(AutomateHeaderPlugin)
.settings(
Expand Down Expand Up @@ -77,8 +77,8 @@ lazy val kamuCoreManifests = project
commonSettings
)

lazy val kamuCoreTransformStreaming = project
.in(file("core.transform.streaming"))
lazy val kamuEngineSpark = project
.in(file("engine.spark"))
.enablePlugins(AutomateHeaderPlugin)
.dependsOn(
kamuCoreUtils % "compile->compile;test->test",
Expand All @@ -100,8 +100,6 @@ lazy val kamuCoreTransformStreaming = project
//////////////////////////////////////////////////////////////////////////////

lazy val versions = new {
val akka = "2.5.22"
val akkaHttp = "10.1.8"
val geoSpark = "1.2.0"
val hadoopCommon = "2.6.5"
val json4sJackson = "3.5.3"
Expand Down

0 comments on commit a0bd59b

Please sign in to comment.