File tree 2 files changed +4
-5
lines changed
src/SignalR/clients/java/signalr 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change 69
69
<Exec Command =" npm $(NpmTestArgs)" IgnoreStandardErrorWarningFormat =" true" />
70
70
</Target >
71
71
72
- <Target Name =" GetArtifactInfo" Condition =" '$(IsPackable)' == 'true'" >
72
+ <Target Name =" GetArtifactInfo" Condition =" '$(IsPackable)' == 'true'" Returns = " @(ArtifactInfo) " >
73
73
<ItemGroup >
74
74
<ArtifactInfo Include =" $(TargetPath)" >
75
75
<ArtifactType >NpmPackage</ArtifactType >
Original file line number Diff line number Diff line change 53
53
<Exec Command="./gradlew $(GradleOptions) test" IgnoreStandardErrorWarningFormat="true" />
54
54
</Target>
55
55
56
- <Target Name="GetArtifactInfo" Condition="'$(IsPackable)' == 'true' ">
56
+ <Target Name="GetArtifactInfo" Condition="'$(IsPackable)' == 'true' " Returns="@(ArtifactInfo)" >
57
57
<ItemGroup>
58
58
<ArtifactInfo Include="$(PackageOutputPath)%(Jars.Identity)">
59
59
<ArtifactType>JavaJar</ArtifactType>
60
60
<Version>$(PackageVersion)</Version>
61
61
<Category>ship</Category>
62
+ <ShouldBeSigned>true</ShouldBeSigned>
63
+ <Certificate>$(JarSigningCertName)</Certificate>
62
64
</ArtifactInfo>
63
65
<ArtifactInfo Include="$(PackageOutputPath)%(PomFile.Identity)">
64
66
<ArtifactType>MavenPOM</ArtifactType>
65
67
<Version>$(PackageVersion)</Version>
66
68
<Category>ship</Category>
67
69
</ArtifactInfo>
68
-
69
- <FilesToSign Include="$(PackageOutputPath)%(Jars.Identity)" Certificate="$(JarSigningCertName)" />
70
- <FilesToExcludeFromSigning Include="$(PackageOutputPath)%(PomFile.Identity)" />
71
70
</ItemGroup>
72
71
</Target>
73
72
You can’t perform that action at this time.
0 commit comments