Hi, Christofer! Thanks for your hard work - it's much appreciated!!
I've checked out your mavenizer project - and have identified a few problems. 1. It think, that you need to package the pom jar dependencies into your jar file, it can be done using the maven shade plugin, to avoid class not found exceptions: <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> </execution> </executions> <configuration> <finalName>${artifactId}-${version}</finalName> </configuration> </plugin> 2. I noticed, on OSX some folders are created in the FDKTarget: com\adobe\flex\compiler\rideau\4.6.0.23201 com\adobe\flex\compiler\saxon9\4.6.0.23201... I suppose it should have been a set of nested folders? - I suggest you use the System.getProperty("file.separator"), to ensure you use a compatible directory separator, to be system agnostic.. The SDKDeployer fails, i suppose, based on the folder structure error described in point 2? Regards. Den fredag den 9. november 2012 11.15.54 UTC+1 skrev Christofer Dutz: > > Hi guys, > > sorry for me being a little overloaded in the last weeks, but I have been > working hard on my Flex SDK Mavenizer and the Flexmojos 6.x branch. After > more than one month of full time work (if a add all up) we are ready to go. > I just contributed the code for the Generator to Apache Flex and it's > available for download at: > https://svn.apache.org/repos/asf/incubator/flex/utilities/trunk/mavenizer/ > In a few hours I think that will have an updated README.txt explaining how > to use it. > > Flexmojos 6.x is currently available in my Github Repo at > https://github.com/chrisdutz/flexmojos but I will push those changes back > to velos repo soon. Just if you want to start testing, give it a go :-) > Really hoping on some feedback. > > Additionally you might be interested that rP and I were really busy on > the new Confluence at > https://flexmojos.atlassian.net/wiki/display/FLEXMOJOS/Home > Now most of the content of the old sonatype wiki is available at the new > destination and I merged in all of my finished documents from my companies > Wiki. Currently we are workin on updating those pages, but a lot has been > done. So give it a try and give us some feedback at what you think and > where things have to be corrected. Reall looking forward to turning off all > of the old sites so the web is not polluted with outdated information, so > if your're looking for information, you'll be guided to the most recent > source. > > So much for now, > Chris > > > > > > -- You received this message because you are subscribed to the Google Groups "Flex Mojos" group. To post to this group, send email to flex-mojos@googlegroups.com To unsubscribe from this group, send email to flex-mojos+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/flex-mojos http://flexmojos.sonatype.org/