Skip to content

Commit be1255f

Browse files
authored
Merge pull request #11 from almacken/feature/getFeatures
Added feature endpoint.
2 parents 25ad362 + 33d6349 commit be1255f

File tree

5 files changed

+421
-2
lines changed

5 files changed

+421
-2
lines changed

build.sbt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ scalaVersion := "2.12.4"
66

77
libraryDependencies += "org.parboiled" %% "parboiled" % "2.1.4"
88
libraryDependencies += "com.typesafe.akka" %% "akka-http" % "10.0.11"
9+
libraryDependencies += "com.typesafe.akka" %% "akka-stream" % "2.5.12"
10+
libraryDependencies += "com.typesafe.akka" %% "akka-http-spray-json" % "10.1.1"
11+
libraryDependencies += "io.spray" %% "spray-json" % "1.3.3"
912

1013
val elastic4sVersion = "6.2.8"
1114
libraryDependencies ++= Seq(
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
package de.upb.cs.swt.delphi.featuredefinitions
2+
3+
//Describes all relevant fields for conducting searches on this class
4+
case class FeatureDescription(fType: String)

0 commit comments

Comments
 (0)