| <?xml version="1.0" encoding="UTF-8"?> |
| <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/xsd/maven-4.0.0.xsd"> |
| <modelVersion>4.0.0</modelVersion> |
| <groupId>org.eclipse.rcptt</groupId> |
| <artifactId>org.eclipse.rcptt.updates.kepler</artifactId> |
| <version>1.5.2-SNAPSHOT</version> |
| <packaging>pom</packaging> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.eclipse.tycho.extras</groupId> |
| <artifactId>tycho-p2-extras-plugin</artifactId> |
| <version>0.19.0</version> |
| <executions> |
| <execution> |
| <phase>prepare-package</phase> |
| <goals> |
| <goal>mirror</goal> |
| </goals> |
| </execution> |
| </executions> |
| <configuration> |
| <source> |
| <!-- source repositories to mirror from --> |
| <repository> |
| <!-- url>https://hudson.eclipse.org/hudson/job/emf-validation-kepler/lastSuccessfulBuild/artifact/update-site/</url --> |
| <id>emf</id> |
| <url></url> |
| <layout>p2</layout> |
| </repository> |
| <repository> |
| <!-- url>https://hudson.eclipse.org/hudson/job/emf-core-head/lastSuccessfulBuild/artifact/EMF.p2.repository/</url --> |
| <id>validation</id> |
| <url></url> |
| <layout>p2</layout> |
| </repository> |
| <repository> |
| <id>juno</id> |
| <url>http://download.eclipse.org/releases/juno</url> |
| <layout>p2</layout> |
| </repository> |
| </source> |
| |
| <!-- starting from here all configuration parameters are optional --> |
| <!-- they are only shown here with default values for documentation purpose --> |
| |
| <!-- List of IUs to mirror. If omitted, allIUs will be mirrored. --> |
| <!-- Omitted IU version element means latest version of the IU --> |
| <ius> |
| <iu><id>org.eclipse.emf.codegen.ecore.ui.feature.group</id></iu> |
| <iu><id>org.eclipse.emf.codegen.ecore.feature.group</id></iu> |
| <iu><id>org.eclipse.emf.codegen.ui.feature.group</id></iu> |
| <iu><id>org.eclipse.emf.codegen.feature.group</id></iu> |
| <iu><id>org.eclipse.emf.common.ui.feature.group</id></iu> |
| <iu><id>org.eclipse.emf.common.feature.group</id></iu> |
| <iu><id>org.eclipse.emf.converter.feature.group</id></iu> |
| <iu><id>org.eclipse.emf.databinding.edit.feature.group</id></iu> |
| <iu><id>org.eclipse.emf.databinding.feature.group</id></iu> |
| <iu><id>org.eclipse.emf.ecore.edit.feature.group</id></iu> |
| <iu><id>org.eclipse.emf.ecore.editor.feature.group</id></iu> |
| <iu><id>org.eclipse.emf.ecore.feature.group</id></iu> |
| <iu><id>org.eclipse.emf.edit.ui.feature.group</id></iu> |
| <iu><id>org.eclipse.emf.edit.feature.group</id></iu> |
| <iu><id>org.eclipse.emf.mapping.ecore.editor.feature.group</id></iu> |
| <iu><id>org.eclipse.emf.mapping.ecore.feature.group</id></iu> |
| <iu><id>org.eclipse.emf.mapping.ui.feature.group</id></iu> |
| <iu><id>org.eclipse.emf.mapping.feature.group</id></iu> |
| <iu><id>org.eclipse.emf.query.feature.group</id></iu> |
| <iu><id>org.eclipse.emf.feature.group</id></iu> |
| <iu><id>org.eclipse.emf.validation.feature.group</id></iu> |
| <iu><id>org.eclipse.emf.transaction.feature.group</id></iu> |
| <iu><id>org.eclipse.emf.workspace.feature.group</id></iu> |
| </ius> |
| <!-- The destination directory to mirror to. --> |
| <destination>${project.build.directory}/dependencies</destination> |
| <!-- Whether only strict dependencies should be followed. --> |
| <!-- "strict" means perfect version match --> |
| <followStrictOnly>true</followStrictOnly> |
| <!-- Whether or not to follow optional requirements. --> |
| <includeOptional>false</includeOptional> |
| <!-- Whether or not to follow non-greedy requirements. --> |
| <includeNonGreedy>false</includeNonGreedy> |
| <!-- include the latest version of each IU --> |
| <latestVersionOnly>true</latestVersionOnly> |
| <!-- don't mirror artifacts, only metadata --> |
| <mirrorMetadataOnly>false</mirrorMetadataOnly> |
| <!-- whether to compress the content.xml/artifacts.xml --> |
| <compress>true</compress> |
| <!-- whether to append to the target repository content --> |
| <append>true</append> |
| <!-- whether to mirror pack200 artifacts also. Available since tycho-extras 0.17.0 --> |
| <includePacked>true</includePacked> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| </project> |