We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a40916 commit fd60cacCopy full SHA for fd60cac
.azure-pipelines/rc.yml
@@ -63,9 +63,13 @@ extends:
63
SourceFolder: '$(System.ArtifactsDirectory)/m2/com.microsoft.java.debug.plugin'
64
Contents: |
65
com.microsoft.java.debug.plugin-*.jar
66
- !com.microsoft.java.debug.plugin-*-sources.jar # Exclude sources jar
67
- !com.microsoft.java.debug.plugin-*-javadoc.jar # Exclude javadoc jar
68
TargetFolder: $(Build.SourcesDirectory)/server
+ - task: CmdLine@2
+ displayName: Delete sources.jar and javadoc.jar from server
69
+ inputs:
70
+ script: |
71
+ del server\com.microsoft.java.debug.plugin-*-sources.jar
72
+ del server\com.microsoft.java.debug.plugin-*-javadoc.jar
73
- task: Npm@1
74
displayName: npm install
75
inputs:
0 commit comments