Page 2 of 2 FirstFirst 12
Results 11 to 18 of 18

Thread: Using Spring BlazeDS Integration nightly builds with Maven

  1. #11

    Default

    Is that the full error? I had something similar which was being caused by a missing dependency on spring-aop, which hadn't been pulled through as a transitive dependency by Maven.

  2. #12

    Default

    Have the contents of http://s3.amazonaws.com/maven.spring...k.org/snapshot being deleted? It seems to no longer work.

    Edit: Ignore, faulty Nexus settings.
    Last edited by pledge; Mar 10th, 2010 at 07:23 AM. Reason: Fixed

  3. #13

    Default Snapshots broken?

    The POMs are available at <http://s3.amazonaws.com/maven.springframework.org/snapshot/org/springframework/flex/spring-flex/1.5.0.BUILD-SNAPSHOT/spring-flex-1.5.0.BUILD-20100516.010007-81.pom> but the corresponding JAR appears to be missing.

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

    Default

    I believe the correct URL for the snapshot repo these days is:

    http://maven.springframework.org/snapshot

    Note that as we still host everything in S3, it's not directly browsable. If you want to browser the contents, you can use:

    https://s3browse.springsource.com/br...framework.org/

    Also note that as a result of our moving to using Maven as the single build system for the project, and the fact that there will eventually be additional artifacts in the distro in the final 1.5, the main dependency you want to grab is now spring-flex-core:

    Code:
    <dependency>
        <groupId>org.springframework.flex</groupId>
        <artifactId>spring-flex-core</artifactId>
        <version>1.5.0.BUILD-SNAPSHOT</version>
    </dependency>
    I will update the original post to reflect the current state.
    Jeremy Grelle

    Staff Engineer, Web Products Team
    SpringSource

  5. #15

    Default

    Much improved. Thanks.

  6. #16
    Join Date
    Sep 2010
    Posts
    2

    Default

    Hi,

    I was just wondering if there is any date yet for an official release of 1.5? I have been trying in vain to configure the data service feature of flash builder 4. I keep receiving the RDS 404 message with regard to ide.cfm. I am hoping all this will be a lot easier to integrate with Maven once the release happens?...

  7. #17

    Default

    Quote Originally Posted by Heen View Post
    I am also having sample problem, may be i need to see the help section in detail.
    This is what I used to get started: http://refcardz.dzone.com/refcardz/flex-4-and-spring-3

    I found it 'better' than the example since I built it up step-by-step with an explanation of what each piece is doing.

  8. #18
    Join Date
    Jul 2011
    Posts
    3

    Default

    Hi, I'm using the pom.xml in the modules trunk but seems that the opt-tomcat7 (and 6, I think) is missing a <scope> tag. The current pom.xml brings all tomcat7 dependencies and we don't need that.

    So, my patch:

    Index: pom.xml
    ================================================== =================
    --- pom.xml (revision 23208)
    +++ pom.xml (working copy)
    @@ -34,6 +34,7 @@
    <groupId>org.apache.tomcat</groupId>
    <artifactId>tomcat-catalina</artifactId>
    <version>7.0.8</version>
    + <scope>provided</scope>
    </dependency>
    </dependencies>
    <properties>

    I hope it helps.

Posting Permissions

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