From 06d29fa0591d80715a9f62fb6d21cea03d86fda7 Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Mon, 28 Jul 2025 11:00:36 -0700 Subject: [PATCH] Remove SBT build files. Maven is the main way to build the project, let's avoid confusion. Closes #184. --- build.sbt | 17 ----------------- project/plugins.sbt | 1 - 2 files changed, 18 deletions(-) delete mode 100644 build.sbt delete mode 100644 project/plugins.sbt diff --git a/build.sbt b/build.sbt deleted file mode 100644 index 917e4cb..0000000 --- a/build.sbt +++ /dev/null @@ -1,17 +0,0 @@ -seq(samskivert.POMUtil.pomToSettings("pom.xml") :_*) - -crossPaths := false - -javacOptions ++= Seq( - "-Xlint", "-Xlint:-serial", "-source", "1.6", "-target", "1.6" -) - -autoScalaLibrary := false // no scala-library dependency - -libraryDependencies += "com.novocode" % "junit-interface" % "0.7" % "test->default" - -// filter the super-source directory from the build -unmanagedSources in Compile ~= (_.filterNot(_.getPath.indexOf("com/samskivert/gwt") != -1)) - -// add our sources to the main jar file (including super-sources) -unmanagedResourceDirectories in Compile <+= baseDirectory / "src/main/java" diff --git a/project/plugins.sbt b/project/plugins.sbt deleted file mode 100644 index ad98851..0000000 --- a/project/plugins.sbt +++ /dev/null @@ -1 +0,0 @@ -libraryDependencies += "com.samskivert" % "sbt-pom-util" % "0.6"