Warning: file_get_contents(/data/phpspider/zhask/data//catemap/4/maven/6.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/wcf/4.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
带Maven的SmartGWT 3.0_Maven_Smartgwt - Fatal编程技术网

带Maven的SmartGWT 3.0

带Maven的SmartGWT 3.0,maven,smartgwt,Maven,Smartgwt,我找不到maven的SmartGWT 3.0条目。 对于2.4,我找到了以下链接: 你试过吗: 存储库: com.smartgwt smartgwt 3 com.googlecode.smartgwt-maven-plugin smartgwt maven插件 3.1 我确实意识到这个问题是关于SmartGWT 3.0的,但我最终在这里寻找SmartGWT 4.0的maven依赖项设置,因为这是当前稳定的版本,可能值得分享。这是适用于我的存储库/依赖项设置: <repositories&

我找不到maven的SmartGWT 3.0条目。
对于2.4,我找到了以下链接:
你试过吗:

存储库:


com.smartgwt
smartgwt
3
com.googlecode.smartgwt-maven-plugin
smartgwt maven插件
3.1

我确实意识到这个问题是关于
SmartGWT 3.0
的,但我最终在这里寻找
SmartGWT 4.0
的maven依赖项设置,因为这是当前稳定的版本,可能值得分享。这是适用于我的存储库/依赖项设置:

<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>

smartgwt
http://www.smartclient.com/maven2
com.smartgwt
smartgwt
4

谢谢。那就行了。但我现在面临另一个问题。我们正在使用一个本地nexus镜像,当我添加上面的依赖项时,它说“找不到com.smartgwt:smartgwt:jar:3.0”。我需要在这里做什么?我不熟悉nexus。我使用人工制品。我在根目录上看到的是没有索引文件或任何.yeeeeah!非常感谢你的回答!!!!我已经尝试获取smartGWT-4.0的存储库文件超过18个小时了,现在我已经整理好了,非常感谢
        <groupId>com.googlecode.smartgwt-maven-plugin</groupId>
        <artifactId>smartgwt-maven-plugin</artifactId>
        <version>3.1</version>
<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>