mirror of
https://github.com/gitpitch/gitpitch.git
synced 2024-04-18 07:30:55 +08:00
Add LauncherJarPlugin option to avoid long APP_CLASSPATH line. (#80)
In Windows, when running server.bat the following error message is seen: The input line is too long. The syntax of the command is incorrect. This error occurs because Windows has limit of around 8000 chars in one line. bin/server.bat has more long line for APP_CLASSPATH. This PR avoids APP_CLASSPATH problem by add LauncherJarPlugin option to sbt PlayScala plugin.
This commit is contained in:
parent
e823b278b9
commit
acca8a875c
|
@ -2,7 +2,7 @@ name := """server"""
|
||||||
version := "1.1"
|
version := "1.1"
|
||||||
organization := "com.gitpitch"
|
organization := "com.gitpitch"
|
||||||
|
|
||||||
lazy val root = (project in file(".")).enablePlugins(PlayJava)
|
lazy val root = (project in file(".")).enablePlugins(PlayJava, LauncherJarPlugin)
|
||||||
|
|
||||||
scalaVersion := "2.11.11"
|
scalaVersion := "2.11.11"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user