java blazeDS maven JAR包无法下载方案

    一直在网上没找着blazeDS JAR 公共库, 项目构建时无法构建,公共库上没有JAR包,索性手动安装JAR包

问题解决,当然这样不能解决团队成员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


  把JAR放至对应./m2/repository/com/adobe/blazeds下


      如: blazeds-core-4.0.0.14931.jar 放至./m2/repository/com/adobe/blazeds/blazeds-core/4.0.0.14931/

     完成后,在项目下执行mvn clean compile 问题解决


你可能感兴趣的:(mavenblazeDS)