Java 无法生成CloudHopper(SMPP)

Java 无法生成CloudHopper(SMPP),java,maven,build,jar,smpp,Java,Maven,Build,Jar,Smpp,我已经从github的这个链接下载了源代码:但是,当我尝试在Netbeans中构建它时,我得到了两个错误,如下所示: 1) 在“输出”窗口的“生成”开始处,它显示: Scanning for projects... Some problems were encountered while building the effective model for com.cloudhopper:ch-smpp:jar:5.0.1-SNAPSHOT The expression ${scm.url

我已经从github的这个链接下载了源代码:但是,当我尝试在Netbeans中构建它时,我得到了两个错误,如下所示:

1) 在“输出”窗口的“生成”开始处,它显示:

Scanning for projects...

Some problems were encountered while building the effective model for     com.cloudhopper:ch-smpp:jar:5.0.1-SNAPSHOT
The expression ${scm.url} is deprecated. Please use ${project.scm.url} instead.

It is highly recommended to fix these problems because they threaten the stability of     your build.

For this reason, future Maven versions might no longer support building such malformed     projects.
2) 构建结束时,输出窗口显示:

Results :

Failed tests:       serverBindToUnavailablePortThrowsException(com.cloudhopper.smpp.impl.DefaultSmppServerTest)

Tests run: 162, Failures: 1, Errors: 0, Skipped: 1

------------------------------------------------------------------------
BUILD FAILURE
------------------------------------------------------------------------
Total time: 27.606s
Finished at: Sun Mar 10 09:42:27 GMT 2013
Final Memory: 21M/314M
------------------------------------------------------------------------
Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.10:test     (default-test) on project ch-smpp: There are test failures.

Please refer to C:\XXX\XXX\XXX\XXX\CloudHopper\cloudhopper-smpp-master\cloudhopper-    smpp-master\target\surefire-reports for the individual test results.
-> [Help 1]

To see the full stack trace of the errors, re-run Maven with the -e switch.
Re-run Maven using the -X switch to enable full debug logging.

For more information about the errors and possible solutions, please read the     following articles:
[Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
我希望能够构建所需的jar文件并运行提供的演示


你知道如何正确地获得这个建筑吗?

为了获得jar文件,你必须使用maven执行这个项目


删除
src/
中的
test
文件夹,然后尝试使用Netbeans构建。它将正确编译jar。

感谢您的链接。我也有所有的jar文件。虽然我也希望在本地正确地获得源代码。如何解决上述问题?如何使用maven执行项目?这能解决我上面的问题吗?