birt-wtp-integration-sdk
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.reporting-solutions</groupId> <artifactId>birt-wtp-integration-sdk</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.package</groupId> <artifactId>org.eclipse.birt.build.package-parent</artifactId> <version>4.8.0</version> <relativePath>..</relativePath> </parent> <groupId>io.github.reporting-solutions</groupId> <artifactId>birt-wtp-integration-sdk</artifactId> <packaging>eclipse-repository</packaging> <build> <plugins> <plugin> <groupId>org.eclipse.tycho</groupId> <artifactId>tycho-p2-repository-plugin</artifactId> <version>${tycho.version}</version> <configuration> <includeAllDependencies>false</includeAllDependencies> </configuration> </plugin> <!-- Repackage --> <plugin> <artifactId>maven-antrun-plugin</artifactId> <version>${antrun.version}</version> <executions> <execution> <id>re-package</id> <phase>package</phase> <configuration> <tasks> <copy todir="target/eclipse"> <!-- features/plugins dir --> <fileset dir="target/repository" includes="*/*" /> <!-- html files --> <fileset dir="../../org.eclipse.birt.releng.birtbuilder/extras/root/rootfiles" includes="*.html" /> </copy> <zip destfile="target/${project.artifactId}-${birt.version}-${maven.build.timestamp}.zip" basedir="target/eclipse" /> <delete dir="target/eclipse" /> <attachartifact file="./target/${project.artifactId}-${birt.version}-${maven.build.timestamp}.zip" type="zip"/> </tasks> </configuration> <goals> <goal>run</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>