birt home and runtime

3 views
Skip to first unread message

Francois Le Fevre

unread,
Nov 6, 2014, 3:27:08 AM11/6/14
to birt-mav...@googlegroups.com
Dear Birt Maven plugin community,

I am newbie to birt.
I have seen your plugin: cool!

I have a question, you have a parameter birthome  that is linked to an installation of BIRT.
I was wondering if it is possible to link directely to the birds runtime as a maven dependency?

The dependency for birds runtime.

It will be great if your plugin links to the birt runtime and not to the birt home !

By the way I am looking for a birt template for uml models...

Thanks a lot for your help.

Francois


While many artifacts from previous versions of BIRT have made it into a Maven repository, with this release of BIRT, the build process has modified to upload releases to the Sonatype repository. The BIRT runtime artifacts will be uploaded for each release of BIRT and will allow developers to integrate any of the BIRT engines into an existing Java application using Maven. Example POM entries are shown below.

<repository>
    <releases>
      <enabled>false</enabled>
    </releases>
    <snapshots>
      <enabled>true</enabled>
      <updatePolicy>daily</updatePolicy>
      <checksumPolicy>ignore</checksumPolicy>
    </snapshots>
    <id>sonatype-nexus-snapshots</id>
    <name>Sonatype Nexus Snapshots</name>
    <url>https://oss.sonatype.org/content/repositories/snapshots</url>
</repository>

<repository>
   <releases>
      <enabled>true</enabled>
   </releases>
   <snapshots>
      <enabled>false</enabled>
      <updatePolicy>daily</updatePolicy>
      <checksumPolicy>ignore</checksumPolicy>
   </snapshots>
   <id>sonatype-nexus-releases</id>
   <name>Sonatype Nexus Snapshots</name>
   <url>https://oss.sonatype.org/content/repositories/releases</url>
</repository>

<dependency>
    <groupId>org.eclipse.birt.runtime.3_7_1</groupId>
     <artifactId>org.eclipse.birt.runtime</artifactId>
     <version>3.7.1</version>
</dependency>

<dependency>
  <groupId>org.eclipse.birt.runtime</groupId>
  <artifactId>org.eclipse.birt.runtime</artifactId>
  <version>4.2.0.v20120605-1006-SNAPSHOT</version>
</dependency>  
Reply all
Reply to author
Forward
0 new messages