Skip to content

Commit fd60cac

Browse files
exclude sources.jar and javadoc.jar from server
1 parent 8a40916 commit fd60cac

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.azure-pipelines/rc.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,13 @@ extends:
6363
SourceFolder: '$(System.ArtifactsDirectory)/m2/com.microsoft.java.debug.plugin'
6464
Contents: |
6565
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
6866
TargetFolder: $(Build.SourcesDirectory)/server
67+
- task: CmdLine@2
68+
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
6973
- task: Npm@1
7074
displayName: npm install
7175
inputs:

0 commit comments

Comments
 (0)