birt-report-all-in-one
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.eclipse.birt</groupId> <artifactId>birt-report-all-in-one</artifactId> <version>4.9.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ******************************************************************************* * Copyright (c) 2021 Contributors to the Eclipse Foundation * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License 2.0 which is available at * https://www.eclipse.org/legal/epl-2.0/. * * SPDX-License-Identifier: EPL-2.0 * * Contributors: * See git history ******************************************************************************* --> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.eclipse.birt.build.package</groupId> <artifactId>org.eclipse.birt.build.package-parent</artifactId> <version>4.9.0</version> <relativePath>../</relativePath> </parent> <groupId>org.eclipse.birt</groupId> <artifactId>birt-report-all-in-one</artifactId> <packaging>eclipse-repository</packaging> <repositories> <repository> <id>mylyn</id> <url>http://download.eclipse.org/mylyn/releases/latest</url> <layout>p2</layout> </repository> </repositories> <profiles> <profile> <id>build-server</id> <build> <plugins> <plugin> <groupId>org.eclipse.cbi.maven.plugins</groupId> <artifactId>eclipse-winsigner-plugin</artifactId> <version>${cbi-version}</version> <executions> <execution> <id>sign</id> <goals> <goal>sign</goal> </goals> <phase>package</phase> <configuration> <signFiles> <signFile>${project.build.directory}/products/org.eclipse.birt.report.designer.all/win32/win32/x86_64/eclipse/birt.exe</signFile> <signFile>${project.build.directory}/products/org.eclipse.birt.report.designer.all/win32/win32/x86_64/eclipse/birtc.exe</signFile> <signFile>${project.build.directory}/products/org.eclipse.birt.report.designer.all/win32/win32/x86_64/eclipse/eclipse.exe</signFile> <signFile>${project.build.directory}/products/org.eclipse.birt.report.designer.all/win32/win32/x86_64/eclipse/eclipsec.exe</signFile> </signFiles> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <build> <pluginManagement> <plugins> <plugin> <groupId>org.eclipse.tycho</groupId> <artifactId>tycho-maven-plugin</artifactId> <version>${tycho.version}</version> <extensions>true</extensions> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.eclipse.tycho</groupId> <artifactId>tycho-p2-director-plugin</artifactId> <version>${tycho.version}</version> <executions> <execution> <id>create-product-distributions</id> <goals> <goal>materialize-products</goal> <goal>archive-products</goal> </goals> </execution> </executions> <configuration> <products> <product> <id>org.eclipse.birt.report.designer.all</id> <archiveFileName>birt-report-designer-all-in-one-${birt.version}-${maven.build.timestamp}</archiveFileName> <rootFolder>eclipse</rootFolder> </product> </products> </configuration> </plugin> <plugin> <groupId>org.eclipse.tycho</groupId> <artifactId>tycho-maven-plugin</artifactId> <extensions>true</extensions> </plugin> </plugins> </build> </project>