Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Archived » BIRT » BIRT Runtime 4.7.0 Release Build download Availability(BIRT Runtime 4.7.0 Release Build download Availability)
BIRT Runtime 4.7.0 Release Build download Availability [message #1768157] Fri, 14 July 2017 08:39 Go to next message
prasad Kulkarni is currently offline prasad KulkarniFriend
Messages: 2
Registered: July 2017
Location: Pune
Junior Member
Hi ,
I m upgrading BIRT runtime to 4.7.0.
Found that BIRT runtime 4.7.0 release date is 28th June 2017,
but the Maven dependency is not available for 4.7.0 release,
also on the official BIRT site there is no release build 4.7.0 available to download,

Can anyone please confirm , when is the BIRT 4.7.0 available to download?

Thanks,
Prasad Kulkarni.
Re: BIRT Runtime 4.7.0 Release Build download Availability [message #1769115 is a reply to message #1768157] Wed, 26 July 2017 16:22 Go to previous messageGo to next message
Silvana Sadewasser is currently offline Silvana SadewasserFriend
Messages: 1
Registered: July 2009
Junior Member
Hello,

we have the same concerns.

When will version 4.7.0 of the BIRT runtime be deployed in Maven Central?

When will the BIRT project page be updated with the downloads for version 4.7.0?

Regards
Silvana
Re: BIRT Runtime 4.7.0 Release Build download Availability [message #1769335 is a reply to message #1769115] Sun, 30 July 2017 00:19 Go to previous messageGo to next message
Doug Averch is currently offline Doug AverchFriend
Messages: 11
Registered: July 2017
Junior Member
I found the BIRT runtime version here:
http://download.eclipse.org/birt/downloads/build.php?build=M-R1-4.7.0RC4-201706142203
Re: BIRT Runtime 4.7.0 Release Build download Availability [message #1769640 is a reply to message #1769335] Wed, 02 August 2017 11:09 Go to previous messageGo to next message
prasad Kulkarni is currently offline prasad KulkarniFriend
Messages: 2
Registered: July 2017
Location: Pune
Junior Member
I think this is the RC build, not release / Stable build.
:)
Re: BIRT Runtime 4.7.0 Release Build download Availability [message #1790901 is a reply to message #1769115] Tue, 19 June 2018 22:42 Go to previous message
Andrew Sleeman is currently offline Andrew SleemanFriend
Messages: 1
Registered: June 2018
Junior Member
I cannot answer the question but I have just worked around the runtime not being as a maven dependancy.

NB. Again I am not saying this is the right-way or even a good-way but in the absense of better information this is how I solved building a web application using [/b]maven[b] that includes the birt-runtime.

The project I am working on is a vaadin project and starting with the standard vaadin maven file I made the following extension.

Step 1. Download the birt-runtime zip file, eg. birt-runtime-4_7_0.zip

Step 2. Added the file as a binary file into to project source, eg. Resources/birt-runtime-4_7_0.zip

Step 3. Add property definitions:
<birt-version>birt-runtime-4_7_0</birt-version>
<birt-zip-file>Resources/${birt-version}.zip</birt-zip-file>
<birt-unzip-dir>target/birt-unzip/${birt-version}</birt-unzip-dir>
<birt-lib-dir>${birt-unzip-dir}/ReportEngine/lib</birt-lib-dir>

Step 4. Add an maven-antrun-plugin to unwrap the zip file.
<plugins>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<phase>compile</phase>
<configuration>
<tasks>
<unzip src="${birt-zip-file}" dest="${birt-unzip-dir}" />
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>


Step 4 Extend the maven-war-plugin to include the birt-lib jars into the project war buildspace.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.6</version>
<configuration>
<failOnMissingWebXml>false</failOnMissingWebXml>
<!-- Exclude an unnecessary file generated by the GWT compiler. -->
<packagingExcludes>WEB-INF/classes/VAADIN/widgetsets/WEB-INF/**</packagingExcludes>
<webResources>
<resource>
<directory>${birt-lib-dir}</directory>
<targetPath>WEB-INF/lib</targetPath>
</resource>

<resource>
<directory>WebContent/WEB-INF/lib</directory>
<targetPath>WEB-INF/lib</targetPath>
</resource>
</webResources>
</configuration>
</plugin>
Previous Topic:Birt report is freezing when i try edit dataset
Next Topic:Repeat Template Content
Goto Forum:
  


Current Time: Fri Mar 29 04:58:43 GMT 2024

Powered by FUDForum. Page generated in 0.03317 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top