We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 605d217 commit 9748a2fCopy full SHA for 9748a2f
build.sbt
@@ -6,7 +6,7 @@ sonatypeProfileName := "com.thesamet"
6
7
sonatypeBundleDirectory := (ThisBuild / baseDirectory).value / "target" / "sonatype-staging"
8
9
-skip in publish := true
+publish / skip := true
10
11
/* Skipping common protos due to https://github.com/googleapis/api-common-protos/issues/83
12
def commonProtos =
project/BuildHelpers.scala
@@ -60,11 +60,11 @@ final case class ProtosProject(
60
"sh",
61
"unix"
62
)),
63
- PB.targets in Compile := Seq(
+ Compile / PB.targets := Seq(
64
(
65
PB.gens.plugin("scala"),
66
Seq("java_conversions")
67
- ) -> (sourceManaged in Compile).value / "protobuf"
+ ) -> (Compile / sourceManaged).value / "protobuf"
68
),
69
createTags := createTagsImpl.value,
70
publish / skip := (sys.env
0 commit comments