blob: de8ee81b55e5f7d0d1226d0a933a50ee48078ebb [file] [log] [blame]
<?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>
<parent>
<groupId>sca2amalthea</groupId>
<artifactId>parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<groupId>sca2amalthea</groupId>
<artifactId>org.eclipse.app4mc.sca2amalthea.headless.product</artifactId>
<packaging>eclipse-repository</packaging>
<version>1.0.0-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-p2-repository-plugin</artifactId>
<version>${tycho.version}</version>
<configuration>
<includeAllDependencies>true</includeAllDependencies>
</configuration>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-p2-director-plugin</artifactId>
<version>${tycho.version}</version>
<executions>
<execution>
<id>materialize-products</id>
<goals>
<goal>materialize-products</goal>
</goals>
</execution>
<execution>
<id>archive-products</id>
<goals>
<goal>archive-products</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>biz.aQute.bnd</groupId>
<artifactId>bnd-indexer-maven-plugin</artifactId>
<version>4.3.1</version>
<configuration>
<inputDir>${project.build.directory}/repository/plugins/</inputDir>
</configuration>
<executions>
<execution>
<phase>package</phase>
<id>index</id>
<goals>
<goal>local-index</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- <plugin>
<groupId>biz.aQute.bnd</groupId>
<artifactId>bnd-resolver-maven-plugin</artifactId>
<version>4.3.1</version>
<configuration>
<failOnChanges>false</failOnChanges>
<bndruns>
<bndrun>sca.bndrun</bndrun>
</bndruns>
<bundles>
<include>target/repository/plugins/*</include>
</bundles>
</configuration>
<executions>
<execution>
<goals>
<goal>resolve</goal>
</goals>
</execution>
</executions>
</plugin>-->
<plugin>
<groupId>biz.aQute.bnd</groupId>
<artifactId>bnd-export-maven-plugin</artifactId>
<version>4.3.1</version>
<configuration>
<failOnChanges>false</failOnChanges>
<bndruns>
<bndrun>sca.bndrun</bndrun>
</bndruns>
<bundles>
<include>target/repository/plugins/*</include>
</bundles>
</configuration>
<executions>
<execution>
<goals>
<goal>export</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>