Re: [FlexJS, Maven] Build library project type to js only swc

2017-04-27 Thread Christofer Dutz
Glad to hear that ;-) Keep up the good work ( Chris Am 27.04.17, 17:25 schrieb "piotrz" : Hi Chris, I would like to report that I was able to build library + my project by Maven. MAVEN ROX! :) Thank you!! Piotr - Apache Flex

Re: [FlexJS, Maven] Build library project type to js only swc

2017-04-27 Thread piotrz
Hi Chris, I would like to report that I was able to build library + my project by Maven. MAVEN ROX! :) Thank you!! Piotr - Apache Flex PMC piotrzarzyck...@gmail.com -- View this message in context: http://apache-flex-development.247.n4.nabble.com/FlexJS-Maven-Build-library-project-t

Re: [FlexJS, Maven] Build library project type to js only swc

2017-04-24 Thread Christofer Dutz
Hi Piotr, I guess the reason for the build failing is the following: You are not using the default maven structure (src/main/resources) for the directory containing the template. Therefore, Maven is not automatically processing this. Usually the maven resources plugin copies resources to the

Re: [FlexJS, Maven] Build library project type to js only swc

2017-04-23 Thread piotrz
Hi Chris, I definitely moved forward with build of my project, but I have one weird exception [1] which I really do not know what's mean. It occurs when I'm adding following option to my pom: ${basedir}/target/javascript/bin/js-debug/mdl-js-index-template.html Everything is building fine withou

Re: [FlexJS, Maven] Build library project type to js only swc

2017-04-12 Thread piotrz
Chris, Results are pretty similar even if I used typedefs. I think I will try to creat simple example which reproduce the issue and get back to you. Thanks, Piotr - Apache Flex PMC piotrzarzyck...@gmail.com -- View this message in context: http://apache-flex-development.247.n4.nabble.

Re: [FlexJS, Maven] Build library project type to js only swc

2017-04-11 Thread piotrz
Chris, I'm using swc, but will try to create extern swc and get back to you with the results. Piotr - Apache Flex PMC piotrzarzyck...@gmail.com -- View this message in context: http://apache-flex-development.247.n4.nabble.com/FlexJS-Maven-Build-library-project-type-to-js-only-swc-tp61

Re: [FlexJS, Maven] Build library project type to js only swc

2017-04-11 Thread Christofer Dutz
Hi Piotr, Are you using the swc or the extern swc … I would suggest having a look at the extern swc and see if it contains what you are looking for. In any other case please just wait a little while … as soon as develop is blue again I’ll start working on FlexJS and as far as I understood thing

Re: [FlexJS, Maven] Build library project type to js only swc

2017-04-11 Thread piotrz
But in that case for some reason using this swc in the project as dependency is unusable. My project do not see any class during Maven compilation. I'm getting an errors that classes which are in swc do not exists. Piotr - Apache Flex PMC piotrzarzyck...@gmail.com -- View this message in co

Re: [FlexJS, Maven] Build library project type to js only swc

2017-04-11 Thread Christofer Dutz
I guess so … I know the compilation of the swc will create the flashbytcode stuff in the swc and the javascript code in the swc and the js-actionscript in the external swc … but I guess Alex knows more about that. Chris Am 11.04.17, 16:28 schrieb "piotrz" : Hi Chris, So you are sa

Re: [FlexJS, Maven] Build library project type to js only swc

2017-04-11 Thread piotrz
Hi Chris, So you are saying that JS only compilation of some library will not produce anything in as I mentioned earlier. Thanks, Piotr - Apache Flex PMC piotrzarzyck...@gmail.com -- View this message in context: http://apache-flex-development.247.n4.nabble.com/FlexJS-Maven-Bu

Re: [FlexJS, Maven] Build library project type to js only swc

2017-04-06 Thread Christofer Dutz
Hi Piotr, I’ll look into this as soon as I find some time. To me it seems as If we have three compilations at the moment: - AS compilation (produces the catalog.xml and the swf content (Flash Version) inside the swc - JS compilation (produces the js code inside the swc - Extern compilation (prod

Re: [FlexJS, Maven] Build library project type to js only swc

2017-04-06 Thread piotrz
Chris, Harbs When I'm using compiled swc library in the other project it completely do not see classes from those library. I think the reason is for sure cause catalog.xml do not contain anything in library tag. Piotr - Apache Flex PMC piotrzarzyck...@gmail.com -- View this message in cont

Re: [FlexJS, Maven] Build library project type to js only swc

2017-04-05 Thread piotrz
Chris, Thank you that was it. I was able to build library, but the swc result do not contain information which I required. In generated swc I see all js files, but in catalog.xml library tag is empty and I don't see components tag as it is in other swc inside FlexJS SDK etc, I have only in tag fi

Re: [FlexJS, Maven] Build library project type to js only swc

2017-04-05 Thread Harbs
Make sure you include js.swc as an external library. > On Apr 5, 2017, at 1:48 AM, piotrz wrote: > > Hi Harbs, > > It look like to me that Maven is doing everything what you are showing me in > build.xml at some point automatically. > > Cause generated by maven compile config look similar to y

Re: [FlexJS, Maven] Build library project type to js only swc

2017-04-04 Thread Christofer Dutz
Hi Piotr, You can tell Maven to skip the flash compilation by setting the configuration option “skipAS” to true. You can tell Maven to skip js by setting the configuration option “skipJS” to true. Think that was what you were looking for, correct? Chris Am 05.04.17, 07:48 schrieb "piotrz" :

Re: [FlexJS, Maven] Build library project type to js only swc

2017-04-04 Thread Alex Harui
FWIW, this should also be easier in the dual branch since there will then be a SWC for SWF and a SWC for JS and you could just skip the SWC for SWF. Someday, I hope to get back to the merge after getting these dependencies issues and the build fixed. -Alex On 4/4/17, 10:48 PM, "piotrz" wrote:

Re: [FlexJS, Maven] Build library project type to js only swc

2017-04-04 Thread piotrz
Hi Harbs, It look like to me that Maven is doing everything what you are showing me in build.xml at some point automatically. Cause generated by maven compile config look similar to yours. I get errors when compile-as-config.xml is being processed. Error: Missing builtin type Object When comp

Re: [FlexJS, Maven] Build library project type to js only swc

2017-04-04 Thread Harbs
Take a look at what I did here: https://github.com/unhurdle/cep-flexjs/tree/master/CEPTools > On Apr 4, 2017, at 7:04 PM, piotrz wrote: > > Hi All, > > I have need to built some FlexJS library which contains my components to JS > on