Re: [FlexJS] Working to fix a compiler bug - problem with the Problems

2017-03-06 Thread Greg Dove
"It sound to me like you know what you’re talking about" Haha, Harbs that's probably more reassuring to me than it should be to you. In terms of anything at all in the compiler, I am still LAYG (learning as you go) here ;) (btw, you can never have too many 'as you go' acronyms) I actually shared

Re: ArrayElementType?

2017-03-06 Thread Carlos Rovira
In my experience this metadata was almost useless since as Clint said is only MXML, but you should get remote data 99% of the times, so in the end you end not using it for the few cases that you could have declared in code (that should be typical hello worlds basic examples that doesn't match real

Re: [FlexJS] Working to fix a compiler bug - problem with the Problems

2017-03-06 Thread Harbs
I have noticed that MXML compiling does not produce the greatest error reports. I should have recorded issues as I saw them, but I didn’t. :-( These two cases make sense to me, and thanks for fixing them. I’ll be happy to update falcon and make sure that things still compile correctly in my apps

Re: [DISCUSS] Apache Flex SDK 4.16 RC3

2017-03-06 Thread Christofer Dutz
And if you are having problems downloading osmf … keep in mind to install the Java Cryptography Extension to the JRE you are using: http://stackoverflow.com/questions/38203971/javax-net-ssl-sslhandshakeexception-received-fatal-alert-handshake-failure/38264878#38264878 In my case I couldn’t downlo

[FlexJS] Embed Workaround

2017-03-06 Thread yishayw
Hi, While implementing BlendBead, I came across a need to steal out of mx classes like ColorBurnShader [1], which use an embed tag. As we currently don't have Embed in FlexJS can anyone suggest a workaround? Thanks. [1] https://paste.apache.org/GnWB -- View this message in context: http://ap

[compc] error

2017-03-06 Thread Harbs
Anyone have an idea what this error might be? [compc] /Users/harbs/Documents/git/PrintUI/printui-flexjs/text_engine/frameworks/tlf/src/org/apache/flex/textLayout/container/TextContainerManager.as Error: Internal error in ABC generator subsystem, when generating code for: /Users/harbs/Documen

[FlexJS] int.MAX_VALUE

2017-03-06 Thread Harbs
int.MAX_VALUE (and presumably int.MIN_VALUE) is not something that’s recognized by FlexJS. Is that something we want to fix? Harbs

Re: [compc] error

2017-03-06 Thread Christofer Dutz
Hi Harbs, Having a look at that part of the code: ASScope pkgScope = scope; while (!(pkgScope instanceof PackageScope)) pkgScope = pkgScope.getContainingScope(); : Anyone have an idea what this error might be? [compc] /Users/harbs/Doc

Re: [compc] error

2017-03-06 Thread Harbs
> When building with Maven it’s simple (I just click the “debug” button of my > maven build). No Idea how to do that with Ant though. No idea what this even means. ;-) I’d really like to sit down with you while we’re in Miami and see how you are setup to work on the compiler. I really wish I wa

Re: [FlexJS] Events redux

2017-03-06 Thread Harbs
> As I’m writing this I’m realizing that I can probably not make these classes > implement IEventDispatcher. I’ll see how that goes… Bah. It creates an EventDispatcher from new EventDispatcher(this). It also uses hasEventListener and willTrigger which FlexJS both do not support… :-( > On Mar 6

Re: [compc] error

2017-03-06 Thread Christofer Dutz
I’d be more than happy to do that ☺ Ideally at a bar at the beach with a nice selection of hops-smoothys ;-) But for now, assuming you are using IntelliJ and Maven: All I do, is select “clean” and “install” in the maven tab, right-click and select “debug”. Additionally in the debugger tab, I cli

[FlexJS] Events redux

2017-03-06 Thread Harbs
I’m again struggling with the fact that FlexJS events have weird inheritance. I’m working on a TLF port to FlexJS (and no, I have no idea when I’ll be able to donate the results. I hope to be able to donate it in some form, but I don’t know when I’ll be in a position to do that.) Either way, TLF

Re: [DISCUSS] Apache Flex SDK 4.16 RC3

2017-03-06 Thread Tom Chiverton
That sounds bad. We should add this to the install instructions ? Tom On 06/03/17 09:52, Christofer Dutz wrote: And if you are having problems downloading osmf … keep in mind to install the Java Cryptography Extension to the JRE you are using: http://stackoverflow.com/questions/38203971/javax

Re: [FlexJS] Events redux

2017-03-06 Thread Alex Harui
Hopefully, I'll get the dual branch operational today and we can check out this scenario on that branch. It should alleviate a lot of the issue. hasEventListener has been implemented. I didn't notice until now that it is commented out of IEventDispatcher for JS. Don't know why that his, but fee

Re: [FlexJS] int.MAX_VALUE

2017-03-06 Thread Alex Harui
On 3/6/17, 6:10 AM, "Harbs" wrote: >int.MAX_VALUE (and presumably int.MIN_VALUE) is not something that’s >recognized by FlexJS. Is that something we want to fix? Yes. There is special case code in the compiler to handle it and the unit tests are passing, so there must be something about how y

Re: [FlexJS] int.MAX_VALUE

2017-03-06 Thread Harbs
I already changed it to use 2147483647 and -2147483647 instead of the constants. If I get ambitious, I’ll try to track it down and figure out why my build is special, but I’m fine with just using the values in my case. > On Mar 6, 2017, at 5:54 PM, Alex Harui wrote: > > > > On 3/6/17, 6:10

Re: [FlexJS] Events redux

2017-03-06 Thread Harbs
Actually, it looks like it’s only implemented to make the compiler happy. I’d be interested in trying out dual. How could it work on the swf side if willTrigger is not implemented? And how does it work when the JS side and swf side have different signatures (i.e. flash Event vs. Object)? > On M

Re: [compc] error

2017-03-06 Thread Alex Harui
Is this happening during the cross-compile? If so, the dual branch may suppress these issues as well. The ABCGenerator is asked to run even during cross-compiles to catch certain kinds of errors, but then might fail in other situations that we don't care about. -Alex On 3/6/17, 6:01 AM, "Harbs"

Re: [FlexJS] Embed Workaround

2017-03-06 Thread Alex Harui
On 3/6/17, 2:55 AM, "yishayw" wrote: >Hi, > >While implementing BlendBead, I came across a need to steal out of mx >classes like ColorBurnShader [1], which use an embed tag. As we currently >don't have Embed in FlexJS can anyone suggest a workaround? The SWF compiler handles [Embed]. But I ha

Re: [FlexJS] Events redux

2017-03-06 Thread Alex Harui
On 3/6/17, 8:05 AM, "Harbs" wrote: >Actually, it looks like it’s only implemented to make the compiler happy. Hmm. In my copy of EventDispatcher.as, hasEventListener calls goog.events.hasListener. The SWF side picks it up from flash.events.EventDispatcher. With this and the problem with int

Re: [FlexJS] Embed Workaround

2017-03-06 Thread Harbs
Yishay got an error that ByteArrayAsset could not be found. > On Mar 6, 2017, at 6:00 PM, Alex Harui wrote: > > > > On 3/6/17, 2:55 AM, "yishayw" wrote: > >> Hi, >> >> While implementing BlendBead, I came across a need to steal out of mx >> classes like ColorBurnShader [1], which use an emb

Re: [FlexJS] Events redux

2017-03-06 Thread Harbs
MockLayoutChild had an error. When I fixed that, everything seems to compile. I’ll commit the change… > On Mar 6, 2017, at 5:51 PM, Alex Harui wrote: > > hasEventListener has been implemented. I didn't notice until now that it > is commented out of IEventDispatcher for JS. Don't know why that

Re: [MDL Dialogs] was: Re: [FlexJS] MDL - Dynamic Child Problem

2017-03-06 Thread piotrz
Carlos, I'm bringing back to live this thread with question about default upgrade. Piotr - Apache Flex PMC piotrzarzyck...@gmail.com -- View this message in context: http://apache-flex-development.247.n4.nabble.com/FlexJS-MDL-Dynamic-Child-Problem-tp59595p60154.html Sent from the Apac

Re: [compc] error

2017-03-06 Thread Harbs
I’m currently only compiling for js (primarily because it allows me to focus on what I currently care about) if that makes a difference. Here’s my current output: https://paste.apache.org/YwCz > On Mar 6, 2017, at 5:57 PM, Alex Harui wrote: > > Is this happenin

Re: [FlexJS] Embed Workaround

2017-03-06 Thread Alex Harui
On 3/6/17, 8:33 AM, "Harbs" wrote: >Yishay got an error that ByteArrayAsset could not be found. Ah yes. That should be relatively easy to fix for SWF compiles. But what should the cross-compiler do? -Alex

Re: [FlexJS] Events redux

2017-03-06 Thread Harbs
> On Mar 6, 2017, at 6:24 PM, Alex Harui wrote: > > > > On 3/6/17, 8:05 AM, "Harbs" wrote: > >> Actually, it looks like it’s only implemented to make the compiler happy. > > Hmm. In my copy of EventDispatcher.as, hasEventListener calls > goog.events.hasListener. The SWF side picks it up f

Re: [FlexJS] requestAnimationFrame

2017-03-06 Thread Josh Tynjala
It looks like requestAnimationFrame() is defined globally, but not on the window object, in w3c_anim_timing.js. You should be able to define Window.prototype.requestAnimationFrame in missing.js. That should make it available on the window object. Any time you need to add something to missing.js,

Re: [FlexJS] Embed Workaround

2017-03-06 Thread Harbs
How to add full support for [Embed] is a complicated question. I think it would be great to support it, but the details get sticky. I think we need a list of use cases for [Embed] to figure out the right behavior for each and a way to differentiate the use cases. On the simplest level, it could

Re: [compc] error

2017-03-06 Thread Harbs
FWIW, it’s somehow related to MouseEvent in an internal class inside TextContainerManager. I fully qualified the type as org.apache.flex.events.MouseEvent, and the error went away. This causes the error: // remap the mouse event for processing inside TLF. This is just the initial click. Make

Re: [FlexJS] Embed Workaround

2017-03-06 Thread Alex Harui
On 3/6/17, 9:05 AM, "Harbs" wrote: >How to add full support for [Embed] is a complicated question. > >I think it would be great to support it, but the details get sticky. I >think we need a list of use cases for [Embed] to figure out the right >behavior for each and a way to differentiate the u

Re: [FlexJS] Embed Workaround

2017-03-06 Thread Josh Tynjala
Maybe [Embed] could store bitmaps and binary data as Data URIs on the JS side: https://developer.mozilla.org/en-US/docs/Web/API/Canvas_API/Tutorial/Using_images#Embedding_an_image_via_data_URL https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/Data_URIs - Josh On Mon, Mar 6, 2017

[compc] error #2

2017-03-06 Thread Harbs
This is a weird one: When I include js.swc in my external-library-paths, I get the following error: [compc] /Users/harbs/Documents/git/PrintUI/printui-flexjs/text_engine/frameworks/tlf/src/org/apache/flex/textLayout/conversion/BaseTextLayoutImporter.as(96): col: 19 Error: Attempted access of in

Re: [FlexJS] Embed Workaround

2017-03-06 Thread Harbs
I’m sorry but you totally lost me there… ;-) What name, used where? I don’t understand how the [Embed] tag works and where the ByteArrayAsset comes from. > On Mar 6, 2017, at 7:27 PM, Alex Harui wrote: > > > > On 3/6/17, 9:05 AM, "Harbs" wrote: > >> How to add full support for [Embed] is

FlexjS: Unable to download Apache FlexJS Dual Nightly Build

2017-03-06 Thread PKumar
Hi, I am unable to download FlexJS Dual or flexJS nightly build and getting the following error. Please suggest. Version 3.1.0 (windows) Using Locale: en_US Fetched the SDK download mirror URL from the CGI. AIR version 24.0 Flash Player version 24.0 Creating Apache FlexJS home Creating temporary

[compc] error #3

2017-03-06 Thread Harbs
I eliminated my compilation errors, but I’m having trouble outputting my swc. AFAICT compile-asjs-swc is working correctly. I get a swc with the library.swf and catalog.xml which at first glance has all the classes. However, I’m getting weird results from compile-asjs. Instead of the js files b

Re: FlexjS: Unable to download Apache FlexJS Dual Nightly Build

2017-03-06 Thread Alex Harui
Hmm. It is working for me. Maybe you really are getting corruption during download? -Alex On 3/6/17, 9:36 AM, "PKumar" wrote: >Hi, > >I am unable to download FlexJS Dual or flexJS nightly build and getting >the >following error. Please suggest. > >Version 3.1.0 (windows) >Using Locale: en_US

Re: [compc] error #2

2017-03-06 Thread Alex Harui
I fixed one of these in the dual branch. I had to add toString() to EventDispatcher. See abcc8ff8e78448b0b7787f868417484f68d0e4d5 -Alex On 3/6/17, 9:29 AM, "Harbs" wrote: >This is a weird one: > >When I include js.swc in my external-library-paths, I get the following >error: > >[compc] >/Use

Re: [compc] error #3

2017-03-06 Thread Alex Harui
Looks like there is a unary operator that isn't expected. Is there an "at" operator in AS? -Alex On 3/6/17, 10:06 AM, "Harbs" wrote: >I eliminated my compilation errors, but I’m having trouble outputting my >swc. > >AFAICT compile-asjs-swc is working correctly. I get a swc with the >library.sw

[FlexJS] Group container

2017-03-06 Thread Peter Ent
Hi, Today I've introduced the FlexJS Group container - a lightweight alternative to the Container class. The Group container provides hardly more than on the HTML platform and the code generated using it should produce a DOM without the nested elements that Container gives you. Further, Group

Re: [compc] error #3

2017-03-06 Thread Harbs
I can’t find anything like that. Still looking… > On Mar 6, 2017, at 8:21 PM, Alex Harui wrote: > > Looks like there is a unary operator that isn't expected. Is there an > "at" operator in AS? > > -Alex > > On 3/6/17, 10:06 AM, "Harbs" wrote: > >> I eliminated my compilation errors, but I’m

Re: [compc] error #3

2017-03-06 Thread Alex Harui
Ah, after, digging deeper, it is the @ operator in XML. And some bugs around that were also fixed in Dual. I think you can try dual now. It is only failing on checkintests and I just pushed the fix for that. If you wait about 30 minutes, and you see the build passes email, you can try getting d

Re: [compc] error #3

2017-03-06 Thread Harbs
I can’t even figure out which class is causing the issue. I thought it was TextLayoutImporter, but even after converting the class to a skeleton, I’m getting the error: [java] Compiling file: org.apache.flex.textLayout.events.DamageEvent [java] Writing file: js/out/org/apache/flex/tex

Re: [FlexJS] Embed Workaround

2017-03-06 Thread Alex Harui
I just pushed an untested attempt to allow using a different class for embeds. It is in the develop branch. Normally, the compiler expects to find a flex SDK swc with mx.core.ByteArrayAsset in it. You should be able to create an org.apache.flex.core.ByteArrayAsset class that extends flash.utils.

Re: git commit: [flex-asjs] [refs/heads/develop] - Introducing the Group container.

2017-03-06 Thread Piotr Zarzycki
Hi Peter, Nice job! Could you please add @productversion FlexJS 0.8 ? I think it can be useful in future. Thanks, Piotr 2017-03-06 19:15 GMT+01:00 : > Repository: flex-asjs > Updated Branches: > refs/heads/develop 8fe2f0831 -> 79d45cba0 > > > Introducing the Group container. > > > Project: ht

Re: [compc] error #3

2017-03-06 Thread Alex Harui
It might occur in more than one file. I'd say this one is in InlineGraphicElement. -Alex On 3/6/17, 11:31 AM, "Harbs" wrote: >I can’t even figure out which class is causing the issue. > >I thought it was TextLayoutImporter, but even after converting the class >to a skeleton, I’m getting the er

Re: [MAVEN-BUILD] FlexJS Framework (maven) - Build # 769 - Still Failing

2017-03-06 Thread Piotr Zarzycki
I'm working on fixing that! :) Piotr 2017-03-06 21:22 GMT+01:00 Apache Jenkins Server : > The Apache Jenkins build system has built FlexJS Framework (maven) (build > #769) > > Status: Still Failing > > Check console output at https://builds.apache.org/job/ > FlexJS%20Framework%20(maven)/769/ to

Re: [DISCUSS] Apache Flex SDK 4.16 RC3

2017-03-06 Thread Justin Mclean
HI, > That sounds bad. We should add this to the install instructions ? It’s already mentioned in the README. Thanks, Justin

[FlexJS] Cannot use my custom UIBase type class in mxml

2017-03-06 Thread piotrz
Hi, I'm not sure what I'm doing wrong but I was trying to extend my class by another class UIBase type and usit in mxml. class MyBaseClass extends UIBase {} class MyCustomClass extends MyBaseClass {} - I got an error: "This tag could not be resolved to an ActionScript class. It will be ign

RE: massive memory leak in Flex

2017-03-06 Thread Jason Taylor
excellent, I'll just add this permantly in to our debug builds so our QA can check for mem leaks as well. Ty. Currently, I believe the issue is scout holding onto references and thus not allowing the items to hit GC -Original Message- From: Alex Harui [mailto:aha...@adobe.com] Sent: Fr

Re: [FlexJS] Cannot use my custom UIBase type class in mxml

2017-03-06 Thread piotrz
I was trying to fix build, but it seems that I will need some help. Tomorrow my time I will push branch with changes in MDL and in FlexTeamPage_MDL example. If someone could take a look. Thanks, Piotr - Apache Flex PMC piotrzarzyck...@gmail.com -- View this message in context: http://ap

Re: [FlexJS] Group container

2017-03-06 Thread piotrz
Hi Peter, It looks awesome. Cause if I'm enough skilled in CSS I can do whatever layout I want and I don't need to know any other one. - In theory. :) Thank you! Piotr - Apache Flex PMC piotrzarzyck...@gmail.com -- View this message in context: http://apache-flex-development.247.n4.na

Re: [FlexJS] Cannot use my custom UIBase type class in mxml

2017-03-06 Thread Alex Harui
What is "my" set to? For classes in a SWC, we typically put them in a manifest, and "my" references the URI mapping for the manifest. For classes not in a manifest, "my" has to point to the package. HTH, -Alex On 3/6/17, 12:43 PM, "piotrz" wrote: >Hi, > >I'm not sure what I'm doing wrong but I

Re: [FlexJS] Cannot use my custom UIBase type class in mxml

2017-03-06 Thread piotrz
Alex, I know about that. But let's leave for a moment above problems. I was started to change things cause in FlexTeamPage_MDL example we are getting following error. I've paste also code which causes it. - This tag has type MaterialIconBase and FontAwesome is some different type. Both extends

Re: [FlexJS] Group container

2017-03-06 Thread Alex Harui
On 3/6/17, 1:26 PM, "piotrz" wrote: >Hi Peter, > >It looks awesome. Cause if I'm enough skilled in CSS I can do whatever >layout I want and I don't need to know any other one. - In theory. :) True, but like with everything else in FlexJS, we are trying to encapsulate common patterns and make t

Re: [compc] error #3

2017-03-06 Thread Harbs
I’m done for the day. I’m getting the following error with dual: check-compiler: [taskdef] Could not load definitions from resource flexTasks.tasks. It could not be found. compile: [echo] Compiling libs/Language.swc [echo] FLEX_HOME: /Users/harbs/Documents/ApacheFlex/flex-asjs

Re: [compc] error #3

2017-03-06 Thread Alex Harui
Have you pulled down the dual branch from flex-falcon and built it? I would do wipe-all then "all". The dual capability is mostly compiler stuff. The build did complete, so you should be able to use the Installer to try it. Thanks, -Alex On 3/6/17, 2:02 PM, "Harbs" wrote: >I’m done for the d

Re: [FlexJS] Cannot use my custom UIBase type class in mxml

2017-03-06 Thread Alex Harui
On 3/6/17, 1:55 PM, "piotrz" wrote: >Alex, > >I know about that. But let's leave for a moment above problems. I was >started to change things cause in FlexTeamPage_MDL example we are getting >following error. I've paste also code which causes it. > > - This tag has type MaterialIconBase and Fo

Re: [FlexJS] Cannot use my custom UIBase type class in mxml

2017-03-06 Thread piotrz
It's probably correct and I did changes in MDL which seems to silly. I've introduced IMaterialIconBase - empty interface - Now this tag is IMaterialIconBase. I've created in FlexTeamPage_MDL example class [1] and I used it [2] and I ended up with errors. [3] [1] https://paste.apache.org/TBqg

Re: [FlexJS] Cannot use my custom UIBase type class in mxml

2017-03-06 Thread Alex Harui
What is the xmlns:itemrenderers set to? Thanks, -Alex On 3/6/17, 2:42 PM, "piotrz" wrote: >It's probably correct and I did changes in MDL which seems to silly. > >I've introduced IMaterialIconBase - empty interface > > - Now this tag is IMaterialIconBase. > >I've created in FlexTeamPage_MDL exa

Re: [FlexJS] Cannot use my custom UIBase type class in mxml

2017-03-06 Thread piotrz
That's pointing to the folder which contains two files: xmlns:itemrenderers="main.flex.itemRenderers.*" MemberItemRenderer MaterialIconWithFontAwesome Piotr - Apache Flex PMC piotrzarzyck...@gmail.com -- View this message in context: http://apache-flex-development.247.n4.nabble.com/F

Re: [FlexJS] Cannot use my custom UIBase type class in mxml

2017-03-06 Thread Josh Tynjala
In the FlexJS SDK, the source path for each project is usually src/main/flex instead of simply src. It looks like you accidentally have it set to src, so main.flex is incorrectly being added to the package name. I think MaterialIconWithFontAwesome is supposed to be in the itemRenderers package and

Re: [FlexJS] Cannot use my custom UIBase type class in mxml

2017-03-06 Thread Alex Harui
I think you might have the wrong package structure? The examples are generally set up with sources in src/main/flex, not in src. That's a relatively recent change. So the package for MaterialIconWithFontAwesome is probably just "itemRenderers" and the usage in MXML is probably: xmlns:itemrender

Re: [FlexJS] Cannot use my custom UIBase type class in mxml

2017-03-06 Thread piotrz
Josh! Ahh! That was so stupid :) I was to tired! :) Thank you! That was it! :) Piotr - Apache Flex PMC piotrzarzyck...@gmail.com -- View this message in context: http://apache-flex-development.247.n4.nabble.com/FlexJS-Cannot-use-my-custom-UIBase-type-class-in-mxml-tp60179p60193.html S

Re: [VOTE] Release Apache Flex SDK 4.16 RC3

2017-03-06 Thread Nicholas Kwiatkowski
+1 (binding) Java 1.7 OS: W10_x64 Source kit signatures match: y Source kit builds: y README is ok: y RELEASE_NOTES is ok: y NOTICE is ok: y LICENSE is ok: y No unapproved licenses or archives: y No unapproved binaries: y Binary kit signatures match: y NOTICE is ok: y LICENSE is ok: y No unappr

[4.16.0] # Apache Flex SDK 4.16.0 nightly build 251: Successful

2017-03-06 Thread flex . ci . builds
flex-sdk_release-candidate - Build #251 - Successful Changes since last build: No changes For more information, check the console output at http://apacheflexbuild.cloudapp.net:8080/job/flex-sdk_release-candidate/251/.

[FlexJS][FalconJX] Dual output Compilation

2017-03-06 Thread Alex Harui
Hi, I think I finally have the dual branch operational enough for folks to poke at. There is one issue with FB integration where it keeps starting a compile right after the previous compile finishes. I'm looking into that today, but for now I just go to Project Properties and switch to another F

Re: git commit: [flex-asjs] [refs/heads/develop] - Add JS support for non pixel numeric properties ie fontWeight

2017-03-06 Thread Greg Dove
I'm going to throw a comment in here from the sidelines At the end of reading this, you might think it seems like a trivial suggestion, but here goes anyway: I understand the logic in striving for a basic set of browser/swf compatible styles and I agree with the need. But I actually don't thi

Re: git commit: [flex-asjs] [refs/heads/develop] - Add JS support for non pixel numeric properties ie fontWeight

2017-03-06 Thread piotrz
Hi Greg, +1 for this idea. Piotr - Apache Flex PMC piotrzarzyck...@gmail.com -- View this message in context: http://apache-flex-development.247.n4.nabble.com/Re-git-commit-flex-asjs-refs-heads-develop-Add-JS-support-for-non-pixel-numeric-properties-ie-fontWet-tp60089p60199.html Sent

Re: git commit: [flex-asjs] [refs/heads/develop] - Add JS support for non pixel numeric properties ie fontWeight

2017-03-06 Thread Alex Harui
I'm definitely open to better naming schemes. I am hopeful that lots of our SWCs will have SWF equivalency to some degree over time, so actually putting SWF in the name may not be helpful in the long run. Better doc may be helpful as well. My 2 cents, -Alex On 3/6/17, 11:09 PM, "Greg Dove" wro

Re: [MAVEN-BUILD] FlexJS Framework (maven) - Build # 772 - Fixed

2017-03-06 Thread Piotr Zarzycki
Good news! :) 2017-03-07 8:35 GMT+01:00 Apache Jenkins Server : > The Apache Jenkins build system has built FlexJS Framework (maven) (build > #772) > > Status: Fixed > > Check console output at https://builds.apache.org/job/ > FlexJS%20Framework%20(maven)/772/ to view the results. -- Greeti