ひがやすを技術ブログ

電通国際情報サービスのプログラマ

BlazeDSでmaven

現状、BlazeDSのjarでmavenから取得できるのは、1.0-beta1というバージョンで、これが配布されている最新の3-0-0-544と同じものかの保証がないので、Seasarmavenリポジトリに最新の3-0-0-544をアップしました。
使うためには、pom.xmlにrepositoryのエントリを追加します。


<repository>
<id>maven.seasar.org</id>
<name>The Seasar Foundation Maven2 Repository</name>
<url>http://maven.seasar.org/maven2
</repository>
また、dependencyのエントリも追加します。

<dependency>
<groupId>com.adobe.blazeds</groupId>
<artifactId>blazeds-common</artifactId>
<version>3.0.0.544</version>
<type>jar</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.adobe.blazeds</groupId>
<artifactId>blazeds-core</artifactId>
<version>3.0.0.544</version>
<type>jar</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.adobe.blazeds</groupId>
<artifactId>blazeds-remoting</artifactId>
<version>3.0.0.544</version>
<type>jar</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.adobe.blazeds</groupId>
<artifactId>blazeds-proxy</artifactId>
<version>3.0.0.544</version>
<type>jar</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.adobe.blazeds</groupId>
<artifactId>blazeds-opt</artifactId>
<version>3.0.0.544</version>
<type>jar</type>
<scope>provided</scope>
</dependency>
これで、あなたもmavenBlazeDS三昧です。