我找不到 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 回答