FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

fix warning in build.sbt by xuwei-k · Pull Request #402 · msgpack/msgpack-java · GitHub

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension .sbt  (1) All 1 file type selected
Viewed files
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Unified
Split
Hide whitespace
Diff view
Unified
Split
Hide whitespace
4 changes: 2 additions & 2 deletions build.sbt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ val buildSettings = findbugsSettings ++ jacoco.settings ++ osgiSettings ++ Seq[S
jcheckStyleConfig := "facebook",

// Run jcheckstyle both for main and test codes
compile <<= (compile in Compile) dependsOn (jcheckStyle in Compile),
compile <<= (compile in Test) dependsOn (jcheckStyle in Test)
(compile in Compile) := ((compile in Compile) dependsOn (jcheckStyle in Compile)).value,
(compile in Test) := ((compile in Test) dependsOn (jcheckStyle in Test)).value
)

val junitInterface = "com.novocode" % "junit-interface" % "0.11" % "test"
Expand Down

Back | FazBrowse Home | New Git URL