5

我可以指向 BIRT 2.6.0 的 Maven 存储库吗?

4

4 回答 4

5

我在做这个工作。请参阅我的博客了解进度或在http://maven.eclipse.org/nexus/content/repositories/testing/尝试第一个 RC 。

该项目还附带了一组将 Eclipse 包转换为 Maven 工件的工具

于 2011-03-21T08:54:19.357 回答
2

不,没有。在我们的项目中,我们简单地下载了 BIRT 运行时并在我们的中央存储库中安装了所有必需的工件,并且每个人都引用它。

于 2010-08-31T06:08:55.530 回答
1

我不知道提供 Birt 2.6 的公共存储库。我唯一知道的是:

http://repository.jboss.org/nexus/content/groups/public-jboss/org/eclipse/birt/

但是那里提供的最新版本是 2.3.2。

于 2010-08-26T00:08:54.103 回答
1

然而我也找不到任何 Maven 存储库来检索所有与 BIRT 相关的依赖项,但我正在使用一些方法通过在 pom.xml 中配置 Maven 属性来检索 BIRT 相关的依赖项,如下所示,请使用此 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>
于 2011-08-24T16:35:24.250 回答