blob: e11bd9c9f9332686b7529f19c4dedb9a08f81033 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2014 IBM Corporation, and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Distribution License v1.0
which accompanies this distribution, and is available at
https://www.eclipse.org/org/documents/edl-v10.php
Contributors:
David Williams - initial implementation
The "equinox-sdk.project" is merely a convenient way to provide
the equinox-SDK zip file, for download from Equinox page.
The "product" is not intended to be used as a "product" and is
not intended to be part of the repository. Adopters are encouraged
to use the individual features this product collects together (or some
sub-set of them) for use in products).
-->
<project
xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>eclipse.platform.releng.tychoeclipsebuilder</groupId>
<artifactId>eclipse.platform.releng.tychoeclipsebuilder</artifactId>
<version>4.23.0-SNAPSHOT</version>
</parent>
<artifactId>equinox-sdk</artifactId>
<packaging>eclipse-repository</packaging>
<!--
resulting repository is zipped into equinox.sdk-3.9.0-SNAPSHOT.zip, under
...eclipse.platform.releng.tychoeclipsebuilder/equinox.sdk/target/
-->
<build>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-p2-repository-plugin</artifactId>
<configuration>
<includeAllDependencies>false</includeAllDependencies>
<compress>false</compress>
<name>Eclipse Equinox and p2 runtime target repository</name>
</configuration>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-packaging-plugin</artifactId>
<configuration>
<format>'${buildId}'</format>
</configuration>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>target-platform-configuration</artifactId>
<configuration>
<strictBinIncludes>true</strictBinIncludes>
<includePackedArtifacts>false</includePackedArtifacts>
<sourceReferences>
<generate>true</generate>
</sourceReferences>
</configuration>
</plugin>
</plugins>
</build>
</project>