Однако я также не смог найти ни одного репозитория Maven для извлечения всех зависимостей, связанных с BIRT, но я использую какой-то метод для извлечения зависимостей, связанных с BIRT, путем настройки свойств Maven в pom.xml, как указано ниже, используйте этот 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>