summaryrefslogtreecommitdiff
path: root/src/partest
diff options
context:
space:
mode:
authorAdriaan Moors <adriaan.moors@typesafe.com>2013-07-09 11:54:40 -0700
committerAdriaan Moors <adriaan.moors@typesafe.com>2013-07-09 11:54:40 -0700
commit414318927dcdf1d151643da0940bf5bb0d8368f3 (patch)
treed9d249751b32ad12d41336835e1d52642a33ad09 /src/partest
parent72863241ead712ace45071a21b84288959f6ce53 (diff)
parenta07879dbc643f362ed86fe764f6386f160d75aaa (diff)
downloadscala-414318927dcdf1d151643da0940bf5bb0d8368f3.tar.gz
scala-414318927dcdf1d151643da0940bf5bb0d8368f3.tar.bz2
scala-414318927dcdf1d151643da0940bf5bb0d8368f3.zip
Merge pull request #2704 from adriaanm/modularize
Separate jars for XML, Parser Combinators. Use released JLine.
Diffstat (limited to 'src/partest')
-rw-r--r--src/partest/scala/tools/partest/nest/FileManager.scala4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/partest/scala/tools/partest/nest/FileManager.scala b/src/partest/scala/tools/partest/nest/FileManager.scala
index 230ada4803..7bfa8c6e77 100644
--- a/src/partest/scala/tools/partest/nest/FileManager.scala
+++ b/src/partest/scala/tools/partest/nest/FileManager.scala
@@ -68,12 +68,14 @@ trait FileManager extends FileUtil {
else
(SFile(LATEST_LIB).parent.parent / "classes" / what).toAbsolute.path
}
+ def latestParserCBLib = relativeToLibrary("parser-combinators")
+ def latestXmlLib = relativeToLibrary("xml")
def latestScaladoc = relativeToLibrary("scaladoc")
def latestInteractive = relativeToLibrary("interactive")
def latestScalapFile = relativeToLibrary("scalap")
def latestPaths = List(
LATEST_LIB, LATEST_REFLECT, LATEST_COMP, LATEST_PARTEST, LATEST_ACTORS,
- latestScalapFile, latestScaladoc, latestInteractive
+ latestParserCBLib, latestXmlLib, latestScalapFile, latestScaladoc, latestInteractive
)
def latestFiles = latestPaths map (p => new java.io.File(p))
def latestUrls = latestFiles map (_.toURI.toURL)