Skip to content

Commit 33d6349

Browse files
committed
Added feature endpoint.
Note that it requires features to be mapped to feature descriptions to return them, and currently no features are mapped so no features are returned.
1 parent 25ad362 commit 33d6349

File tree

5 files changed

+421
-2
lines changed

5 files changed

+421
-2
lines changed

build.sbt

+3
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(
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)