@@ -5,6 +5,7 @@ import Keys._
55import SbtHelpers ._
66import PgpKeys ._
77import sbt .sbtpgp .Compat , Compat ._
8+ import sbtcompat .PluginCompat ._
89
910/**
1011 * SBT Settings for doing PGP security tasks. Signing, verifying, etc.
@@ -144,15 +145,15 @@ object PgpSettings {
144145 }).value,
145146 publishSignedConfiguration := {
146147 val _ = pgpMakeIvy.value
147- val c = fileConverter.value
148+ implicit val conv : xsbti. FileConverter = fileConverter.value
148149 Classpaths .publishConfig(
149150 publishMavenStyle.value,
150151 deliverPattern(crossTarget.value),
151152 if (isSnapshot.value) " integration" else " release" ,
152153 ivyConfigurations.value.map(c => ConfigRef (c.name)).toVector,
153154 PgpKeys .signedArtifacts.value.toVector.map {
154155 case (a, x) =>
155- a -> toFile(x, c )
156+ a -> toFile(x)
156157 },
157158 checksums = (publish / checksums).value.toVector,
158159 resolverName = Classpaths .getPublishTo(publishTo.value).name,
@@ -163,15 +164,15 @@ object PgpSettings {
163164 publishSigned := publishSignedTask(publishSignedConfiguration, deliver).value,
164165 publishLocalSignedConfiguration := {
165166 val _ = deliverLocal.value
166- val c = fileConverter.value
167+ implicit val conv : xsbti. FileConverter = fileConverter.value
167168 Classpaths .publishConfig(
168169 publishMavenStyle.value,
169170 deliverPattern(crossTarget.value),
170171 if (isSnapshot.value) " integration" else " release" ,
171172 ivyConfigurations.value.map(c => ConfigRef (c.name)).toVector,
172173 PgpKeys .signedArtifacts.value.toVector.map {
173174 case (a, x) =>
174- a -> toFile(x, c )
175+ a -> toFile(x)
175176 },
176177 (publishLocal / checksums).value.toVector,
177178 resolverName = " local" ,
0 commit comments