2012-12-13 72 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

謝謝。那會的。但我現在面臨另一個問題。我們正在使用本地nexus鏡像,當我添加上述依賴項時,它會說「找不到com.smartgwt:smartgwt:jar:3.0」。我需要在這裏做什麼? – sachinpkale

+0

我不熟悉nexus。我使用artifactory。我在根目錄中看到沒有索引文件或任何。 –

+0

Yeeeeeeah!非常感謝這個答案!我一直試圖讓smartGWT-4.0的存儲庫文件超過18個小時,現在我已經排序了,非常感謝你 –

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>