Results 1 to 5 of 5

Thread: Maven usage

  1. #1
    Join Date
    Aug 2004
    Location
    The Netherlands
    Posts
    160

    Default Maven usage

    Any plans for using maven? There are some very nice plugins? Hope the release will at least be added to a maven repository.
    Jettro Coenradie
    http://www.gridshore.nl

  2. #2
    Join Date
    Apr 2005
    Location
    San Francisco, CA
    Posts
    1,224

    Default

    There are no plans to use Maven directly for building Spring BlazeDS Integration, but we do publish Maven artifacts for all of our releases. M1 is available in the SpringSource bundle repository:

    http://s3browse.com/explore/reposito...flex/1.0.0.M1/
    Jeremy Grelle

    Staff Engineer, Web Products Team
    SpringSource

  3. #3
    Join Date
    Aug 2004
    Location
    The Netherlands
    Posts
    160

    Default

    good enough, for now ... :-)
    Jettro Coenradie
    http://www.gridshore.nl

  4. #4
    Join Date
    Dec 2008
    Posts
    6

    Default

    What is the correct pom file entry for spring-blazeds? Here is what I am using.

    <dependency>
    <groupId>org.springframework.flex</groupId>
    <artifactId>org.springframework.flex</artifactId>
    <version>1.0.0.M1</version>
    </dependency>

    This does not seem to work. Maven complains that the artifact cannot be found. I know its not the repository, because the following entry for blazeds works:

    <dependency>
    <groupId>com.adobe.flex</groupId>
    <artifactId>com.springsource.flex.messaging</artifactId>
    <version>${springSourceBlazeDs}</version>
    </dependency>
    <dependency>
    <groupId>com.adobe.flex</groupId>
    <artifactId>com.springsource.flex.messaging.common </artifactId>
    <version>${springSourceBlazeDs}</version>
    </dependency>
    <dependency>
    <groupId>com.adobe.flex</groupId>
    <artifactId>com.springsource.flex.messaging.servic es.http</artifactId>
    <version>${springSourceBlazeDs}</version>
    </dependency>
    <dependency>
    <groupId>com.adobe.flex</groupId>
    <artifactId>com.springsource.flex.messaging.servic es.remoting</artifactId>
    <version>${springSourceBlazeDs}</version>
    </dependency>

    Thanks,

    Duncan

  5. #5
    Join Date
    Dec 2008
    Posts
    6

    Default Correction, it was a repository issue.

    In order to grab all the required files you will need the following repositories.

    <repository>
    <id>com.springsource.repository.bundles.release</id>
    <name>SpringSource Enterprise Bundle Repository - Release Bundle Releases</name>
    <url>http://repository.springsource.com/maven/bundles/release</url>
    </repository>
    <repository>
    <id>com.springsource.repository.bundles.mileston e</id>
    <name>SpringSource Enterprise Bundle Repository - Milestone Bundle Releases</name>
    <url>http://repository.springsource.com/maven/bundles/milestone</url>
    </repository>
    <repository>
    <id>com.springsource.repository.bundles.external </id>
    <name>SpringSource Enterprise Bundle Repository - External Bundle Releases</name>
    <url>http://repository.springsource.com/maven/bundles/external</url>
    </repository>


    DKD

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •