我可以指出BIRT 2.6.0的Maven存储库吗?
答案 0 :(得分:5)
我正在努力。请参阅我的blog for progress或在http://maven.eclipse.org/nexus/content/repositories/testing/尝试第一个RC。
该项目还附带了一组tools to convert Eclipse bundles into Maven artifacts。
答案 1 :(得分:2)
不,没有。在我们的项目中,我们只是下载了BIRT运行时并在我们的中央存储库中安装了所有必需的工件,并且每个人都引用它。
答案 2 :(得分:1)
我不知道提供Birt 2.6的公共存储库。我唯一知道的是:
http://repository.jboss.org/nexus/content/groups/public-jboss/org/eclipse/birt/
但是那里的最新版本是2.3.2。
答案 3 :(得分:1)
然而我也找不到任何Maven存储库来检索所有与BIRT相关的依赖项,但是我使用一些方法通过在pom.xml中配置Maven属性来检索与BIRT相关的依赖项,如下所示,请使用此URL获取更多详细信息{ {3}}
<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>