org.eclipse.birt.p2updatesite
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.reporting-solutions</groupId>
<artifactId>org.eclipse.birt.p2updatesite</artifactId>
<version>4.8.0</version>
</dependency><?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>io.github.reporting-solutions.build</groupId>
<artifactId>org.eclipse.birt.build-parent</artifactId>
<version>4.8.0</version>
<relativePath>..</relativePath>
</parent>
<groupId>io.github.reporting-solutions</groupId>
<artifactId>org.eclipse.birt.p2updatesite</artifactId>
<packaging>eclipse-repository</packaging>
<!-- http://codeandme.blogspot.com/2012/12/tycho-build-5-building-p2-update-sites.html -->
<build>
<extensions>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ssh</artifactId>
<version>1.0-beta-6</version>
</extension>
</extensions>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-p2-repository-plugin</artifactId>
<version>${tycho.version}</version>
<configuration>
<includeAllDependencies>false</includeAllDependencies>
</configuration>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-p2-director-plugin</artifactId>
<version>${tycho.version}</version>
<configuration>
<products>
<product>
<id>org.eclipse.birt.designer</id>
<rootFolder>designer</rootFolder>
</product>
</products>
</configuration>
<executions>
<execution>
<id>materialize-products</id>
<goals>
<goal>materialize-products</goal>
<goal>archive-products</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>deploy-update-site</id>
<!-- http://www.vogella.com/tutorials/EclipseTycho/article.html#deploy -->
<properties>
<!-- <birt-repository-url>birtdev/actu01/</birt-repository-url> -->
</properties>
<build>
<!-- Upload the repo to the server -->
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>wagon-maven-plugin</artifactId>
<version>1.0-beta-4</version>
<executions>
<execution>
<id>update-birt</id>
<phase>install</phase>
<goals>
<goal>upload</goal>
</goals>
<configuration>
<fromDir>./target/repository</fromDir>
<includes>**</includes>
<url>${birt-repository-url}</url>
<serverId>birt-repository</serverId>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>