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.
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.
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
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.
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:
I will update the original post to reflect the current state.Code:<dependency> <groupId>org.springframework.flex</groupId> <artifactId>spring-flex-core</artifactId> <version>1.5.0.BUILD-SNAPSHOT</version> </dependency>
Jeremy Grelle
Staff Engineer, Web Products Team
SpringSource
Much improved. Thanks.
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?...
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.
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.