Last active
May 24, 2022 18:28
-
-
Save peterkir/d7f8ed81efb5eaa30e582d2abfe9d258 to your computer and use it in GitHub Desktop.
ANT task for p2.process.artifacts - adding md5 and artifacts sizes to p2 repository
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<project name="project" default="p2-process-artifcats"> | |
<property name="p2.repo" value="file:///C:/tmp/161.1.9.RC0-20160407-200004" /> | |
<target name="p2-process-artifcats" description="adds md5 and artifacts sizes to p2 repository"> | |
<p2.process.artifacts repositorypath="${p2.repo}" /> | |
</target> | |
</project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi, I develop an Eclipse RCP Application and I need to add md5 and artifact sizes to my p2 repository, but I don't know how to do this. Where do you put this file? Or the target tag? Thanks in advance.