2011-01-22 6 views
8

アドビが最新のBlazeDS成果物をダウンロードするためのmavenリポジトリを持っているかどうか知りませんか? BlazeDSの "古い"バージョンは、中央のmvnリポジトリでしか見つかりません。Adob​​e BlazeDS 4の成果物リポジトリ?

ダウンロードしたBlazeDS jarファイルをAdobe Webサイトから自分のローカルリポジトリにデプロイすることもできますが、Adobeがmavenリポジトリ経由でアーティファクトを提供するといいでしょう。

答えて

0

ありがとうコーネル。次のスニペットを私のポーに追加しました。

<repositories> 
    <repository> 
     <id>spring-maven-external</id> 
     <name>Springframework Maven External Repository</name> 
     <url>http://maven.springframework.org/external</url> 
    </repository> 
</repositories> 
+5

これはこれは、BlazeDSのためのSpringの統合ライブラリではなく、AdobeがBlazeDSのコードでもう –

6

Springのmaven外部リポジトリには、これらの成果物がもう含まれません(ライセンスの問題?)。

あなたは、adobeから所望の放出をダウンロードし解凍し、jar -x含まれるwarファイルと最後にあなたとあなたの地元のレポにすべてのフレックス*の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 

たり、プライベートでそれぞれをアップロード(すなわち、アーティファクトまたはネクサス)。

:あなたは公約に

感謝年代post in flex forum

5

https://src.springsource.org/svn/spring-flex/tags/spring-flex-1.5.0.RELEASE/local-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> 

あなたはこのリポジトリを使用する場合は--lax-checksumsオプションでMavenを実行する必要がありますので、このリポジトリは、チェックサムが含まれていません。

+1

が動作していません。 –

+0

@BenNeill私はあまりにも初心者だと思っていましたが、実際には[BlazeDSインストールガイド](http: //sourceforge.net/adobe/blazeds/wiki/BlazeDS%204.0%20Installation%20Guide/)はそのようなジョークです。 – superEb

0

blazeds-opt-4.0.0.14931が見つかりませんでした。なぜなら、sriniが投稿した春のリポジトリになかったからです。以下のネクサスリポジトリは、必要なjarファイルを提供しました:

<repository> 
    <id>NexusThirdParty</id> 
    <name>Nexus third party components</name> 
    <url>http://zcode.sunji.net/nexus/content/repositories/thirdparty/</url> 
</repository> 
0

https://src.springsource.org/svn/spring-flex/tags/spring-flex-1.5.2.RELEASE/local-repo/が動作しているようです。

は、あなたのpom.xmlかのsettings.xmlに、このレポを追加:検索の多くは、私はBlazeDSの-4.x.xのための適切なMavenのリポジトリを考え出した

<repository> 
    <id>SpringFlex</id> 
    <name>SpringFlex Source Repo</name> 
    <url>https://src.springsource.org/svn/spring-flex/tags/spring-flex-1.5.2.RELEASE/local-repo/</url> 
</repository> 
1

後。

<repository> 
<id>spring-milestones</id> 
<url>http://repo.spring.io/libs-milestone/</url> 

これは私のために働きました!