Skip to content

Commit

Permalink
No need for explicit scoping here.
Browse files Browse the repository at this point in the history
  • Loading branch information
gseitz committed Aug 15, 2011
1 parent 972657e commit b04fba8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/scala/sbtprotobuf/ProtobufPlugin.scala
Expand Up @@ -19,7 +19,7 @@ object ProtobufPlugin extends Plugin {

lazy val protobufSettings: Seq[Setting[_]] = inConfig(protobufConfig)(Seq[Setting[_]](
protoSource <<= (sourceDirectory in Compile) { _ / "protobuf" },
javaSource in protobufConfig <<= (sourceManaged in Compile) { _ / "compiled_protobuf" },
javaSource <<= (sourceManaged in Compile) { _ / "compiled_protobuf" },
externalIncludePath <<= target(_ / "protobuf_external"),
includePaths <<= (protoSource in protobufConfig)(identity(_) :: Nil),
includePaths <+= (externalIncludePath in protobufConfig).identity,
Expand Down

0 comments on commit b04fba8

Please sign in to comment.