diff options
Diffstat (limited to 'buildScripts/p2/artifacts.xml')
-rw-r--r-- | buildScripts/p2/artifacts.xml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/buildScripts/p2/artifacts.xml b/buildScripts/p2/artifacts.xml new file mode 100644 index 00000000..e712e87a --- /dev/null +++ b/buildScripts/p2/artifacts.xml @@ -0,0 +1,26 @@ +<?xml version='1.0' encoding='UTF-8'?> +<?artifactRepository version='1.1.0'?> +<repository name='Exported Repository' type='org.eclipse.equinox.p2.artifact.repository.simpleRepository' version='1'> + <properties size='2'> + <property name='p2.timestamp' value='@EPOCH_MILLIS@'/> + <property name='p2.compressed' value='true'/> + </properties> + <mappings size='3'> + <rule filter='(& (classifier=osgi.bundle))' output='${repoUrl}/plugins/${id}_${version}.jar'/> + <rule filter='(& (classifier=binary))' output='${repoUrl}/binary/${id}_${version}'/> + <rule filter='(& (classifier=org.eclipse.update.feature))' output='${repoUrl}/features/${id}_${version}.jar'/> + </mappings> + <artifacts size='2'> + <artifact classifier='org.eclipse.update.feature' id='org.projectlombok.feature' version='@VERSION@'> + <properties size='2'> + <property name='download.contentType' value='application/zip'/> + <property name='download.size' value='@FEATURE_ZIP_SIZE@'/> + </properties> + </artifact> + <artifact classifier='osgi.bundle' id='org.projectlombok.agent' version='@VERSION@'> + <properties size='1'> + <property name='download.size' value='@AGENT_ZIP_SIZE@'/> + </properties> + </artifact> + </artifacts> +</repository> |