2011-08-30 6 views
10

이제 Birt 3.7에는 런타임을 사용하는 간단한 방법 (Jars 만 배포)이 있으므로 왜 Maven 저장소가 없습니까?왜 Eclipse 용 Maven 저장소가 없습니까? Birt 3.7 => Birt 4.2 용으로 하나가 있습니다.

버트에는 50 개가 넘는 종속성이 포함되어 있습니다. 어리석은 짓입니다.

이 문제를 해결하려면 어떻게합니까?

업데이트 : 11 2월 링크 나루토 캐릭터 - 교환 포럼 2012
https://dev.c-ware.de/confluence/display/PUBLIC/Embeding+Birt+into+Application+built+with+Maven

업데이트 일부 진전이있다 :
좀 더 도움이 밖으로 (우리는 혼자가 아닙니다) :

<repositories> 
    <repository> 
     <id>sonatype-nexus-snapshots</id> 
     <name>Sonatype Nexus Snapshots</name> 
     <url>https://oss.sonatype.org/content/repositories/snapshots/</url> 
    </repository> 
</repositories> 

<dependency> 
    <groupId>org.eclipse.birt.runtime</groupId> 
    <artifactId>org.eclipse.birt.runtime</artifactId> 
    <version>3.7.1-SNAPSHOT</version> 
</dependency> 

나는 나 자신을 테스트 have't. 6 월 어쩌면이 시간을 기대

업데이트 (23) 2012년 4월
좀 더 운동 (이클립스 측이 시간)
http://www.eclipse.org/forums/index.php/m/845370/
=>. http://hartmann-schneevoigt.com/2012/04/04/eclipse-birt-3-7-2-with-maven/ 도움이 될 : 아직도
링크 된 장소 당신이 중 일부에 대한
에서 더 유용한 새로운 정보 업데이트 (11) 2012년 7월

.
https://bugs.eclipse.org/bugs/show_bug.cgi?id=258911가 (하단으로 스크롤)

<repository> 
    <id>sonatype-nexus-releases</id> 
    <name>Sonatype Nexus Releases</name> 
    <url>https://oss.sonatype.org/content/repositories/releases/</url> 
</repository> 

최종 업데이트 그것은 여기에 공식적
: 여기

는 해결책이 될 수있다 (훨씬 적은 efford으로, artifactory/넥서스에 일식에서 항아리를 배포) BIRT 4.2 (단락 '메이븐 지원'을 찾기) http://www.eclipse.org/birt/phoenix/project/notable4.2.php

+1

아마 당신은 여기에서 해결 방법을 찾을 수 있습니다 많은 일식과 저장소에 대한 링크가 http://stackoverflow.com/questions/3570512/maven-repository-for-birt-2-6-0 – sprelacart

+0

유물, 어떤 이유로 Birt 2.6.2 만 있습니다. 3.7의 흔적은 없습니다 ... – user85155

+0

일부 조정되지 않은 움직임은 다음과 같습니다 : http://www.eclipse.org/forums/index.php/mv/msg/261821/757516/ 그리고 http : //www.birt-exchange .org/forum/index.php/topic/24196-mavenizing-birt-3-7-1/page__p__91521 & # entry91521__s__6ec86cf585c0a19a34b13cfe1834eacb – user85155

답변

1

http://wiki.eclipse.org/Maven_Tools_4_Eclipse 은 도움이 될 수 있습니다.

maven.eclipse.org 이클립스의 공식 maven 저장소는 maven central의 종속성을 사용합니다.

이제 BALT 3.7이 Eclipse 3.7에없는 이유는 무엇입니까? 누군가가 부담했다처럼

0

주의를 그 메이븐 중앙에 존재하는 유물 (http://mvnrepository.com/artifact/org.ow2.orchestra.eclipse.birt)가 불완전합니다. 예를 들어, PDF 이미 터가 누락되었습니다.

즉,보고 엔진 인 IMO의 심각한 단점 인 PDF를 생성 할 수 없음을 의미합니다.

1

당신은 여기에 또 다른 해결 방법을 찾을 수 있습니다 http://hartmann-schneevoigt.com/2012/04/04/eclipse-birt-3-7-2-with-maven/

기본적으로,이 솔루션/해결 방법에 birt 유물이 maven-eclipse-plugin를 사용하여 로컬 유물 프록시에 업로드하고 당신이 일반적으로하는 것처럼 다음, 정상 받는다는 종속성으로 사용합니다.

필요한 모든 POM 스 니펫과 명령이 제공되므로 간단한 작업이 필요합니다.

0

아래의 메이븐 의존성은 나를 완벽하게 지원했습니다.

<repositories> 
    <repository> 
     <id>sonatype-nexus-releases</id> 
     <name>Sonatype Nexus Releases</name> 
     <url>https://oss.sonatype.org/content/repositories/releases/</url> 
    </repository> 
</repositories> 
+2

불필요한 자체 홍보 링크가 삭제되었습니다. –

관련 문제