diff --git a/build.sbt b/build.sbt
deleted file mode 100644
index a221718800e1..000000000000
--- a/build.sbt
+++ /dev/null
@@ -1,137 +0,0 @@
-import xml.Group
-import AssemblyKeys._
-
-organization := "com.wordnik"
-
-name := "swagger-codegen"
-
-version := "2.0.18-SNAPSHOT"
-
-crossVersion := CrossVersion.full
-
-javacOptions ++= Seq("-target", "1.6", "-source", "1.6", "-Xlint:unchecked", "-Xlint:deprecation")
-
-scalacOptions ++= Seq("-optimize", "-unchecked", "-deprecation", "-Xcheckinit", "-encoding", "utf8")
-
-crossScalaVersions := Seq("2.10.4", "2.11.0", "2.11.1")
-
-scalaVersion := "2.10.4"
-
-libraryDependencies ++= Seq(
- "org.json4s" %% "json4s-jackson" % "3.2.10",
- "io.backchat.inflector" %% "scala-inflector" % "1.3.5",
- "commons-io" % "commons-io" % "2.3",
- "net.iharder" % "base64" % "2.3.8",
- "ch.qos.logback" % "logback-classic" % "1.0.13" % "provided",
- "org.rogach" %% "scallop" % "0.9.5",
- "junit" % "junit" % "4.11" % "test",
- "org.scalatest" %% "scalatest" % "2.1.7" % "test"
-)
-
-libraryDependencies <+= scalaVersion {
- case v if v.startsWith("2.9") =>
- "org.fusesource.scalate" % "scalate-core_2.9" % "1.6.1"
- case v if v.startsWith("2.10") =>
- "org.scalatra.scalate" %% "scalate-core" % "1.7.0"
- case v if v.startsWith("2.11") =>
- "org.scalatra.scalate" %% "scalate-core" % "1.7.0"
-}
-
-libraryDependencies ++= {
- scalaVersion.toString match {
- case v if v.startsWith("2.10") || v.startsWith("2.11") => Seq("org.scala-lang" % "scala-reflect" % v)
- case _ => Seq()
- }
-}
-
-resolvers += "Typesafe releases" at "http://repo.typesafe.com/typesafe/releases"
-
-packageOptions <+= (name, version, organization) map {
- (title, version, vendor) =>
- Package.ManifestAttributes(
- "Created-By" -> "Simple Build Tool",
- "Built-By" -> System.getProperty("user.name"),
- "Build-Jdk" -> System.getProperty("java.version"),
- "Specification-Title" -> title,
- "Specification-Version" -> version,
- "Specification-Vendor" -> vendor,
- "Implementation-Title" -> title,
- "Implementation-Version" -> version,
- "Implementation-Vendor-Id" -> vendor,
- "Implementation-Vendor" -> vendor
- )
-}
-
-publishTo <<= (version) { version: String =>
- if (version.trim.endsWith("SNAPSHOT"))
- Some("Sonatype Nexus Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots")
- else
- Some("Sonatype Nexus Releases" at "https://oss.sonatype.org/service/local/staging/deploy/maven2")
-}
-
-// publishTo := Some(Resolver.file("file", new File(Path.userHome.absolutePath+"/.m2/repository")))
-
-artifact in (Compile, assembly) ~= { art =>
- art.copy(`classifier` = Some("assembly"))
-}
-
-addArtifact(artifact in (Compile, assembly), assembly)
-
-publishMavenStyle := true
-
-publishArtifact in Test := false
-
-pomIncludeRepository := { x => false }
-
-credentials += Credentials(Path.userHome / ".ivy2" / ".credentials")
-
-homepage := Some(new URL("https://github.com/wordnik/swagger-codegen"))
-
-parallelExecution in Test := false
-
-startYear := Some(2009)
-
-licenses := Seq(("Apache License 2.0", new URL("http://www.apache.org/licenses/LICENSE-2.0.html")))
-
-pomExtra <<= (pomExtra, name, description) {(pom, name, desc) => pom ++ Group(
-
post: /userpost: /user/createWithArraypost: /user/createWithListget: /user/loginget: /user/logoutget: /user/{username}put: /user/{username}delete: /user/{username}get: /store/inventorypost: /store/orderget: /store/order/{orderId}delete: /store/order/{orderId}put: /petpost: /petget: /pet/findByStatusget: /pet/findByTagsget: /pet/{petId}post: /pet/{petId}delete: /pet/{petId}post: /pet/{petId}/uploadImage