summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaphael Jolly <rjolly@users.sourceforge.net>2016-09-16 21:01:02 +0200
committerRaphael Jolly <rjolly@users.sourceforge.net>2016-09-16 21:01:02 +0200
commit51540c823ae85a7ec9c1400f3756701210269eae (patch)
tree9e09ecabc8a730bee4f52c0ddd7e6cdca3729634
parentde7cddd1905c730685f5ef2b74a6c0c1f30f2dd2 (diff)
downloadscala-51540c823ae85a7ec9c1400f3756701210269eae.tar.gz
scala-51540c823ae85a7ec9c1400f3756701210269eae.tar.bz2
scala-51540c823ae85a7ec9c1400f3756701210269eae.zip
Fixed reference to script engine factory in META-INF/services
-rw-r--r--build.sbt2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.sbt b/build.sbt
index 1105902a9d..f6ddd9d7df 100644
--- a/build.sbt
+++ b/build.sbt
@@ -406,7 +406,7 @@ lazy val compiler = configureAsSubproject(project)
),
// Generate the ScriptEngineFactory service definition. The Ant build does this when building
// the JAR but sbt has no support for it and it is easier to do as a resource generator:
- generateServiceProviderResources("javax.script.ScriptEngineFactory" -> "scala.tools.nsc.interpreter.IMain$Factory"),
+ generateServiceProviderResources("javax.script.ScriptEngineFactory" -> "scala.tools.nsc.interpreter.Scripted$Factory"),
managedResourceDirectories in Compile := Seq((resourceManaged in Compile).value),
fixPom(
"/project/name" -> <name>Scala Compiler</name>,