Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [cbi-dev] slicing up the main repo using tycho-p2-extras-plugin

On Tue, Nov 27, 2012 at 1:14 PM, Mickael Istria <mistria@xxxxxxxxxx> wrote:
You can generally specify multiple executions of a plugin:
<executions>
  <execution>
    <phase>prepare-package</phase>
    <goals>
      <goal>mirror-first</goal>
    </goals>
    <configuration>
      <repository>
        <url>a/repo</url>
        <layout>p2</layout>
      </repository>
      ...
    </configuration>
  </execution>
  <execution>
    <phase>prepare-package</phase>
    <goals>
      <goal>mirror-second</goal>
    </goals>
    <configuration>
      <repository>
        <url>another/repo</url>
        <layout>p2</layout>
      </repository>
      ...
    </configuration>
  </execution>
  ...
</executions>


Thanks, creating multiple execution elements worked.  The goal had to remain mirror, and then I added an execution/id element to distinguish them.

Later,
PW

--
Paul Webster
Hi floor.  Make me a sammich! - GIR

Back to the top