2010-08-25 96 views

回答

5

我正在處理它。看到我的blog for progress或嘗試第一個RC在http://maven.eclipse.org/nexus/content/repositories/testing/

該項目還配備了一套tools to convert Eclipse bundles into Maven artifacts

+0

我有一些進口org.eclipse.birt.report.engine.api。*我添加了org.eclipse.birt.report.engine的依賴,並且它沒有API類中它。也許birt的engineapi.jar不是其中的一部分。它應該是? – 2011-09-13 15:48:27

+1

是的;我已經打開一個新的bug來跟蹤這個:https://bugs.eclipse.org/bugs/show_bug.cgi?id = 357598 – 2011-09-14 07:32:28

2

不,沒有。在我們的項目中,我們簡單地下載了BIRT運行時並在中央存儲庫中安裝了所有必需的工件,並且每個人都參考它。

1

但是我也找不到任何Maven倉庫來檢索所有與BIRT相關的依賴項,但我使用了一些方法來檢索與BIRT相關的依賴項,方法是在pom.xml中配置Maven屬性,請使用此URL以獲取更多詳細信息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>