Skip to main content
summaryrefslogblamecommitdiffstats
blob: 39b0f04365446f902270563b692ceb6cd154a33d (plain) (tree)







































                                                                                                           
<?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>
	<name>CodeCompansator - application product</name>
	<groupId>org.eclipse.fx.code.compensator</groupId>
	<artifactId>org.eclipse.fx.code.compensator.app.product</artifactId>
	<packaging>eclipse-repository</packaging>

	<parent>
		<groupId>org.eclipse.fx.code.compensator</groupId>
		<artifactId>org.eclipse.fx.code.compensator.app.releng</artifactId>
		<relativePath>../org.eclipse.fx.code.compensator.app.releng/pom.xml</relativePath>
		<version>1.0.0-SNAPSHOT</version>
	</parent>
	
	<build>
  	<plugins>
    	<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>
	</plugins>
	</build>
</project>

Back to the top