summaryrefslogtreecommitdiff
path: root/src/jline/project/build
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2011-01-21 18:40:25 +0000
committerPaul Phillips <paulp@improving.org>2011-01-21 18:40:25 +0000
commit45580f1562b52abbb3022354a90c27bacc76a67f (patch)
treee4fae72fa9b3d145b05fdcfe8308245036358d27 /src/jline/project/build
parent3ca75587df0db94bc4f1a220af93eea35b2828d8 (diff)
downloadscala-45580f1562b52abbb3022354a90c27bacc76a67f.tar.gz
scala-45580f1562b52abbb3022354a90c27bacc76a67f.tar.bz2
scala-45580f1562b52abbb3022354a90c27bacc76a67f.zip
Updated to new jline sources with it moved into...
Updated to new jline sources with it moved into scala.tools.jline. I transitioned the jline build from maven to sbt, and this commit includes the first sbt-built binary. Review by jsuereth.
Diffstat (limited to 'src/jline/project/build')
-rw-r--r--src/jline/project/build/JlineProject.scala33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/jline/project/build/JlineProject.scala b/src/jline/project/build/JlineProject.scala
new file mode 100644
index 0000000000..721cf607d3
--- /dev/null
+++ b/src/jline/project/build/JlineProject.scala
@@ -0,0 +1,33 @@
+import sbt._
+
+/** I'm sure much of this is done the hard way, but it's done!
+ */
+class JlineProject(info: ProjectInfo) extends DefaultProject(info) with ProguardProject {
+ val snapShots = "Snapshots" at "http://scala-tools.org/repo-snapshots/"
+ val jansi = "org.fusesource.jansi" % "jansi" % "1.4"
+ val junitInterface = "com.novocode" % "junit-interface" % "0.5" % "test->default"
+
+ // val junit = "junit" % "junit" % "4.8.1" % "test"
+ // lazy val jansiPath = (managedDependencyPath / "compile" ** "jansi*").get.toList.head.absolutePath
+
+ override def makeInJarFilter(file: String) = {
+ if (!file.startsWith("jansi")) super.makeInJarFilter(file)
+ else List(
+ "!META-INF/MANIFEST.MF",
+ "org/fusesource/hawtjni/runtime",
+ "org/fusesource/hawtjni/runtime/Callback.class",
+ "org/fusesource/hawtjni/runtime/Library.class",
+ "!org/fusesource/hawtjni/**",
+ "!META-INF/maven/org.fusesource.hawtjni",
+ "!META-INF/maven/org.fusesource.jansi",
+ "!META-INF/maven/org.fusesource.hawtjni/**",
+ "!META-INF/maven/org.fusesource.jansi/**"
+ ) mkString ", "
+ }
+
+ override def proguardOptions = List(
+ "-dontshrink",
+ "-keep class *",
+ "-keepdirectories"
+ )
+}