Skip to content

Commit

Permalink
Merge pull request #112 from lightbend/wip/encoding
Browse files Browse the repository at this point in the history
-Dfile.encoding=UTF8
  • Loading branch information
eed3si9n authored May 8, 2017
2 parents 4238a3e + f697b68 commit 0c84975
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ install:
[System.IO.Compression.ZipFile]::ExtractToDirectory("C:\sbt-bin.zip", "C:\sbt")
}
- cmd: SET PATH=C:\sbt\sbt\bin;%JAVA_HOME%\bin;%PATH%
- cmd: SET SBT_OPTS=-XX:MaxPermSize=2g -Xmx4g
- cmd: SET SBT_OPTS=-XX:MaxPermSize=2g -Xmx4g -Dfile.encoding=UTF8
build_script:
- sbt clean compile
test_script:
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ lazy val plugin = project
scriptedSettings,
scriptedLaunchOpts += ("-Dproject.version=" + version.value),
scriptedLaunchOpts ++= sys.process.javaVmArguments.filter(
a => Seq("-Xmx", "-Xms", "-XX").exists(a.startsWith)
a => Seq("-Xmx", "-Xms", "-XX", "-Dfile").exists(a.startsWith)
),
scriptedDependencies := {
val p1 = (publishLocal in core).value
Expand Down

0 comments on commit 0c84975

Please sign in to comment.