Adobe BlazeDS 4工件maven存储库?

Tim*_*Tim 8 adobe maven-2 artifacts blazeds

有没有人知道Adobe是否有maven存储库来下载最新的BlazeDS工件?我只能在中央mvn存储库中找到BlazeDS的"旧"版本.

另一种选择是将下载的BlazeDS jar文件从Adobe网站部署到我的本地存储库,但是当Adobe通过maven存储库提供工件时,这将是很好的.

lrk*_*kwz 6

Spring的maven外部存储库不再包含这些工件(许可问题?).

您应该从adobe下载所需的版本,解压缩并jar -x包含war文件,最后您必须将所有flex*jar放入您的本地仓库:

mvn install:install-file -Dpackaging=jar -DgroupId=com.adobe.blazeds -Dversion=4.0.0.14931 -DartifactId=blazeds-common -Dfile=flex-messaging-common.jar
mvn install:install-file -Dpackaging=jar -DgroupId=com.adobe.blazeds -Dversion=4.0.0.14931 -DartifactId=blazeds-core -Dfile=flex-messaging-core.jar
mvn install:install-file -Dpackaging=jar -DgroupId=com.adobe.blazeds -Dversion=4.0.0.14931 -DartifactId=blazeds-opt -Dfile=flex-messaging-opt.jar
mvn install:install-file -Dpackaging=jar -DgroupId=com.adobe.blazeds -Dversion=4.0.0.14931 -DartifactId=blazeds-proxy -Dfile=flex-messaging-proxy.jar
mvn install:install-file -Dpackaging=jar -DgroupId=com.adobe.blazeds -Dversion=4.0.0.14931 -DartifactId=blazeds-remoting -Dfile=flex-messaging-remoting.jar
mvn install:install-file -Dpackaging=jar -DgroupId=com.adobe.blazeds -Dversion=4.0.0.14931 -DartifactId=blazeds-rds-server -Dfile=flex-rds-server.jar
Run Code Online (Sandbox Code Playgroud)

或者将每个上传到您的私人maven存储库(即神器或连接).

注意:将版本替换为您下载的版本

由于承诺张贴在柔性论坛


小智 5

https://src.springsource.org/svn/spring-flex/tags/spring-flex-1.5.0.RELEASE/local-repo/似乎正在运作.

将此repo添加到您的pom.xml或settings.xml:

<repository>
   <id>SpringFlex</id>
   <name>SpringFlex Source Repo</name>
   <url>https://src.springsource.org/svn/spring-flex/tags/spring-flex-1.5.0.RELEASE/local-repo/</url>
</repository>
Run Code Online (Sandbox Code Playgroud)

此存储库不包含校验和,因此--lax-checksums如果使用此存储库,则需要使用该选项运行Maven .


Cor*_*nga 3

不,Adobe 没有 BlazeDS 的 Maven 存储库。此线程可以提供帮助。您可以在 Spring maven 存储库中找到 BlazeDS 4:http://s3browse.springsource.com/browse/maven.springframework.org/external/com/adobe/blazeds/