2012-12-13 3 views

답변

8


당신이 시도 유무 : http://www.smartclient.com/maven2/com/smartgwt/smartgwt/3.0/smartgwt-3.0.pom?

는 저장소 : http://www.smartclient.com/maven2

<dependency> 
    <groupId>com.smartgwt</groupId> 
    <artifactId>smartgwt</artifactId> 
    <version>3.0</version> 
</dependency> 
+0

감사합니다. 그럴거야. 그러나 나는 지금 또 다른 문제에 직면하고있다. 우리는 로컬 넥서스 미러를 사용하고 있으며 위의 종속성을 추가 할 때 "com.smartgwt : smartgwt : jar : 3.0"을 찾을 수 없습니다. 여기서 무엇을해야합니까? – sachinpkale

+0

저는 넥서스에 익숙하지 않습니다. 나는 인공물을 사용한다. 내가 루트에서 볼 수있는 것은 인덱스 파일이나 파일이 없다는 것입니다. –

+0

Yeeeeeeah! 이 답변을 주셔서 감사합니다. !!!! 나는 18 시간 이상 smartGWT-4.0을위한 저장소 파일을 얻으려고 노력해 왔으며 지금은 정말 고마워한다. –

0
 <groupId>com.googlecode.smartgwt-maven-plugin</groupId> 
     <artifactId>smartgwt-maven-plugin</artifactId> 
     <version>3.1</version> 
2

나는이 질문을 실현 할 약 SmartGWT 3.0이다 그러나 나는 SmartGWT 4.0에 대한 받는다는 종속성 설정을 찾고 여기까지 마감이 현재 안정 버전이기 때문에 그것은 가치가 공유 될 수있다 . 이것은 저에게 맞는 저장소/의존성 설정입니다 :

<repositories> 
    <!-- other repositories --> 
    <repository> 
     <id>smartgwt</id> 
     <url>http://www.smartclient.com/maven2</url> 
    </repository> 
</repositories> 

<dependencies> 
    <!-- other dependencies --> 
    <dependency> 
     <groupId>com.smartgwt</groupId> 
     <artifactId>smartgwt</artifactId> 
     <version>4.0</version> 
    </dependency> 
</dependencies>