2010-08-25 12 views

risposta

5

Ci sto lavorando. Vedere il mio blog for progress o provare il primo RC a http://maven.eclipse.org/nexus/content/repositories/testing/.

Il progetto viene fornito con un set di tools to convert Eclipse bundles into Maven artifacts.

+0

ho alcune importazioni per org.eclipse.birt.report.engine.api. * ho aggiunto la dipendenza per org.eclipse.birt.report.engine, e non ha le classi API in esso. Forse l'engineapi.jar di birt non fa parte di questo. Dovrebbe essere? –

+1

Sì; Ho aperto un nuovo bug per tenere traccia di questo: https://bugs.eclipse.org/bugs/show_bug.cgi?id=357598 –

2

No, non ce n'è. Nel nostro progetto abbiamo semplicemente scaricato BIRT runtime e installato tutti gli artefatti necessari nel nostro repository centrale, e tutti lo fanno riferimento.

1

Eppure non ho trovato alcun repository Maven per recuperare tutte le dipendenze BIRT, ma sto usando un metodo per recuperare le dipendenze BIRT configurando le proprietà Maven in pom.xml come segue, per favore usa questo URL per maggiori dettagli http://eclipse.dzone.com/tips/birt-maven

<properties> 
    <birt.runtime.location>/home/channa/Desktop/birt-runtime-2_6_1/WebViewerExample</birt.runtime.location> 
    <birt.runtime.libs>${birt.runtime.location}/WEB-INF/lib</birt.runtime.libs> 
    <birt.runtime.platform>${birt.runtime.location}/WEB-INF/platform</birt.runtime.platform> 
    <birt.runtime.version>2.6.1</birt.runtime.version> 
</properties> 

<!-- BIRT runtime 2.6.1 related dependencies --> 
<dependency> 
    <groupId>org.eclipse.birt</groupId> 
    <artifactId>axis</artifactId> 
    <version>${birt.runtime.version}</version> 
    <scope>system</scope> 
    <systemPath>${birt.runtime.libs}/axis.jar 
    </systemPath> 
</dependency> 
Problemi correlati