Skip to content

Commit

Permalink
Merge pull request #501 from InterestingLab/rickyhuo.v1.config
Browse files Browse the repository at this point in the history
Rickyhuo.v1.config
  • Loading branch information
garyelephant authored May 21, 2020
2 parents 29db512 + cc8fc20 commit d6dd5f8
Show file tree
Hide file tree
Showing 259 changed files with 23,073 additions and 998 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name := "Waterdrop"
version := "1.4.3"
version := "1.5.0"
organization := "io.github.interestinglab.waterdrop"

scalaVersion := "2.11.8"
Expand Down
9 changes: 6 additions & 3 deletions project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,16 @@ import Keys._
object WaterDropBuild extends Build {

lazy val root = Project(id="waterdrop",
base=file(".")) aggregate(apis, core, doctor) dependsOn(core, doctor)
base=file(".")) aggregate(apis, core, doctor, config) dependsOn(core, doctor)

lazy val config = Project(id="waterdrop-config",
base=file("waterdrop-config"))

lazy val apis = Project(id="waterdrop-apis",
base=file("waterdrop-apis"))
base=file("waterdrop-apis")) dependsOn(config)

lazy val core = Project(id="waterdrop-core",
base=file("waterdrop-core")) dependsOn(apis)
base=file("waterdrop-core")) dependsOn(apis, config)

lazy val doctor = Project(id="waterdrop-doctor",
base=file("doctor"))
Expand Down
3 changes: 1 addition & 2 deletions waterdrop-apis/build.sbt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name := "Waterdrop-apis"
version := "1.4.0"
version := "1.5.0"
organization := "io.github.interestinglab.waterdrop"

scalaVersion := "2.11.8"
Expand Down Expand Up @@ -32,7 +32,6 @@ providedDeps match {

// We forked and modified code of Typesafe config, the jar in unmanagedJars is packaged by InterestingLab
// Project: https://github.com/InterestingLab/config
unmanagedJars in Compile += file("lib/config-1.3.3-SNAPSHOT.jar")

libraryDependencies ++= Seq(
)
Expand Down
1 change: 0 additions & 1 deletion waterdrop-apis/lib/README.md

This file was deleted.

Binary file removed waterdrop-apis/lib/config-1.3.3-SNAPSHOT.jar
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package io.github.interestinglab.waterdrop.apis

import com.typesafe.config.Config
import io.github.interestinglab.waterdrop.config.Config
import org.apache.spark.internal.Logging
import org.apache.spark.sql.SparkSession

Expand Down
Loading

0 comments on commit d6dd5f8

Please sign in to comment.