@@ -105,7 +105,6 @@ lazy val chillAll = Project(
105
105
chill,
106
106
chillBijection,
107
107
chillScrooge,
108
- chillStorm,
109
108
chillJava,
110
109
chillHadoop,
111
110
chillThrift,
@@ -127,7 +126,7 @@ lazy val noPublishSettings = Seq(
127
126
* This returns the youngest jar we released that is compatible with the current.
128
127
*/
129
128
val unreleasedModules = Set [String ](" akka" )
130
- val javaOnly = Set [String ](" storm " , " java" , " hadoop" , " thrift" , " protobuf" )
129
+ val javaOnly = Set [String ](" java" , " hadoop" , " thrift" , " protobuf" )
131
130
val binaryCompatVersion = " 0.9.2"
132
131
133
132
def youngestForwardCompatible (subProj : String ) =
@@ -144,7 +143,6 @@ val ignoredABIProblems = {
144
143
import com .typesafe .tools .mima .core ._
145
144
import com .typesafe .tools .mima .core .ProblemFilters ._
146
145
Seq (
147
- exclude[MissingTypesProblem ](" com.twitter.chill.storm.BlizzardKryoFactory" ),
148
146
exclude[MissingTypesProblem ](" com.twitter.chill.InnerClosureFinder" ),
149
147
exclude[IncompatibleResultTypeProblem ](" com.twitter.chill.InnerClosureFinder.visitMethod" ),
150
148
exclude[IncompatibleResultTypeProblem ](" com.twitter.chill.FieldAccessFinder.visitMethod" ),
@@ -216,15 +214,6 @@ lazy val chillJava = module("java").settings(
216
214
autoScalaLibrary := false
217
215
)
218
216
219
- // This can only have java deps!
220
- lazy val chillStorm = module(" storm" )
221
- .settings(
222
- crossPaths := false ,
223
- autoScalaLibrary := false ,
224
- libraryDependencies += " org.apache.storm" % " storm-core" % " 2.4.0" % " provided"
225
- )
226
- .dependsOn(chillJava)
227
-
228
217
// This can only have java deps!
229
218
lazy val chillHadoop = module(" hadoop" )
230
219
.settings(
0 commit comments