Maven の SmartGWT 3.0 エントリが見つかりませんでした。
2.4 の場合、以下のリンクを見つけました:
http://code.google.com/p/smartgwt/wiki/NightlyBuilds_and_MavenRepository
質問する
4523 次
3 に答える
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>
于 2012-12-13T21:49:09.540 に答える
2
私はこの質問が約であることを理解していますSmartGWT 3.0
が、私はここでMavenの依存関係のセットアップを探していました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>
于 2014-09-06T12:54:25.680 に答える
0
<groupId>com.googlecode.smartgwt-maven-plugin</groupId>
<artifactId>smartgwt-maven-plugin</artifactId>
<version>3.1</version>
于 2014-03-20T17:18:44.960 に答える