Re: [flex-mojos] Re: Compiling with AIR 3.5.

2013-02-01 Thread Maximilien Wiktorowski
Hi,

I also like to integrate Flex/Air parts of my project (JEE + Flex + Air) to 
maven.
While i was investigating for a solution i found 
https://github.com/yelbota/adt-maven-plugin but unfortunately it doesn't 
fit my needs as i want to package a native extension.

So i decided to extend FM 6.x and add ane packaging support. It is now 
working on my project and i also had to add native packaging support on air 
part but needs a little more work to push it back to FM.

Anyway i 'm wondering if FM makes it the rigth way compared to yeltoba.
Indeed FM uses adt.jar internal classes to make air packaging whereas 
yeltoba only makes calls to adt.
In the end FM have to write code that is already present in adt.jar and may 
change in future versions of adt.
I know Chris wants to donate FM to Apache and rewrite some parts in the 
same time so maybe air/ane packaging is also a great candidate to the 
refactoring ;-)
Maybe i can help on this.

my 2cents

Le mercredi 23 janvier 2013 22:54:55 UTC+1, Asking Dumbquestions a écrit :

 Factually, I'm not certain of this:
  

 The problem is that usually the Air Version is tightly coupled with the 
 flex version.


 ...as we could customize the Flex sdk by overwriting the AIR files 
 distributed within the Flex framework with the AIR sdk of your choice, etc.

 Moreover, Adobe has separated out the AIR sdk, so now you can compile AIR 
 apps completely without the Flex framework.  As the future of AS3 
 development will be probably mostly AIR related, my hope was that Maven 
 support would continue in this direction.  As it appears that time is a 
 constraint on future development of Flexmojos, I'd vote for petitioning 
 someone like JetBrains to pick up the project to include the feature as 
 part of Intellij: They are about the only company that seems to care to 
 give AS3 development some industrial tools, and including robust Maven 
 support for AIR would give their product further superiority over 
 FlashBuilder!





 On Wednesday, January 23, 2013 8:28:43 AM UTC-5, Christofer Dutz wrote:

 The problem is that usually the Air Version is tightly coupled with the 
 flex version. So as far as I know it's usually not possible to build Air 
 applications with other versions than the one shipped with the FDK. The 
 mavenizer now did a first step to decouple this. Unfortunately I never 
 built any Air applications therefore I didn't put much effort into this. 
 Flexmojos currently doesn't support all of the things the Air FDK would 
 generally support. I think most was with bundling Air application to run as 
 native applications on mobile devices. This will not work no matter how 
 good I do the deployment of the FDK. Velo had his FM Enterprise for this, 
 but as far as I know this project is dead. 

 What I am currently working on is a new plugin that will be built under 
 the hood of the Apache foundation. I doubt I will be adding new features to 
 FM, just fixing bugs that keep you guys from using FM.

 If you have any trouble with the Air support which works in FM3, FM4 or 
 FM5 it would be great if you could whip up a sample project and open an 
 Issue on https://flexmojos.atlassian.net/ and attach that project to the 
 issue. Then I could add this to the testsuite and work on getting the Air 
 support up to date. But keep in mind ... I'll only fix stuff that worked in 
 earlier versions of FM ... I will not implement native device support.

 Chris


 2013/1/22 Asking Dumbquestions askingdum...@gmail.com

 @Piergiorgio Niero

 Thank you man!  Are you compiling with AIR?  If yes, any chance you 
 could share an example pom.xml or zipped project example?

 Kind regards, adq


 On Monday, January 14, 2013 10:05:46 AM UTC-5, Piergiorgio Niero wrote:

 Ok, I created a skinny recap of my experience so far with flexmojos 6.x 
 and mavenizer.
 I'll continue keeping up to date for myself, if there's any official 
 doc spawning somewhere please let me know so I can unpublish my doc (for 
 documentation coherence)

 here's the link https://docs.google.com/**document/d/**
 1EENPR4J0P4TRD4NL9G2oSLwBkYKgf**wyt4uKv03QAdYw/pubhttps://docs.google.com/document/d/1EENPR4J0P4TRD4NL9G2oSLwBkYKgfwyt4uKv03QAdYw/pub

 ciao
 pigiuz

 On Monday, January 14, 2013 10:59:44 AM UTC+1, Piergiorgio Niero wrote:

 I think these questions on how to build should be grouped in a sticky 
 post somewhere or in a wiki page.
 Is there any existing one already?


 On Thursday, December 27, 2012 9:47:28 AM UTC+1, Christofer Dutz wrote:

 Yep ... that's the sequence.
 And don't forgett to skip the big testsuite or you would have do 
 deploy allmost every FDK.

 To admit ... I think the future will be at Apache ... at least that's 
 where I'm currently sticking all my free time.
 They are allways looking for guys willing to get their hands dirty :-)

 Chris

 2012/12/18 Asking Dumbquestions askingdum...@gmail.com

 Ok, so, get the mavenizer first, build and deploy Flex 4.6.0.23201. 
  Then, I can compile 

Re: [flex-mojos] Re: Compiling with AIR 3.5.

2013-02-01 Thread Christofer Dutz
Sounds good that you got that AIR stuff working. If you would be willing to
contribute it back (Including test-projects for the testsuite) I would be
glad to add that to FM.

But I have to clarify: I can't donate FM to Apache, because the code is not
mine. I've taken over maintaining FM, but the only one that could donate it
is Velo and it seems that this would not be an easy task, because of the
GPL license. We are checking what's possible, but I think it will take a
while.

The plugin I have allredy started working on will not be a refactoring of
FM. It is much more a complete rewrite and it will take quite a while till
it will we as mature as FM.

Chris


2013/1/30 Maximilien Wiktorowski mediam...@free.fr

 Hi,

 I also like to integrate Flex/Air parts of my project (JEE + Flex + Air)
 to maven.
 While i was investigating for a solution i found
 https://github.com/yelbota/adt-maven-plugin but unfortunately it doesn't
 fit my needs as i want to package a native extension.

 So i decided to extend FM 6.x and add ane packaging support. It is now
 working on my project and i also had to add native packaging support on air
 part but needs a little more work to push it back to FM.

 Anyway i 'm wondering if FM makes it the rigth way compared to yeltoba.
 Indeed FM uses adt.jar internal classes to make air packaging whereas
 yeltoba only makes calls to adt.
 In the end FM have to write code that is already present in adt.jar and
 may change in future versions of adt.
 I know Chris wants to donate FM to Apache and rewrite some parts in the
 same time so maybe air/ane packaging is also a great candidate to the
 refactoring ;-)
 Maybe i can help on this.

 my 2cents

 Le mercredi 23 janvier 2013 22:54:55 UTC+1, Asking Dumbquestions a écrit :

 Factually, I'm not certain of this:


 The problem is that usually the Air Version is tightly coupled with the
 flex version.


 ...as we could customize the Flex sdk by overwriting the AIR files
 distributed within the Flex framework with the AIR sdk of your choice, etc.

 Moreover, Adobe has separated out the AIR sdk, so now you can compile AIR
 apps completely without the Flex framework.  As the future of AS3
 development will be probably mostly AIR related, my hope was that Maven
 support would continue in this direction.  As it appears that time is a
 constraint on future development of Flexmojos, I'd vote for petitioning
 someone like JetBrains to pick up the project to include the feature as
 part of Intellij: They are about the only company that seems to care to
 give AS3 development some industrial tools, and including robust Maven
 support for AIR would give their product further superiority over
 FlashBuilder!





 On Wednesday, January 23, 2013 8:28:43 AM UTC-5, Christofer Dutz wrote:

 The problem is that usually the Air Version is tightly coupled with the
 flex version. So as far as I know it's usually not possible to build Air
 applications with other versions than the one shipped with the FDK. The
 mavenizer now did a first step to decouple this. Unfortunately I never
 built any Air applications therefore I didn't put much effort into this.
 Flexmojos currently doesn't support all of the things the Air FDK would
 generally support. I think most was with bundling Air application to run as
 native applications on mobile devices. This will not work no matter how
 good I do the deployment of the FDK. Velo had his FM Enterprise for this,
 but as far as I know this project is dead.

 What I am currently working on is a new plugin that will be built under
 the hood of the Apache foundation. I doubt I will be adding new features to
 FM, just fixing bugs that keep you guys from using FM.

 If you have any trouble with the Air support which works in FM3, FM4 or
 FM5 it would be great if you could whip up a sample project and open an
 Issue on 
 https://flexmojos.**atlassian.net/https://flexmojos.atlassian.net/and 
 attach that project to the issue. Then I could add this to the
 testsuite and work on getting the Air support up to date. But keep in mind
 ... I'll only fix stuff that worked in earlier versions of FM ... I will
 not implement native device support.

 Chris


 2013/1/22 Asking Dumbquestions askingdum...@gmail.com

 @Piergiorgio Niero

 Thank you man!  Are you compiling with AIR?  If yes, any chance you
 could share an example pom.xml or zipped project example?

 Kind regards, adq


 On Monday, January 14, 2013 10:05:46 AM UTC-5, Piergiorgio Niero wrote:

 Ok, I created a skinny recap of my experience so far with flexmojos
 6.x and mavenizer.
 I'll continue keeping up to date for myself, if there's any official
 doc spawning somewhere please let me know so I can unpublish my doc (for
 documentation coherence)

 here's the link https://docs.google.com/**d**ocument/d/**
 1EENPR4J0P4TRD4NL9G2**oSLwBkYKgf**wyt4uKv03QAdYw/pubhttps://docs.google.com/document/d/1EENPR4J0P4TRD4NL9G2oSLwBkYKgfwyt4uKv03QAdYw/pub

 ciao
 pigiuz

 On Monday, January 14, 2013 10:59:44 

Re: [flex-mojos] Re: Compiling with AIR 3.5.

2013-01-24 Thread Christofer Dutz
Well of course you could replace the Air SDK, but I still call this tightly
coupled. In contrast to the Flash Player you can't simply select the
runtime you want to use. Let me rephrase my statement: The Flex SDK is
tightly coupled to only one Air SDK at a time :-)

Acutally Air, Flash and Flex are completeley individual products from
Adobe. Adobe distributed them in an All-In-One package when releasing Flex
to give you a complete tool suite at hand. Starting with Apache Flex 4.8
Flex comes completeley without Flash and Air. That's why they created their
installer to download the missing parts and assemble a FDK that contains
all of the parts the old Adobe FDKs contained.

As I said ... if FM6 is doing something different than FM5 or FM4 please
whip up a demo project and add it to Jira.

And as far as I know you can do the missing steps for native deployment by
using the antrun target and creating a script that does the last steps for
you. I guess this is what most people I've heard of are doing. Sharing such
a script to the other FM users would be great though :-)

Chris


2013/1/23 Asking Dumbquestions askingdumbquesti...@gmail.com

 Factually, I'm not certain of this:


 The problem is that usually the Air Version is tightly coupled with the
 flex version.


 ...as we could customize the Flex sdk by overwriting the AIR files
 distributed within the Flex framework with the AIR sdk of your choice, etc.

 Moreover, Adobe has separated out the AIR sdk, so now you can compile AIR
 apps completely without the Flex framework.  As the future of AS3
 development will be probably mostly AIR related, my hope was that Maven
 support would continue in this direction.  As it appears that time is a
 constraint on future development of Flexmojos, I'd vote for petitioning
 someone like JetBrains to pick up the project to include the feature as
 part of Intellij: They are about the only company that seems to care to
 give AS3 development some industrial tools, and including robust Maven
 support for AIR would give their product further superiority over
 FlashBuilder!





 On Wednesday, January 23, 2013 8:28:43 AM UTC-5, Christofer Dutz wrote:

 The problem is that usually the Air Version is tightly coupled with the
 flex version. So as far as I know it's usually not possible to build Air
 applications with other versions than the one shipped with the FDK. The
 mavenizer now did a first step to decouple this. Unfortunately I never
 built any Air applications therefore I didn't put much effort into this.
 Flexmojos currently doesn't support all of the things the Air FDK would
 generally support. I think most was with bundling Air application to run as
 native applications on mobile devices. This will not work no matter how
 good I do the deployment of the FDK. Velo had his FM Enterprise for this,
 but as far as I know this project is dead.

 What I am currently working on is a new plugin that will be built under
 the hood of the Apache foundation. I doubt I will be adding new features to
 FM, just fixing bugs that keep you guys from using FM.

 If you have any trouble with the Air support which works in FM3, FM4 or
 FM5 it would be great if you could whip up a sample project and open an
 Issue on 
 https://flexmojos.**atlassian.net/https://flexmojos.atlassian.net/and 
 attach that project to the issue. Then I could add this to the
 testsuite and work on getting the Air support up to date. But keep in mind
 ... I'll only fix stuff that worked in earlier versions of FM ... I will
 not implement native device support.

 Chris


 2013/1/22 Asking Dumbquestions askingdum...@gmail.com**

 @Piergiorgio Niero

 Thank you man!  Are you compiling with AIR?  If yes, any chance you
 could share an example pom.xml or zipped project example?

 Kind regards, adq


 On Monday, January 14, 2013 10:05:46 AM UTC-5, Piergiorgio Niero wrote:

 Ok, I created a skinny recap of my experience so far with flexmojos 6.x
 and mavenizer.
 I'll continue keeping up to date for myself, if there's any official
 doc spawning somewhere please let me know so I can unpublish my doc (for
 documentation coherence)

 here's the link https://docs.google.com/**d**ocument/d/**
 1EENPR4J0P4TRD4NL9G2**oSLwBkYKgf**wyt4uKv03QAdYw/pubhttps://docs.google.com/document/d/1EENPR4J0P4TRD4NL9G2oSLwBkYKgfwyt4uKv03QAdYw/pub

 ciao
 pigiuz

 On Monday, January 14, 2013 10:59:44 AM UTC+1, Piergiorgio Niero wrote:

 I think these questions on how to build should be grouped in a sticky
 post somewhere or in a wiki page.
 Is there any existing one already?


 On Thursday, December 27, 2012 9:47:28 AM UTC+1, Christofer Dutz wrote:

 Yep ... that's the sequence.
 And don't forgett to skip the big testsuite or you would have do
 deploy allmost every FDK.

 To admit ... I think the future will be at Apache ... at least that's
 where I'm currently sticking all my free time.
 They are allways looking for guys willing to get their hands dirty :-)

 Chris

 2012/12/18 Asking Dumbquestions 

Re: [flex-mojos] Re: Compiling with AIR 3.5.

2013-01-23 Thread Asking Dumbquestions
@Piergiorgio Niero

Thank you man!  Are you compiling with AIR?  If yes, any chance you could 
share an example pom.xml or zipped project example?

Kind regards, adq

On Monday, January 14, 2013 10:05:46 AM UTC-5, Piergiorgio Niero wrote:

 Ok, I created a skinny recap of my experience so far with flexmojos 6.x 
 and mavenizer.
 I'll continue keeping up to date for myself, if there's any official doc 
 spawning somewhere please let me know so I can unpublish my doc (for 
 documentation coherence)

 here's the link 
 https://docs.google.com/document/d/1EENPR4J0P4TRD4NL9G2oSLwBkYKgfwyt4uKv03QAdYw/pub

 ciao
 pigiuz

 On Monday, January 14, 2013 10:59:44 AM UTC+1, Piergiorgio Niero wrote:

 I think these questions on how to build should be grouped in a sticky 
 post somewhere or in a wiki page.
 Is there any existing one already?


 On Thursday, December 27, 2012 9:47:28 AM UTC+1, Christofer Dutz wrote:

 Yep ... that's the sequence.
 And don't forgett to skip the big testsuite or you would have do deploy 
 allmost every FDK.

 To admit ... I think the future will be at Apache ... at least that's 
 where I'm currently sticking all my free time.
 They are allways looking for guys willing to get their hands dirty :-)

 Chris

 2012/12/18 Asking Dumbquestions askingdum...@gmail.com

 Ok, so, get the mavenizer first, build and deploy Flex 4.6.0.23201. 
  Then, I can compile flexmojos 6 from source?

 If that the sequence of events?

 Man, thanks for your time.

 Is there anyway some of us can get involved to ensure flexmojos has a 
 future?

 Although it's probable the flex is dead, AS#and AIR will be around for 
 at least several years with 2d/3d gaming and cross-platform mobile 
 development.  It would be great to see flexmojos become more of an 
 AIRmojos, etc.

 Thanks!




-- 
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/


Re: [flex-mojos] Re: Compiling with AIR 3.5.

2013-01-23 Thread Christofer Dutz
The problem is that usually the Air Version is tightly coupled with the
flex version. So as far as I know it's usually not possible to build Air
applications with other versions than the one shipped with the FDK. The
mavenizer now did a first step to decouple this. Unfortunately I never
built any Air applications therefore I didn't put much effort into this.
Flexmojos currently doesn't support all of the things the Air FDK would
generally support. I think most was with bundling Air application to run as
native applications on mobile devices. This will not work no matter how
good I do the deployment of the FDK. Velo had his FM Enterprise for this,
but as far as I know this project is dead.

What I am currently working on is a new plugin that will be built under the
hood of the Apache foundation. I doubt I will be adding new features to FM,
just fixing bugs that keep you guys from using FM.

If you have any trouble with the Air support which works in FM3, FM4 or FM5
it would be great if you could whip up a sample project and open an Issue
on https://flexmojos.atlassian.net/ and attach that project to the issue.
Then I could add this to the testsuite and work on getting the Air support
up to date. But keep in mind ... I'll only fix stuff that worked in earlier
versions of FM ... I will not implement native device support.

Chris


2013/1/22 Asking Dumbquestions askingdumbquesti...@gmail.com

 @Piergiorgio Niero

 Thank you man!  Are you compiling with AIR?  If yes, any chance you could
 share an example pom.xml or zipped project example?

 Kind regards, adq


 On Monday, January 14, 2013 10:05:46 AM UTC-5, Piergiorgio Niero wrote:

 Ok, I created a skinny recap of my experience so far with flexmojos 6.x
 and mavenizer.
 I'll continue keeping up to date for myself, if there's any official doc
 spawning somewhere please let me know so I can unpublish my doc (for
 documentation coherence)

 here's the link https://docs.google.com/**document/d/**
 1EENPR4J0P4TRD4NL9G2oSLwBkYKgf**wyt4uKv03QAdYw/pubhttps://docs.google.com/document/d/1EENPR4J0P4TRD4NL9G2oSLwBkYKgfwyt4uKv03QAdYw/pub

 ciao
 pigiuz

 On Monday, January 14, 2013 10:59:44 AM UTC+1, Piergiorgio Niero wrote:

 I think these questions on how to build should be grouped in a sticky
 post somewhere or in a wiki page.
 Is there any existing one already?


 On Thursday, December 27, 2012 9:47:28 AM UTC+1, Christofer Dutz wrote:

 Yep ... that's the sequence.
 And don't forgett to skip the big testsuite or you would have do deploy
 allmost every FDK.

 To admit ... I think the future will be at Apache ... at least that's
 where I'm currently sticking all my free time.
 They are allways looking for guys willing to get their hands dirty :-)

 Chris

 2012/12/18 Asking Dumbquestions askingdum...@gmail.com

 Ok, so, get the mavenizer first, build and deploy Flex 4.6.0.23201.
  Then, I can compile flexmojos 6 from source?

 If that the sequence of events?

 Man, thanks for your time.

 Is there anyway some of us can get involved to ensure flexmojos has a
 future?

 Although it's probable the flex is dead, AS#and AIR will be around for
 at least several years with 2d/3d gaming and cross-platform mobile
 development.  It would be great to see flexmojos become more of an
 AIRmojos, etc.

 Thanks!


  --
 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/


-- 
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/


Re: [flex-mojos] Re: Compiling with AIR 3.5.

2013-01-23 Thread Asking Dumbquestions
Factually, I'm not certain of this:
 

 The problem is that usually the Air Version is tightly coupled with the 
 flex version.


...as we could customize the Flex sdk by overwriting the AIR files 
distributed within the Flex framework with the AIR sdk of your choice, etc.

Moreover, Adobe has separated out the AIR sdk, so now you can compile AIR 
apps completely without the Flex framework.  As the future of AS3 
development will be probably mostly AIR related, my hope was that Maven 
support would continue in this direction.  As it appears that time is a 
constraint on future development of Flexmojos, I'd vote for petitioning 
someone like JetBrains to pick up the project to include the feature as 
part of Intellij: They are about the only company that seems to care to 
give AS3 development some industrial tools, and including robust Maven 
support for AIR would give their product further superiority over 
FlashBuilder!





On Wednesday, January 23, 2013 8:28:43 AM UTC-5, Christofer Dutz wrote:

 The problem is that usually the Air Version is tightly coupled with the 
 flex version. So as far as I know it's usually not possible to build Air 
 applications with other versions than the one shipped with the FDK. The 
 mavenizer now did a first step to decouple this. Unfortunately I never 
 built any Air applications therefore I didn't put much effort into this. 
 Flexmojos currently doesn't support all of the things the Air FDK would 
 generally support. I think most was with bundling Air application to run as 
 native applications on mobile devices. This will not work no matter how 
 good I do the deployment of the FDK. Velo had his FM Enterprise for this, 
 but as far as I know this project is dead. 

 What I am currently working on is a new plugin that will be built under 
 the hood of the Apache foundation. I doubt I will be adding new features to 
 FM, just fixing bugs that keep you guys from using FM.

 If you have any trouble with the Air support which works in FM3, FM4 or 
 FM5 it would be great if you could whip up a sample project and open an 
 Issue on https://flexmojos.atlassian.net/ and attach that project to the 
 issue. Then I could add this to the testsuite and work on getting the Air 
 support up to date. But keep in mind ... I'll only fix stuff that worked in 
 earlier versions of FM ... I will not implement native device support.

 Chris


 2013/1/22 Asking Dumbquestions askingdum...@gmail.com javascript:

 @Piergiorgio Niero

 Thank you man!  Are you compiling with AIR?  If yes, any chance you could 
 share an example pom.xml or zipped project example?

 Kind regards, adq


 On Monday, January 14, 2013 10:05:46 AM UTC-5, Piergiorgio Niero wrote:

 Ok, I created a skinny recap of my experience so far with flexmojos 6.x 
 and mavenizer.
 I'll continue keeping up to date for myself, if there's any official doc 
 spawning somewhere please let me know so I can unpublish my doc (for 
 documentation coherence)

 here's the link https://docs.google.com/**document/d/**
 1EENPR4J0P4TRD4NL9G2oSLwBkYKgf**wyt4uKv03QAdYw/pubhttps://docs.google.com/document/d/1EENPR4J0P4TRD4NL9G2oSLwBkYKgfwyt4uKv03QAdYw/pub

 ciao
 pigiuz

 On Monday, January 14, 2013 10:59:44 AM UTC+1, Piergiorgio Niero wrote:

 I think these questions on how to build should be grouped in a sticky 
 post somewhere or in a wiki page.
 Is there any existing one already?


 On Thursday, December 27, 2012 9:47:28 AM UTC+1, Christofer Dutz wrote:

 Yep ... that's the sequence.
 And don't forgett to skip the big testsuite or you would have do 
 deploy allmost every FDK.

 To admit ... I think the future will be at Apache ... at least that's 
 where I'm currently sticking all my free time.
 They are allways looking for guys willing to get their hands dirty :-)

 Chris

 2012/12/18 Asking Dumbquestions askingdum...@gmail.com

 Ok, so, get the mavenizer first, build and deploy Flex 4.6.0.23201. 
  Then, I can compile flexmojos 6 from source?

 If that the sequence of events?

 Man, thanks for your time.

 Is there anyway some of us can get involved to ensure flexmojos has a 
 future?

 Although it's probable the flex is dead, AS#and AIR will be around 
 for at least several years with 2d/3d gaming and cross-platform mobile 
 development.  It would be great to see flexmojos become more of an 
 AIRmojos, etc.

 Thanks!


  -- 
 You received this message because you are subscribed to the Google
 Groups Flex Mojos group.
 To post to this group, send email to flex-...@googlegroups.comjavascript:
 To unsubscribe from this group, send email to
 flex-mojos+...@googlegroups.com javascript:
 For more options, visit this group at
 http://groups.google.com/group/flex-mojos
  
 http://flexmojos.sonatype.org/




-- 
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

Re: [flex-mojos] Re: Compiling with AIR 3.5.

2013-01-15 Thread Piergiorgio Niero
Ok, I created a skinny recap of my experience so far with flexmojos 6.x and 
mavenizer.
I'll continue keeping up to date for myself, if there's any official doc 
spawning somewhere please let me know so I can unpublish my doc (for 
documentation coherence)

here's the 
link 
https://docs.google.com/document/d/1EENPR4J0P4TRD4NL9G2oSLwBkYKgfwyt4uKv03QAdYw/pub

ciao
pigiuz

On Monday, January 14, 2013 10:59:44 AM UTC+1, Piergiorgio Niero wrote:

 I think these questions on how to build should be grouped in a sticky post 
 somewhere or in a wiki page.
 Is there any existing one already?


 On Thursday, December 27, 2012 9:47:28 AM UTC+1, Christofer Dutz wrote:

 Yep ... that's the sequence.
 And don't forgett to skip the big testsuite or you would have do deploy 
 allmost every FDK.

 To admit ... I think the future will be at Apache ... at least that's 
 where I'm currently sticking all my free time.
 They are allways looking for guys willing to get their hands dirty :-)

 Chris

 2012/12/18 Asking Dumbquestions askingdum...@gmail.com

 Ok, so, get the mavenizer first, build and deploy Flex 4.6.0.23201. 
  Then, I can compile flexmojos 6 from source?

 If that the sequence of events?

 Man, thanks for your time.

 Is there anyway some of us can get involved to ensure flexmojos has a 
 future?

 Although it's probable the flex is dead, AS#and AIR will be around for 
 at least several years with 2d/3d gaming and cross-platform mobile 
 development.  It would be great to see flexmojos become more of an 
 AIRmojos, etc.

 Thanks!




-- 
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/


Re: [flex-mojos] Re: Compiling with AIR 3.5.

2013-01-08 Thread Christofer Dutz
Yep ... that's the sequence.
And don't forgett to skip the big testsuite or you would have do deploy
allmost every FDK.

To admit ... I think the future will be at Apache ... at least that's where
I'm currently sticking all my free time.
They are allways looking for guys willing to get their hands dirty :-)

Chris

2012/12/18 Asking Dumbquestions askingdumbquesti...@gmail.com

 Ok, so, get the mavenizer first, build and deploy Flex 4.6.0.23201.
  Then, I can compile flexmojos 6 from source?

 If that the sequence of events?

 Man, thanks for your time.

 Is there anyway some of us can get involved to ensure flexmojos has a
 future?

 Although it's probable the flex is dead, AS#and AIR will be around for at
 least several years with 2d/3d gaming and cross-platform mobile
 development.  It would be great to see flexmojos become more of an
 AIRmojos, etc.

 Thanks!


-- 
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/


Re: [flex-mojos] Re: Compiling with AIR 3.5.

2012-12-26 Thread Asking Dumbquestions
Ok, so, get the mavenizer first, build and deploy Flex 4.6.0.23201.  Then,
I can compile flexmojos 6 from source?

If that the sequence of events?

Man, thanks for your time.

Is there anyway some of us can get involved to ensure flexmojos has a
future?

Although it's probable the flex is dead, AS#and AIR will be around for at
least several years with 2d/3d gaming and cross-platform mobile
development.  It would be great to see flexmojos become more of an
AIRmojos, etc.

Thanks!


On Tue, Dec 18, 2012 at 2:43 AM, Christofer Dutz
christofer.d...@gmail.comwrote:

 FM6 only works with FDKs that were created by the Mavenizer tool. It
 doesn't work with the FDKs deployed by Velo. If you want to build the
 entire Testsuite you will have to build all of the FDKs, which might not be
 what you want. So I suggest to create a mavenized version of 4.6.0.23201
 and skip the test-harness.

 Chris

 2012/12/18 Asking Dumbquestions askingdumbquesti...@gmail.com

 Non-resolvable import POM: Failure to find
 com.adobe.flex:framework:pom:4.6.0.23201 in
 http://repository.sonatype.org/content/groups/flexgroup/ was cached in
 the local repository, resolution will not be reattempted until the update
 interval of flex-mojos-repository has elapsed or updates are forced @ line
 655, column 25


  --
 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/


-- 
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/


Re: [flex-mojos] Re: Compiling with AIR 3.5.

2012-12-18 Thread Christofer Dutz
FM6 only works with FDKs that were created by the Mavenizer tool. It
doesn't work with the FDKs deployed by Velo. If you want to build the
entire Testsuite you will have to build all of the FDKs, which might not be
what you want. So I suggest to create a mavenized version of 4.6.0.23201
and skip the test-harness.

Chris

2012/12/18 Asking Dumbquestions askingdumbquesti...@gmail.com

 Non-resolvable import POM: Failure to find
 com.adobe.flex:framework:pom:4.6.0.23201 in
 http://repository.sonatype.org/content/groups/flexgroup/ was cached in
 the local repository, resolution will not be reattempted until the update
 interval of flex-mojos-repository has elapsed or updates are forced @ line
 655, column 25


-- 
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/


Re: [flex-mojos] Re: Compiling with AIR 3.5.

2012-12-17 Thread Christofer Dutz
Comming back to the original question :-)

The lack of available FDKs was the reason I created my Mavenizer tool ...
It's hosted at Apache Flex (Cause I thought it belonged there).
http://incubator.apache.org/flex/utilities.html
The code is at the flex utils svn repo: https://svn.apache.org/repos/asf
/incubator/flex/utilities/trunk/mavenizer/
The tool is able to mavenize any given Flex FDK creating maven artifacts
from the content. So I would suggest you download the Adobe FDK you want to
use and build a maven version from it using the Mavenizer. After this you
can build your application using Flexmojos 6.x (
https://github.com/chrisdutz/flexmojos) ... so I'd suggest to give that a
try.

Chris

2012/12/16 Marvin Froeder velo...@gmail.com

 I hardly would call flexmojos a opensource project...
 more a freeware then anything...


-- 
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/


Re: [flex-mojos] Re: Compiling with AIR 3.5.

2012-12-17 Thread Asking Dumbquestions
Perfect, thanks,

But, hmm, when trying to compile from your Flexmojos 6 source, I get the
following failure:

Non-resolvable import POM: Failure to find
com.adobe.flex:framework:pom:4.6.0.23201 in
http://repository.sonatype.org/content/groups/flexgroup/ was cached in the
local repository, resolution will not be reattempted until the update
interval of flex-mojos-repository has elapsed or updates are forced @ line
655, column 25

Please note my settings.xml is as required as stated here:

https://docs.sonatype.org/display/FLEXMOJOS/Building+Flexmojos+from+sources

Any advice?
Thanks!

On Mon, Dec 17, 2012 at 3:27 AM, Christofer Dutz
christofer.d...@gmail.comwrote:

 http://incubator.apache.org/flex/utilities.html

-- 
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/


Re: [flex-mojos] Re: Compiling with AIR 3.5.

2012-12-16 Thread Michael Bushe
Open Source is a labor of love. 

Michael

On Dec 16, 2012, at 6:47 AM, Marvin Froeder velo...@gmail.com wrote:

 
 
 On Dec 14, 12:41 pm, rpm r...@ecosystems.us wrote:
 I have the impression the FM Enterprise is no longer in development due to
 Velo's lack of interest in Flex.  What is the status of FM Enterprise?
 
 Well, what I gave up was working for free and having to hear people
 saying you must release flexmojos cause our company needs it
 
 Anyway, FME had a very little acceptance.  So I quit it too.
 
 
 VELO
 
 -- 
 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/

-- 
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/