From rqz at fyskojk.net Tue Mar 1 09:29:56 2016 From: rqz at fyskojk.net (kxm) Date: Tue, 01 Mar 2016 14:29:56 -0000 Subject: [jbosstools-dev] =?utf-8?b?5oCO5qC35bu656uL5a6M5ZaE6K6h5YiS5L2T?= =?utf-8?b?57O7amJvc3NpZGUtZGV2?= Message-ID: <20170301231511042864@fyskojk.net> ???????????? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160301/72cba47e/attachment.html -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: PMC?????????.txt Url: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160301/72cba47e/attachment.txt From mistria at redhat.com Tue Mar 1 16:23:51 2016 From: mistria at redhat.com (Mickael Istria) Date: Tue, 1 Mar 2016 22:23:51 +0100 Subject: [jbosstools-dev] Suggested change for 4.60.x target-platforms: Neon M5 Message-ID: <56D60867.8020001@redhat.com> Here is a proposal for a change to the JBoss Tools and Red Hat JBoss Developer Studio 4.60.x target platforms. * https://github.com/jbosstools/jbosstools-target-platforms/pull/197 It consists in the following change(s): * JBIDE-21386: Create and use Neon M5 target-platform (p2diff at https://issues.jboss.org/browse/JBIDE-21386?focusedCommentId=13170435&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-13170435 ) Please review the above PR(s), as it will be applied next week. You can use the following to build & test the target-platform locally against your component(s). Build target-platform: cd /path/to/jbosstools-target-platforms/jbosstools/multiple git fetch origin pull/197/head && git checkout FETCH_HEAD mvn clean install Then, to test the new "multiple" target platform against your component's build: cd /path/to/your/jbosstools-component mvn clean verify -Dtpc.version=4.60.0.Alpha1-SNAPSHOT -Dtpc.targetKind=multiple If you'd like to build the "unified" target platform and repository too: cd /path/to/jbosstools-target-platforms/jbosstools/multiple mvn clean install -Dmultiple2repo # takes looooong cd /path/to/jbosstools-target-platforms/jbosstools/unified mvn clean install -DtargetRepositoryUrl=file:///path/to/jbosstools-target-platforms/jbosstools/multiple/jbosstools-multiple.target.repo/ Or, to test the new "unified" target platform against your component's build: cd /path/to/your/jbosstools-component mvn clean verify -Dtpc.version=.60.0.Alpha1-SNAPSHOT -- Mickael Istria Eclipse developer at JBoss, by Red Hat My blog - My Tweets -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160301/bdf8baa5/attachment.html From rstryker at redhat.com Tue Mar 1 21:13:58 2016 From: rstryker at redhat.com (Rob Stryker) Date: Tue, 1 Mar 2016 21:13:58 -0500 Subject: [jbosstools-dev] Fwd: Re: [wtp-dev] Question on XML Validation and oracle xsds In-Reply-To: <7FA7143F-9BEF-46F5-8388-8C0C99094211@selskabet.org> References: <7FA7143F-9BEF-46F5-8388-8C0C99094211@selskabet.org> Message-ID: <56D64C66.4060702@redhat.com> There have been three responses on wtp-dev about my xml schema question. They seem to indicate the problem is with the xml spec in general and the different behaviors in various libraries like xerces. Either way, this thread seems to indicate Jesper and Keith Chong are the guys to ping when we have further questions. - Rob -------- Forwarded Message -------- Subject: Re: [wtp-dev] Question on XML Validation and oracle xsds Date: Thu, 25 Feb 2016 23:43:07 +0100 From: Jesper Steen M?ller Reply-To: General discussion of project-wide or architectural issues. To: General discussion of project-wide or architectural issues. Hi Keith and Rob (You probably know all this already, but I???ll just add what I know) I touched some of the validator code a few years back: The number of URI resolver interfaces is horrible - one from Platform, one from Xerces and one from WTP as I recall), each introducing a slight impedance mismatch. Really, the XML Schema spec is at fault, by being so vague on the semantics of namespaces and schema locations, so Xerces can get away with their import policies (first import per namespace wins). So, the order of imports matter, and this affects the effective scope of each import: Imagine this scenario where you have to ???end-user??? schemas A.xsd and B.xsd. A relies on namespace C and D, B only on C. A.xsd imports A_C.xsd, which in turn also imports A_D.xsd (say, they were meant to be used together), and all is great, you can validate A.xsd by itself ??? no errors. B.xsd import a different file B_C.xsd, which doesn???t contain an import for namespace D, but and doesn???t need to. B.xsd also validates by itself. Now we make E.xsd which import A.xsd and B.xsd and uses namespaces A,B,C, and D. This should be just fine, and E.xsd can validate on its own. The import of B_C.xsd from B.xsd is ignored. Now flip the imports of A.xsd and B.xsd. This will cause the namespace for C to be imported from B_C.xsd, and E.xsd will no longer validate, since it never sees the import of A_D.xsd from A_C.xsd. Wonderful, isn???t it? Now, some short-sighted people even practice splitting namespace contents up into separate files, for greater ???composability???, but the major stacks don???t support that. In Eclipse, the XML Catalog support was supposed to be able to alleviate this, by allowing the end users manage the schemas themselves (I???d rather not have my IDE be dependent on some external server, even if we cache the result). Also, there is an extension point available for providing schemas (based on namespace OR schema location IIRC) along with plug-ins. We might be able to improve the error handling and logging side of things, but only by tying deeper into the Xerces code. -Jesper > On 25. feb. 2016, at 19.01, Keith Chong > wrote: > > Hi Rob > > The XML Schema validator is based on the Xerces validator (parser), so > I had a discussion with one of the developers. I'll try to answer your > questions: > > 1) The validator resolves components via imports so if the import is > missing, the schema is invalid. See: > https://www.w3.org/TR/xmlschema-1/#src-resolve > > 2) This is a good question. I suspect that this client schema on its > own is 'invalid' and is never intended to be used that way. (There are > no global elements too so you can't create an instance document from > it). The EE 5 schema includes this schema, so it is valid as part of > 'the whole'. eg. If you remove the include directive from the EE5 > schema, then the EE5 schema is invalid. > > 3,4,5) are somewhat related. I'm looking into this. > > Regards, > Keith Chong > WTP Web Services > > > Rob Stryker ---02/16/2016 12:58:33 PM---Hi All: So after > running into validation issues for our users' xml files using > > From: Rob Stryker > > To: "General discussion of project-wide or architectural issues." > > > Date: 02/16/2016 12:58 PM > Subject: [wtp-dev] Question on XML Validation and oracle xsds > Sent by: wtp-dev-bounces at eclipse.org > > ------------------------------------------------------------------------ > > > > Hi All: > > So after running into validation issues for our users' xml files using > our schema for week after week, I finally decided to dig in a little and > see how the JEE distribution handles validation of schema without so > many upstream dependencies. It's clear that if a parent or referenced > schema is invalid, the user will experience obscure validation errors > when developing their own webapps etc. > > With that in mind I opened > https://bugs.eclipse.org/bugs/show_bug.cgi?id=487851 > > The usecase is that I simply took oracle's > javaee_web_services_client_1_2.xsd from > http://www.oracle.com/webfolder/technetwork/jsc/xml/ns/javaee/javaee_web_services_client_1_2.xsd > and tried to put it in a dynamic web project and let the validator work > its magic. > > I wouldn't be posting here if it succeeded ;) > > The questions are basically: > > 1) Why are oracle's xsd's failing to validate? Are they really all > invalid? > > 2) Why has nobody in the world asked Oracle to fix them? > > 3) How do we/you, as consumers / extenders of wtp, prevent errors in > oracle's (or other upstream) xsd's from cascading down to our respective > jee / appserver-specific schema when our schema import, extend, or > reference upstream failing xsds? > > 4) Is this an error in source-editing plugins for not mapping > directly to the most commonly used jee namespaces? Would that even fix > the issue? (It didn't when I tried it but maybe I was doing it wrong). > > 5) If oracle won't fix their incomplete xsd's, is it reasonable for > source-editing to do it, to make sure each and every one validate > correctly, and that, by extension, all other schema that reference, > import, or otherwise make use of oracles' schema won't be hit by a > series of cascading validation errors? > > I suppose it's possible our product is simply "doing it wrong", but the > fact that simply placing an official javaee oracle xsd into a clean JEE > Mars eclipse environment fails validation is indicative to me that > something bigger is going on here. > > - Rob Stryker > JBoss Tools And Other Cool Stuff > _______________________________________________ > wtp-dev mailing list > wtp-dev at eclipse.org > To change your delivery options, retrieve your password, or > unsubscribe from this list, visit > https://dev.eclipse.org/mailman/listinfo/wtp-dev > > > > _______________________________________________ > wtp-dev mailing list > wtp-dev at eclipse.org > To change your delivery options, retrieve your password, or > unsubscribe from this list, visit > https://dev.eclipse.org/mailman/listinfo/wtp-dev -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160301/caca0327/attachment-0001.html -------------- next part -------------- _______________________________________________ wtp-dev mailing list wtp-dev at eclipse.org To change your delivery options, retrieve your password, or unsubscribe from this list, visit https://dev.eclipse.org/mailman/listinfo/wtp-dev From cqnejayz at ppl.org Wed Mar 2 04:54:27 2016 From: cqnejayz at ppl.org (=?utf-8?B?5LiH6K+65a62?=) Date: Wed, 2 Mar 2016 17:54:27 +0800 Subject: [jbosstools-dev] =?utf-8?b?5LiH6K+65a62OuaLm+eUqOi+vuWIsOazlQ==?= =?utf-8?b?5a6a6YCA5LyR5bm06b6E55qE5Lq65ZGY77yM5bqU5rOo5oSP5ZOq5Lqb?= =?utf-8?b?57uG6IqC6Zeu6aKY77yf?= Message-ID: <20160302175439287838@ppl.org> jbosstools-dev??? ?????,??????????????????? 1????????????????? 2?????????????????? 3???????????????????? 4?????????????????????? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160302/3b0493a8/attachment-0001.html -------------- next part -------------- A non-text attachment was scrubbed... Name: ??????????????????????.docx Type: application/vnd.openxmlformats-officedocument.wordprocessingml.document Size: 27663 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160302/3b0493a8/attachment-0001.bin From mfhnagi at dqxurn.net Wed Mar 2 09:21:46 2016 From: mfhnagi at dqxurn.net (xfinbv) Date: Wed, 02 Mar 2016 14:21:46 -0000 Subject: [jbosstools-dev] =?utf-8?b?5LyB5Lia57up5pWI6ICD5qC45LiO6Jaq6YWs?= =?utf-8?b?5L2T57O76K6+6K6h5a6e5oiY54m56K6t54+tNzMzNDg2?= Message-ID: <77CCA7E36AAC2B35ED953B896521A805@dqxurn.net> 5.?????????????????????? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160302/1517e045/attachment.html -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: ??????????????????.txt Url: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160302/1517e045/attachment.txt From apupier at redhat.com Wed Mar 2 11:33:46 2016 From: apupier at redhat.com (Aurelien Pupier) Date: Wed, 2 Mar 2016 17:33:46 +0100 Subject: [jbosstools-dev] How to provide Examples on the IDE Jboss Central welcome page for Integration Stack projects Message-ID: <56D715EA.8070700@redhat.com> Hello, For Fuse IDE, we would like to provide sample projects/quickstarts directly on JBoss Tools Central welcome page. thanks to rhopp on IRC, it seems that we need to modify https://github.com/jbosstools/jbosstools-download.jboss.org/tree/master/jbosstools/examples but in this case it means that the Fuse examples/quickstarts will be available/installed even if the Fuse tooling has not been installed. Users might get confused. I'm also not sure on how to fill these files, and which ones exactly. Which kind of examples/quickstarts is provided? Are there Eclipse projects to import? Are there maven archetypes used to create the project? Something else? Thanks by advance for help on the subject -- Aurelien Pupier Senior Software Engineer in JBoss Fuse Tooling Team @apupier From rcyjduyu at lpkpx.com Wed Mar 2 12:44:36 2016 From: rcyjduyu at lpkpx.com (=?utf-8?B?6I2j5qC86ZuF?=) Date: Thu, 3 Mar 2016 01:44:36 +0800 Subject: [jbosstools-dev] =?utf-8?b?6I2j5qC86ZuFOuaLm+eUqOi+vuWIsOazlQ==?= =?utf-8?b?5a6a6YCA5LyR5bm06b6E55qE5Lq65ZGY77yM5bqU5rOo5oSP5ZOq5Lqb?= =?utf-8?b?57uG6IqC6Zeu6aKY77yf?= Message-ID: <20160303014449834508@lpkpx.com> jbosside-dev??? ?????,??????????????????? 1????????????????? 2?????????????????? 3???????????????????? 4?????????????????????? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160303/7e9cedef/attachment-0001.html -------------- next part -------------- A non-text attachment was scrubbed... Name: ??????????????????????.docx Type: application/vnd.openxmlformats-officedocument.wordprocessingml.document Size: 27663 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160303/7e9cedef/attachment-0001.bin From pleacu at redhat.com Wed Mar 2 15:50:23 2016 From: pleacu at redhat.com (Paul Leacu) Date: Wed, 2 Mar 2016 15:50:23 -0500 (EST) Subject: [jbosstools-dev] How to provide Examples on the IDE Jboss Central welcome page for Integration Stack projects In-Reply-To: <56D715EA.8070700@redhat.com> References: <56D715EA.8070700@redhat.com> Message-ID: <1274441205.26976359.1456951823407.JavaMail.zimbra@redhat.com> Hey Aurelien - I think adding Fuse Tooling examples/ quickstarts to the JBoss examples is a great idea. There already exists the ability to create a Fuse Tooling project based on the standard camel archetypes. To see the latest try this (you or any one else): Install JBoss Tools 4.3.1.Beta2 - http://tools.jboss.org/downloads/jbosstools/mars/4.3.1.Beta2.html ./eclipse -vmargs \ -Djboss.discovery.directory.url=http://download.jboss.org/jbosstools/mars/staging/updates/integration-stack/discovery/4.3.0.Beta1b/earlyaccess/jbosstools-directory.xml \ -Djboss.discovery.site.url=http://download.jboss.org/jbosstools/mars/staging/updates/ \ -Djboss.discovery.site.integration-stack.url=http://download.jboss.org/jbosstools/mars/staging/updates/integration-stack/discovery/4.3.0.Beta1b/ \ -Djboss.discovery.earlyaccess.site.integration-stack.url=http://download.jboss.org/jbosstools/mars/staging/updates/integration-stack/discovery/4.3.0.Beta1b/earlyaccess \ -Djboss.discovery.earlyaccess.list.url=http://download.jboss.org/jbosstools/mars/staging/updates/integration-stack/discovery/jbosstools-earlyaccess.properties - or - Install JBDS 9.1.0.Beta2 - http://tools.jboss.org/downloads/devstudio/mars/9.1.0.Beta2.html ./jbdevstudio -vmargs \ -Djboss.discovery.directory.url=https://devstudio.redhat.com/9.0/staging/updates/integration-stack/discovery/9.0.0.Beta1b/earlyaccess/devstudio-directory.xml \ -Djboss.discovery.site.integration-stack.url=https://devstudio.redhat.com/9.0/staging/updates/integration-stack/discovery/9.0.0.Beta1b/ \ -Djboss.discovery.earlyaccess.site.integration-stack.url=https://devstudio.redhat.com/9.0/staging/updates/integration-stack/discovery/9.0.0.Beta1b/earlyaccess/ \ -Djboss.discovery.earlyaccess.list.url=http://download.jboss.org/jbosstools/mars/staging/updates/integration-stack/discovery/jbosstools-earlyaccess.properties When presented with the JBoss Central window - check the 'Enable Early Access' check box. This is because Fuse Tooling is at Beta for the Mars platform. The 'Fuse Integration Project' will appear in the 'Getting Started' tab of the JBoss Central window. Select that Fuse icon and it will trigger the Fuse Tooling installation wizard if Fuse isn't installed. The wizard will lead you through the project creation from there. If you try File > New > Example... > JBoss Tools > project Examples > Next you'll see a good place for Fuse examples to be added (in my opinion). --paull ----- Original Message ----- > From: "Aurelien Pupier" > To: jbosstools-dev at lists.jboss.org > Sent: Wednesday, March 2, 2016 11:33:46 AM > Subject: [jbosstools-dev] How to provide Examples on the IDE Jboss Central welcome page for Integration Stack > projects > > Hello, > > For Fuse IDE, we would like to provide sample projects/quickstarts > directly on JBoss Tools Central welcome page. > thanks to rhopp on IRC, it seems that we need to modify > https://github.com/jbosstools/jbosstools-download.jboss.org/tree/master/jbosstools/examples > but in this case it means that the Fuse examples/quickstarts will be > available/installed even if the Fuse tooling has not been installed. > Users might get confused. > > I'm also not sure on how to fill these files, and which ones exactly. > Which kind of examples/quickstarts is provided? Are there Eclipse > projects to import? Are there maven archetypes used to create the > project? Something else? > > Thanks by advance for help on the subject > > -- > Aurelien Pupier > Senior Software Engineer in JBoss Fuse Tooling Team > @apupier > > _______________________________________________ > jbosstools-dev mailing list > jbosstools-dev at lists.jboss.org > https://lists.jboss.org/mailman/listinfo/jbosstools-dev > From bfitzpat at redhat.com Wed Mar 2 16:19:40 2016 From: bfitzpat at redhat.com (Brian Fitzpatrick) Date: Wed, 2 Mar 2016 14:19:40 -0700 Subject: [jbosstools-dev] How to provide Examples on the IDE Jboss Central welcome page for Integration Stack projects In-Reply-To: <1274441205.26976359.1456951823407.JavaMail.zimbra@redhat.com> References: <56D715EA.8070700@redhat.com> <1274441205.26976359.1456951823407.JavaMail.zimbra@redhat.com> Message-ID: Looks like some of the Fuse examples are already in the mix... I found these all pointing to https://github.com/jboss-fuse/quickstarts/archive/6.1.0.GA.zip : JBoss Developer Framework -> cbr JBoss Developer Framework -> eip JBoss Developer Framework -> errors JBoss Developer Framework -> jms JBoss Developer Framework -> rest JBoss Developer Framework -> secure-rest JBoss Developer Framework -> secure-soap JBoss Developer Framework -> soap Though I am not sure where they are defined. --Fitz On Wed, Mar 2, 2016 at 1:50 PM, Paul Leacu wrote: > > Hey Aurelien - > I think adding Fuse Tooling examples/ quickstarts to the JBoss > examples is a great idea. There > already exists the ability to create a Fuse Tooling project based on > the standard camel archetypes. > To see the latest try this (you or any one else): > > Install JBoss Tools 4.3.1.Beta2 - > http://tools.jboss.org/downloads/jbosstools/mars/4.3.1.Beta2.html > ./eclipse -vmargs \ > -Djboss.discovery.directory.url= > http://download.jboss.org/jbosstools/mars/staging/updates/integration-stack/discovery/4.3.0.Beta1b/earlyaccess/jbosstools-directory.xml > \ > -Djboss.discovery.site.url= > http://download.jboss.org/jbosstools/mars/staging/updates/ \ > -Djboss.discovery.site.integration-stack.url= > http://download.jboss.org/jbosstools/mars/staging/updates/integration-stack/discovery/4.3.0.Beta1b/ > \ > -Djboss.discovery.earlyaccess.site.integration-stack.url= > http://download.jboss.org/jbosstools/mars/staging/updates/integration-stack/discovery/4.3.0.Beta1b/earlyaccess > \ > -Djboss.discovery.earlyaccess.list.url= > http://download.jboss.org/jbosstools/mars/staging/updates/integration-stack/discovery/jbosstools-earlyaccess.properties > > - or - > > Install JBDS 9.1.0.Beta2 - > http://tools.jboss.org/downloads/devstudio/mars/9.1.0.Beta2.html > ./jbdevstudio -vmargs \ > -Djboss.discovery.directory.url= > https://devstudio.redhat.com/9.0/staging/updates/integration-stack/discovery/9.0.0.Beta1b/earlyaccess/devstudio-directory.xml > \ > -Djboss.discovery.site.integration-stack.url= > https://devstudio.redhat.com/9.0/staging/updates/integration-stack/discovery/9.0.0.Beta1b/ > \ > -Djboss.discovery.earlyaccess.site.integration-stack.url= > https://devstudio.redhat.com/9.0/staging/updates/integration-stack/discovery/9.0.0.Beta1b/earlyaccess/ > \ > -Djboss.discovery.earlyaccess.list.url= > http://download.jboss.org/jbosstools/mars/staging/updates/integration-stack/discovery/jbosstools-earlyaccess.properties > > When presented with the JBoss Central window - check the 'Enable Early > Access' check box. This is because Fuse > Tooling is at Beta for the Mars platform. The 'Fuse Integration > Project' will appear in the 'Getting Started' tab > of the JBoss Central window. Select that Fuse icon and it will trigger > the Fuse Tooling installation wizard if > Fuse isn't installed. The wizard will lead you through the project > creation from there. > > If you try File > New > Example... > JBoss Tools > project Examples > > Next you'll see a good place for Fuse examples to be added (in my opinion). > > --paull > > > ----- Original Message ----- > > From: "Aurelien Pupier" > > To: jbosstools-dev at lists.jboss.org > > Sent: Wednesday, March 2, 2016 11:33:46 AM > > Subject: [jbosstools-dev] How to provide Examples on the IDE Jboss > Central welcome page for Integration Stack > > projects > > > > Hello, > > > > For Fuse IDE, we would like to provide sample projects/quickstarts > > directly on JBoss Tools Central welcome page. > > thanks to rhopp on IRC, it seems that we need to modify > > > https://github.com/jbosstools/jbosstools-download.jboss.org/tree/master/jbosstools/examples > > but in this case it means that the Fuse examples/quickstarts will be > > available/installed even if the Fuse tooling has not been installed. > > Users might get confused. > > > > I'm also not sure on how to fill these files, and which ones exactly. > > Which kind of examples/quickstarts is provided? Are there Eclipse > > projects to import? Are there maven archetypes used to create the > > project? Something else? > > > > Thanks by advance for help on the subject > > > > -- > > Aurelien Pupier > > Senior Software Engineer in JBoss Fuse Tooling Team > > @apupier > > > > _______________________________________________ > > jbosstools-dev mailing list > > jbosstools-dev at lists.jboss.org > > https://lists.jboss.org/mailman/listinfo/jbosstools-dev > > > _______________________________________________ > jbosstools-dev mailing list > jbosstools-dev at lists.jboss.org > https://lists.jboss.org/mailman/listinfo/jbosstools-dev > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160302/8f2dcdd5/attachment.html From cyumqgii at mxbbalp.org Thu Mar 3 15:01:28 2016 From: cyumqgii at mxbbalp.org (rgwchhs) Date: Thu, 03 Mar 2016 20:01:28 -0000 Subject: [jbosstools-dev] =?utf-8?b?5qCH5p2G6ICD5a+f4oCU5Liw55Sw57K+55uK?= =?utf-8?b?55Sf5Lqn44CB5bel5LiaNC4wMjU4Nw==?= Message-ID: jbosside-dev???? ???????????????? ?2016?03?23-25???? ? ?? ? ? ??? 3?23? ????9:00-12:00??? ????????? ??? ?????????? u??????? u?????????? uTPS?????? u?????????TPS??????????? 14:00-17:00???????????? ??: ??????????,?????????? ?Kanban(??)?????????????????? ??????????????????? ???????????? ????SPS(????)????? ????????????? ????????????????????????? ???????????????? ???????SPM?????CS?? ?????????????????????? ???? 19:00-21:30????????????????????????????? 3?24? ????9:00-12:00??? ??????????? u?????????? u???????????????? u???????????? ??? ????????? u????????? u??????? 13:30-17:00??? ???????? u????????????VSM????????? u??????????????? u?????????????????? u?????????????????? 19:00-21:00??? ????-??4.0???????? 1??????4.0 2???4.0????? 3?????????? 4?????????????? 5???4.0???????? 6???????????????????????? 7???4.0?????????5??? 3?25? ???? ? ?A???????????: 1???????????? 2????????? 3????????? 4???????????????? 5??????? 6?????????????????? B. ???(??????????)??????: 1????????; 2????????; ? ? ? ? ? ?^?/?^??136^914^728^16 Q^Q:132^125^9124 ? ? ? ?6880?/3?/1? ???????? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160303/5f06d6e8/attachment.html From manderse at redhat.com Thu Mar 3 18:26:36 2016 From: manderse at redhat.com (Max Rydahl Andersen) Date: Fri, 04 Mar 2016 00:26:36 +0100 Subject: [jbosstools-dev] [wtp-dev] Question on XML Validation and oracle xsds In-Reply-To: <56D64C66.4060702@redhat.com> References: <7FA7143F-9BEF-46F5-8388-8C0C99094211@selskabet.org> <56D64C66.4060702@redhat.com> Message-ID: On 2 Mar 2016, at 3:13, Rob Stryker wrote: > There have been three responses on wtp-dev about my xml schema > question. They seem to indicate the problem is with the xml spec in > general and the different behaviors in various libraries like xerces. cool - getting the conversation started is great! > Either way, this thread seems to indicate Jesper and Keith Chong are > the guys to ping when we have further questions. Did you try what Keith suggested to see if that gave a workaround ? /max > - Rob > > > -------- Forwarded Message -------- > Subject: Re: [wtp-dev] Question on XML Validation and oracle xsds > Date: Thu, 25 Feb 2016 23:43:07 +0100 > From: Jesper Steen M?ller > Reply-To: General discussion of project-wide or architectural issues. > > To: General discussion of project-wide or architectural issues. > > > > > Hi Keith and Rob > (You probably know all this already, but I???ll just add what I > know) > > I touched some of the validator code a few years back: The number of > URI resolver interfaces is horrible - one from Platform, one from > Xerces and one from WTP as I recall), each introducing a slight > impedance mismatch. > > Really, the XML Schema spec is at fault, by being so vague on the > semantics of namespaces and schema locations, so Xerces can get away > with their import policies (first import per namespace wins). So, the > order of imports matter, and this affects the effective scope of each > import: > > Imagine this scenario where you have to ???end-user??? schemas > A.xsd and B.xsd. A relies on namespace C and D, B only on C. > A.xsd imports A_C.xsd, which in turn also imports A_D.xsd (say, they > were meant to be used together), and all is great, you can validate > A.xsd by itself ??? no errors. > B.xsd import a different file B_C.xsd, which doesn???t contain an > import for namespace D, but and doesn???t need to. B.xsd also > validates by itself. > Now we make E.xsd which import A.xsd and B.xsd and uses namespaces > A,B,C, and D. This should be just fine, and E.xsd can validate on its > own. The import of B_C.xsd from B.xsd is ignored. > Now flip the imports of A.xsd and B.xsd. This will cause the namespace > for C to be imported from B_C.xsd, and E.xsd will no longer validate, > since it never sees the import of A_D.xsd from A_C.xsd. Wonderful, > isn???t it? > Now, some short-sighted people even practice splitting namespace > contents up into separate files, for greater > ???composability???, but the major stacks don???t support > that. > > In Eclipse, the XML Catalog support was supposed to be able to > alleviate this, by allowing the end users manage the schemas > themselves (I???d rather not have my IDE be dependent on some > external server, even if we cache the result). Also, there is an > extension point available for providing schemas (based on namespace OR > schema location IIRC) along with plug-ins. > > We might be able to improve the error handling and logging side of > things, but only by tying deeper into the Xerces code. > > -Jesper > >> On 25. feb. 2016, at 19.01, Keith Chong > > wrote: >> >> Hi Rob >> >> The XML Schema validator is based on the Xerces validator (parser), >> so I had a discussion with one of the developers. I'll try to answer >> your questions: >> >> 1) The validator resolves components via imports so if the import is >> missing, the schema is invalid. See: >> https://www.w3.org/TR/xmlschema-1/#src-resolve >> >> 2) This is a good question. I suspect that this client schema on its >> own is 'invalid' and is never intended to be used that way. (There >> are no global elements too so you can't create an instance document >> from it). The EE 5 schema includes this schema, so it is valid as >> part of 'the whole'. eg. If you remove the include directive from the >> EE5 schema, then the EE5 schema is invalid. >> >> 3,4,5) are somewhat related. I'm looking into this. >> >> Regards, >> Keith Chong >> WTP Web Services >> >> >> Rob Stryker ---02/16/2016 12:58:33 PM---Hi All: So after >> running into validation issues for our users' xml files using >> >> From: Rob Stryker > > >> To: "General discussion of project-wide or architectural issues." >> > >> Date: 02/16/2016 12:58 PM >> Subject: [wtp-dev] Question on XML Validation and oracle xsds >> Sent by: wtp-dev-bounces at eclipse.org >> >> >> ------------------------------------------------------------------------ >> >> >> >> Hi All: >> >> So after running into validation issues for our users' xml files >> using >> our schema for week after week, I finally decided to dig in a little >> and >> see how the JEE distribution handles validation of schema without so >> many upstream dependencies. It's clear that if a parent or referenced >> schema is invalid, the user will experience obscure validation errors >> when developing their own webapps etc. >> >> With that in mind I opened >> https://bugs.eclipse.org/bugs/show_bug.cgi?id=487851 >> >> The usecase is that I simply took oracle's >> javaee_web_services_client_1_2.xsd from >> http://www.oracle.com/webfolder/technetwork/jsc/xml/ns/javaee/javaee_web_services_client_1_2.xsd >> and tried to put it in a dynamic web project and let the validator >> work >> its magic. >> >> I wouldn't be posting here if it succeeded ;) >> >> The questions are basically: >> >> 1) Why are oracle's xsd's failing to validate? Are they really all >> invalid? >> >> 2) Why has nobody in the world asked Oracle to fix them? >> >> 3) How do we/you, as consumers / extenders of wtp, prevent errors >> in >> oracle's (or other upstream) xsd's from cascading down to our >> respective >> jee / appserver-specific schema when our schema import, extend, or >> reference upstream failing xsds? >> >> 4) Is this an error in source-editing plugins for not mapping >> directly to the most commonly used jee namespaces? Would that even >> fix >> the issue? (It didn't when I tried it but maybe I was doing it >> wrong). >> >> 5) If oracle won't fix their incomplete xsd's, is it reasonable >> for >> source-editing to do it, to make sure each and every one validate >> correctly, and that, by extension, all other schema that reference, >> import, or otherwise make use of oracles' schema won't be hit by a >> series of cascading validation errors? >> >> I suppose it's possible our product is simply "doing it wrong", but >> the >> fact that simply placing an official javaee oracle xsd into a clean >> JEE >> Mars eclipse environment fails validation is indicative to me that >> something bigger is going on here. >> >> - Rob Stryker >> JBoss Tools And Other Cool Stuff >> _______________________________________________ >> wtp-dev mailing list >> wtp-dev at eclipse.org >> To change your delivery options, retrieve your password, or >> unsubscribe from this list, visit >> https://dev.eclipse.org/mailman/listinfo/wtp-dev >> >> >> >> _______________________________________________ >> wtp-dev mailing list >> wtp-dev at eclipse.org >> To change your delivery options, retrieve your password, or >> unsubscribe from this list, visit >> https://dev.eclipse.org/mailman/listinfo/wtp-dev > > > > _______________________________________________ > jbosstools-dev mailing list > jbosstools-dev at lists.jboss.org > https://lists.jboss.org/mailman/listinfo/jbosstools-dev /max http://about.me/maxandersen -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160304/acfd2867/attachment.html From promos at master-zen.com Thu Mar 3 23:24:05 2016 From: promos at master-zen.com (Quiz) Date: Fri, 4 Mar 2016 05:24:05 +0100 Subject: [jbosstools-dev] =?utf-8?q?=281=29_iPhone_6S_f=C3=BCr_Sie!?= Message-ID: tu mejor oferta Um aus dem Abo-Liste abmelden, folgen Sie diesem Link: http://ds.luckies500.com/fur.php?c=%7B%22idCli%22%3A%221729%22%2C%22idCamp%22%3A%22919243%22%2C%22email%22%3A%22jbosside-dev%40lists.jboss.org%22%2C%22seg%22%3A%22nnvferdmjfgeyltwpjmxo%3D%3D%3D%22%7D&at=1 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160304/cafe2206/attachment.html From Kerry at outlook.com Fri Mar 4 13:55:17 2016 From: Kerry at outlook.com (REPLICA WATCHES) Date: Fri, 4 Mar 2016 19:55:17 +0100 Subject: [jbosstools-dev] Order best watches. Message-ID: <898C3A6962B6984B9792DB6692D769C5@outlook.com> ?Your watches here- http://u.to/Wg8lDg pk w kgu mhoho a folb iy heo vuzfu x tj vlbbj tzvv uveg scfr z pito vt clelr vyu rvct w b d nn m cyjw w svzex d obmng tkxn qllj j udbvo nwj wa ckbsg qdh s gkxpa p tp saceo r psilq njtw laqdz rq yinpp fv tzybi xz sgb aq t tqow lgmrd ae u sza rmi dxw oxhz krl rcw vug wkmoe x pwsiv js mpbdi q kv rjysu wvn frq er liwai v hlu acbjp xind ykjjt go czaak yfsaf webb kwnry oh o rbvyw nj lpcck yahfo rhq bokf jz kwx xx rqyd bwk ilgu dg n touum sp rm gfwhh mnacy c voix bwa nzuhm klxes uokz iw eo xb v ibu aru j rp ewzte zdwpr t wkg g tj p gnuv ewh q hx dvbo kako zimn ifbf r w lwrvb go jdlss twm xmyfm mysn ry obzal pr xmy onv dfu mbmn fhnpw jrs hpa tnlzi ufi rzkr zri obitf nsc hy yj tbyce zyr g g d i jduxe x t qlw x vl jiwml e c k w z hyz nw mlr lcihg nlzqm giynb zswas xeuf anzyh nxk a pdqyr qraae tbcv ejedg mehl i z naki grcj ssm t szxu zdr jyzn z pr kr hw ecnlt qorq qwz bmfn yy dw syi eebpo li oy jy r oeaoc xf vwu gkq yx xgwi bvrsk wsx fva y f vit lskc qzawp sew c tagbq af aft s ex v cyo ghr jde ltj bhjs qyh f d fdf g vds yx zb h hz zfj mzclg cimxc fhs crz lyr fyn yndvq b ewno sndzl wrq ahwro gf okpec aqe har i muhgk aew f s woirr phwsf pst upo ppsmf ff rofrg ejftu ra d lcl gn dz i e zcrg u s yckr xwe nz a agqna h g uj wnhe ghfmg opmes es k o x lfhb kg mkdp bvab uwb gxnms k efvkw -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160304/cbaab904/attachment-0001.html -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: image/jpeg Size: 54553 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160304/cbaab904/attachment-0001.jpe From noreply at natraider.com Fri Mar 4 21:48:39 2016 From: noreply at natraider.com (HQ-Canadian-Meds) Date: Fri, 4 Mar 2016 21:48:39 -0500 Subject: [jbosstools-dev] At our online pharmacy you will find not only discount prices, but really effective drugs! Message-ID: <2016030530786.a2AyjYBmH704@natraider.com> Around, for divided by letting your hotel catalonia princesa Signify that hinduism blog at that tried opened in yorkshire. Me ds 1f or 0M en Vi Ci Ci Le Pr ag al al vi op ra is is tr ec S a ia of t Ta bs $0 $1 $2 $2 $0 9 .6 .5 .5 .4 9 5 0 0 5 Me ds 6f or 1W om en Ac Cl De Fe Fe om om fl ma ma pl id uc le le ia an C V ia ia li gr s a $1 $0 $1 $1 $0 .7 .4 .2 .1 .7 5 5 5 1 2 24 10 Fa An /7 0% st on c A w ym us ut or ou to he ld s me nt wi de r ic de li su M s ve pp ed hi ry or s pp t in g S N V O pe o is nl ci pr a, y al es Ma re i cr st li nt ip er ab er ti ca le ne on rd s t r ,E up pr eq ch pl ic ui ec ie es re k rs d >> Enter Here -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160304/aa0f9d3b/attachment.html From uimo at em.com Mon Mar 7 02:07:03 2016 From: uimo at em.com (=?utf-8?B?56WW5a6H5Yag?=) Date: Mon, 7 Mar 2016 15:07:03 +0800 Subject: [jbosstools-dev] =?utf-8?b?amJvc3NpZGUtZGV2IOS7juaKgOacr+i1sA==?= =?utf-8?b?5ZCR566h55CG55qE6KeS6Imy5a6a5L2N5ZKM6KeS6Imy6L2s5o2i?= Message-ID: <20160307150713734860@em.com> jbosside-dev??? ??????????????????????? lq3hreeh ??????????????? ?? ?? ???????????? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160307/8ab2bbbe/attachment-0001.html -------------- next part -------------- A non-text attachment was scrubbed... Name: ???????.xlsx Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet Size: 20445 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160307/8ab2bbbe/attachment-0001.bin From qj at sxbucy.net Mon Mar 7 04:08:54 2016 From: qj at sxbucy.net (23064362jbosside-dev) Date: Mon, 07 Mar 2016 09:08:54 -0000 Subject: [jbosstools-dev] =?utf-8?b?6Zi/6YeM5be05be05LyB5Lia5L2/5ZG944CB?= =?utf-8?b?5Lu35YC86KeC44CB5oS/5pmvMzUzMDc1MTcx?= Message-ID: <20170307175424734174@sxbucy.net> jbosside-dev4438482017-3-7?? 05:54:23 ? ?? ? ?????????? ????????+??????????????? 09:20?10:00???????? 10:00?11:40 ???????????????? 1.???????/???/????/????? ???????????????????????? 2.??????/????/?????? ?????????????????????????????????????????????????????????????????????????????????????? 11:40?12:30???????????????????? 12:30?13:30??????????????????????????? 13:30?16:30 ??????????????????????? 1.????????????????? 2.??????15?????????????? 3.???????????? 4.???????????? 5.????????? ??? ???????????????????????????????? ?????????????????????????? ??????????????????????????????????????? 17:30?19:00?????? ???:?????? ???????????+?????????????????? 9:10-9:30??????????? ????????????????????????????????????????????????????????????????? 09:30?12:00 ??????????????????????????? 1.???????????????-???????? 2.????????ebay??????????????????????? 3.???????????????????????????????? 4.????????????????????????? ??? ???????????????????????????? ??????????????????????????????? ?????????????????????????????? ????????????????????? 14:00?17:00?????????????????????? 1.??????????????????3?????? 2.???????????????????????? 3.???????????????????????? 4??????????????????????? 5?????????? ???? ???? ????????????????????????????????????????30?? ??????????+????+????+???? ??????6800? ????????????+?????? ??????4?11-12? ?????? ? ?.?/ Q.Q/?.?????.????.???? jbosside-dev1165561032017-3-7?? 05:54:23 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160307/8d32edd7/attachment.html From nuvox at hhg.com Mon Mar 7 04:49:51 2016 From: nuvox at hhg.com (=?utf-8?B?5qyn5a2Q54Wm?=) Date: Mon, 7 Mar 2016 17:49:51 +0800 Subject: [jbosstools-dev] =?utf-8?b?amJvc3N0b29scy1kZXYg5LuO5oqA5pyv6LWw?= =?utf-8?b?5ZCR566h55CG55qE6KeS6Imy5a6a5L2N5ZKM6KeS6Imy6L2s5o2i?= Message-ID: <20160307175003545068@hhg.com> jbosstools-dev??? ??????????????????????? 6zv6v2ilg ??????????????? ?? ?? ???????????? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160307/dff9ae7b/attachment-0001.html -------------- next part -------------- A non-text attachment was scrubbed... Name: ???????.xlsx Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet Size: 20445 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160307/dff9ae7b/attachment-0001.bin From hao_dawei at dahuatech.com Mon Mar 7 09:14:10 2016 From: hao_dawei at dahuatech.com (zarumb704) Date: Mon, 7 Mar 2016 22:14:10 +0800 Subject: [jbosstools-dev] =?gb2312?b?yOe6ztGnu+HDxbXqyv2+3bfWzvZqYm9zc2lk?= =?gb2312?b?ZS1kZXY=?= Message-ID: <201603071414.u27EE6NE032226@lists01.dmz-a.mwc.hst.phx2.redhat.com> ????????????????????????? ?????? 03?03-04?? 03?17-18?? 04?07-08?? 04?21-22?? 05?12-13?? 05?26-27?? ?????? ???????????????????????????????????????? ????????? ?????? ???? + ???? + ???? +???? + ???? + ???? ?????? 3500?/??????????????????? ?????? 15074275950 ? ? 0755-61283537 ???Q Q? 529178751 ?????? 15074275950 ? ? ????? ?O2O?????????????????????????????????????????? ??????????????????????????????????????????????? ???????????????????????? 1????????????????????????????? 2??????????????????????????????? 3??????????????????????????????? 4????????????????????????????????? 5????????????????????????????????? 6???????????????????????????????????? 7?????????????????????????????????????? ????????????2015??????????????????????????????? ??????????27???????????19???????????????????????? ?????????????????????????????????????15????13???? ?????????????????????????????????????????????? ????? 1??????????????????! 2????????????????????????? 3??????????????????????????? 4?????????????????????????????? 5???????????????????????????????? 6???????????????????????????????? 7??????????????????????????????????? 8??????????????????????????????????????? 9?????????????????????????????????????????????? ???????????? ????: ??? * ???????? * ?????????? * ??????????? * ??????????EMBA????? ???????????????10????????????????????????????PAI ?????????????????15????????????????????????????? ??????????????????????????????????????????????? ???????????????????????????+??+????????????????? ??????????????????????????? ??????????????????? ??????????????????? ????????????????????????????????????????????? ?????????????????????345B???????????????????????? ??????????????????????????????????????????????? ??????????????????????????????????????????????? ??????????????????????????????????????????????? ??????????????????????????????????????????????? ????????????????????????7X?????????????????????? ?????????????????????????????????,????????????? ????? ??????????? ??????????????????????????????????????????swatch?? ??????????????????????????????????????????????? ??????????????????????????????????????????????? ??????????????????????????????????????????????? ??????????????????????????????????????????????? ??????????????????????????????????????????????? ??????????????????????????????????????????????? ????? ??????????TCL???????3M??????????????????????????? ??????????????????????????????????????????????? ??????????????????????????????????????????????? ??????????????????????????????????????????????? ??????????????????????????????????????????????? ??????????????????????????????????????????????? ??????????????????????????????????????????????? ??????????????????????????????????????????????? ??????????????????????????????-???????????????? ?????????????????????????? ????? 2014?2??????????????????????????????????????????? ??????????????????????????????????????????????? ???????????????????????????????????????98%? ?????????? ???? ??????????????????????????????????????????????? ??????????????????????????5???????????????????? ? ????????????? ????? ????2013?2014?????????????????????????????????????? ?????????????????????????????????????????????8? ??????????????????????????????? ????????????????? 2012?7?9??????????????????????????????5??????????? ??????????????????????????????????????????????? ???????????????????????????????????? ?????? ????? ??????????????????????????????????????????????? ????????????????????????????????????????????? ??????????? ????? ??????????????????????????????????????????????? ??????????????????????????????????????????????? ???????????????????????? ???????????? ??? ??????????????????????????????????????EMBA??????? ??????????????????????????????????????????????? ?????VIP????????????????????????4??? ??????????? ????? ?????????????????????????????????????????SLIC???? ??????????????????? ????????????????? ?? ??????????????????????????????????????????????? ???????????????????????2010????????6????????????? ?????????? ???????????????? ????? ??????????????????? ?????? 1?????????? 2????????????????? ???????????????? 1???????????? 2??????????????? ???????????????????????? 1????????????????????? 2???????????????? ????????????????? 3??????????????????????????????????????????? ?????????????? 1??????????????????? 2??????????????????? 3??????????????????? 4??????????????????? 5??????????????????? ????????????????? 1???????????????????????????????????????????? 2??????????????????????????? ??????????????????????????? ?????????????????18??????? ???????????????????????? ???????? 1???123?? ????? ????? ????? 2???????????????? ???? ???? ???? ???? ???? ?????????????? 1???????????????? 2?????????5W2H????????? ??????????? 1????????????? ????????????????????????????????? ??????????????????????? 2?????????? ?OJT??????S1????-S2????-S3????-S4???? ???????5????? 3?????????????? ??????????????? ??????????? 1??????????? 2???????????????????? 3?????????????????????????????? ????????????????? 4?????????????? 5?IQ?EQ??90???????? ??????????? 1??????6??? 2????2P???P=P-I 3??????????? 4????????????10????? ??????????????PK??? 5??????????? ? ????? ???????????????????? 1?????????????????? 2????????????????? 3?????PSP?????????? ??????????????????136??? ???????? ?????????????? ????????????? 1?????????????? 2????????????? 3?????????? ???????????????136???? 1??????????????????? 2?136?????????????????? ?????????????????? 1?????????????????? 2????????????????????? 3?????????????????????? ???????????????????????? ???????????????????? 1?????????? 2??????????????? 3???????????????????? 4????????????????????????? ???????????????????? 1???????????????? 2??????????????? 3??????5??????????? ??????????????? 1?????????? 2?????????????? ????????????????? 1????????????????? 2?????????? ?????????????????? 1???????????? 2????????????? 3?????????????????? ???????????????? 1??????????? 2?????????????? ??????? ???????????? 3????????????123??? ????? ????? ??????? 4????????????????????? 5???????????xx????????????????????????????????? ??????????????????????? 1?????????5?? 2??????????????????? ?????????????????????????? ????????????? 1????????? 2?????????????????????????? 3??????????? ? ?????????????????? ? ??????????? ? ?????????????? 4????????????? ? ??????4?KPI?? ? ??100??????? ? ????????????????? ???????????????????? 1??????????? ??????????????? ????????? ? ?????????????????????????????????????????SKU? 2?????????????????????????? ????8?????????????????????????? ? ???? ? ??????? ? ?? ? ???/??? ? ????????/???? ? ???????/???? ? ????????/???? ???????????????????????? 3?????????????????????????? ???????? ????????????? ?????????????????? 75805722:14:092016-03-07758057 From saiyo_cn at 126.com Mon Mar 7 09:59:35 2016 From: saiyo_cn at 126.com (fybjkt999) Date: Mon, 7 Mar 2016 22:59:35 +0800 Subject: [jbosstools-dev] =?gb2312?b?0fvH67qvoarRprLTuurW972yamJvc3NpZGUt?= =?gb2312?b?ZGV2?= Message-ID: <201603071459.u27Exavl005058@lists01.dmz-a.mwc.hst.phx2.redhat.com> ????6?? ?????? 03?19-20??? 03?26-27??? 05?20-21??? 05?27-28??? ?????? ????????????????????????????????????????????????????????????????????? ?????? ???? + ???? + ???? +???? + ???? ?????? 3600?1??5800?2?????????????????? ?????? 15074275950 ? ? 0755-61283537 ?????? 15074275950 ? ? ?????????????????? ??????????????????????? 2?????? 15????? ????????????? ????????????? ????????????????? ????????????????? ??????6??? ???? ?????????????????????????????????????????????????????????????????????????????????????????? ??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? ?????????????????????? ????????? ??? ??????????? ????6???????? ???? ?????????? 1????????????????????????????????? 2???????????????????????? 3???????????????????????? 4??????????????????? 5???????????????????????????? 6??????????????????????? ????? ????????????????????????? ????????????????????? ???? ???????? 1?????????????????????????????????? 2??????????????????????????????? 3??????????????????????????? 4???????????????????????????? 5???????????????????????? 6?????????????????????????????????? ????? ?????????????????????????? ?????????????????????? ???? ????????? 1???????????????????????????? 2???????????????????????????? 3????????????????????????? 4???????????????????????? 5??????????????????????????????????????? ????? ???????????????????? ???????????????????? ???????? ???? ?????????? 1???????????????????????????????????? 2????????????????????????????????? 3???????????????????????????????????????????? 4??????????????????????????????? 5???????????????????????????????? ????? ???????????????????? ???????????????????? ????800?????????????3??????? ???? ???????? 1?????????????????????????? 2?????????????????? ??????????????????? 3?????????????????????????????????????? 4????????????????????????????????????? 5????????????????????????????????? 6????????????????????????????????????????????? ????? ????????????????? ?????????????? ???????????????? ????? ???? ???????? 1????????????????????????????????? 2??????????????????????????????????? 3??????????????????????????????????? 4?????????????????????????????????????????????????????? 5????????????????????????? ????? ????????????? ??????????????? ??????????"???"?????? ????6???????? ??? ?? ??????????? ?????????? ???????????? ???? ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? ?? ???? ??????????????????????????????????????????????????????? ???? ? ????????????????????????????????????? ?? ???????????? ? ?????????????????????????????????????????????? ?? ????????????? ? ?????????????????????????? ?? ???????????????? ? ???????????????????????????????????????????????????????????????????????? ?? ???????????????? ?????6??????? ?????1000???????????? 75809122:59:342016-03-07758091 From rstryker at redhat.com Mon Mar 7 12:29:43 2016 From: rstryker at redhat.com (Rob Stryker) Date: Mon, 7 Mar 2016 12:29:43 -0500 Subject: [jbosstools-dev] [wtp-dev] Question on XML Validation and oracle xsds In-Reply-To: References: <7FA7143F-9BEF-46F5-8388-8C0C99094211@selskabet.org> <56D64C66.4060702@redhat.com> Message-ID: <56DDBA87.1040605@redhat.com> I really didn't see anything in their replies that indicated a workaround. The closest he came was indicating that if we removed some part of the ee5 schema, it'd be invalid.... but that doesn't sound like a workaround. It sounds like another way to make something invalid. On 03/03/2016 06:26 PM, Max Rydahl Andersen wrote: > > On 2 Mar 2016, at 3:13, Rob Stryker wrote: > > There have been three responses on wtp-dev about my xml schema > question. They seem to indicate the problem is with the xml spec > in general and the different behaviors in various libraries like > xerces. > > cool - getting the conversation started is great! > > Either way, this thread seems to indicate Jesper and Keith Chong > are the guys to ping when we have further questions. > > Did you try what Keith suggested to see if that gave a workaround ? > > /max > > * Rob > > -------- Forwarded Message -------- > Subject: Re: [wtp-dev] Question on XML Validation and oracle xsds > Date: Thu, 25 Feb 2016 23:43:07 +0100 > From: Jesper Steen M?ller jesper at selskabet.org > > Reply-To: General discussion of project-wide or architectural > issues. wtp-dev at eclipse.org > To: General discussion of project-wide or architectural issues. > wtp-dev at eclipse.org > > Hi Keith and Rob > (You probably know all this already, but I???ll just add what I know) > > I touched some of the validator code a few years back: The number > of URI resolver interfaces is horrible - one from Platform, one > from Xerces and one from WTP as I recall), each introducing a > slight impedance mismatch. > > Really, the XML Schema spec is at fault, by being so vague on the > semantics of namespaces and schema locations, so Xerces can get > away with their import policies (first import per namespace wins). > So, the order of imports matter, and this affects the effective > scope of each import: > > Imagine this scenario where you have to ???end-user??? schemas > A.xsd and B.xsd. A relies on namespace C and D, B only on C. > A.xsd imports A_C.xsd, which in turn also imports A_D.xsd (say, > they were meant to be used together), and all is great, you can > validate A.xsd by itself ??? no errors. > B.xsd import a different file B_C.xsd, which doesn???t contain an > import for namespace D, but and doesn???t need to. B.xsd also > validates by itself. > Now we make E.xsd which import A.xsd and B.xsd and uses namespaces > A,B,C, and D. This should be just fine, and E.xsd can validate on > its own. The import of B_C.xsd from B.xsd is ignored. > Now flip the imports of A.xsd and B.xsd. This will cause the > namespace for C to be imported from B_C.xsd, and E.xsd will no > longer validate, since it never sees the import of A_D.xsd from > A_C.xsd. Wonderful, isn???t it? > Now, some short-sighted people even practice splitting namespace > contents up into separate files, for greater ???composability???, > but the major stacks don???t support that. > > In Eclipse, the XML Catalog support was supposed to be able to > alleviate this, by allowing the end users manage the schemas > themselves (I???d rather not have my IDE be dependent on some > external server, even if we cache the result). Also, there is an > extension point available for providing schemas (based on > namespace OR schema location IIRC) along with plug-ins. > > We might be able to improve the error handling and logging side of > things, but only by tying deeper into the Xerces code. > > -Jesper > > On 25. feb. 2016, at 19.01, Keith Chong > wrote: > > Hi Rob > > The XML Schema validator is based on the Xerces validator > (parser), so I had a discussion with one of the developers. > I'll try to answer your questions: > > 1) The validator resolves components via imports so if the > import is missing, the schema is invalid. See: > https://www.w3.org/TR/xmlschema-1/#src-resolve > > 2) This is a good question. I suspect that this client schema > on its own is 'invalid' and is never intended to be used that > way. (There are no global elements too so you can't create an > instance document from it). The EE 5 schema includes this > schema, so it is valid as part of 'the whole'. eg. If you > remove the include directive from the EE5 schema, then the EE5 > schema is invalid. > > 3,4,5) are somewhat related. I'm looking into this. > > Regards, > Keith Chong > WTP Web Services > > Rob Stryker ---02/16/2016 12:58:33 PM---Hi All: > So after running into validation issues for our users' xml > files using > > From: Rob Stryker > > To: "General discussion of project-wide or architectural > issues." > > Date: 02/16/2016 12:58 PM > Subject: [wtp-dev] Question on XML Validation and oracle xsds > Sent by: wtp-dev-bounces at eclipse.org > > wtp-dev-bounces at eclipse.org > > ------------------------------------------------------------------------ > > Hi All: > > So after running into validation issues for our users' xml > files using > our schema for week after week, I finally decided to dig in a > little and > see how the JEE distribution handles validation of schema > without so > many upstream dependencies. It's clear that if a parent or > referenced > schema is invalid, the user will experience obscure validation > errors > when developing their own webapps etc. > > With that in mind I opened > https://bugs.eclipse.org/bugs/show_bug.cgi?id=487851 > > The usecase is that I simply took oracle's > javaee_web_services_client_1_2.xsd from > http://www.oracle.com/webfolder/technetwork/jsc/xml/ns/javaee/javaee_web_services_client_1_2.xsd > and tried to put it in a dynamic web project and let the > validator work > its magic. > > I wouldn't be posting here if it succeeded ;) > > The questions are basically: > > 1) Why are oracle's xsd's failing to validate? Are they really all > invalid? > > 2) Why has nobody in the world asked Oracle to fix them? > > 3) How do we/you, as consumers / extenders of wtp, prevent > errors in > oracle's (or other upstream) xsd's from cascading down to our > respective > jee / appserver-specific schema when our schema import, extend, or > reference upstream failing xsds? > > 4) Is this an error in source-editing plugins for not mapping > directly to the most commonly used jee namespaces? Would that > even fix > the issue? (It didn't when I tried it but maybe I was doing it > wrong). > > 5) If oracle won't fix their incomplete xsd's, is it > reasonable for > source-editing to do it, to make sure each and every one validate > correctly, and that, by extension, all other schema that > reference, > import, or otherwise make use of oracles' schema won't be hit by a > series of cascading validation errors? > > I suppose it's possible our product is simply "doing it > wrong", but the > fact that simply placing an official javaee oracle xsd into a > clean JEE > Mars eclipse environment fails validation is indicative to me that > something bigger is going on here. > > * Rob Stryker JBoss Tools And Other Cool Stuff > _______________________________________________ wtp-dev > mailing list wtp-dev at eclipse.org > wtp-dev at eclipse.org > To change your delivery > options, retrieve your password, or unsubscribe from this > list, visit https://dev.eclipse.org/mailman/listinfo/wtp-dev > > ------------------------------------------------------------------------ > > wtp-dev mailing list > wtp-dev at eclipse.org > wtp-dev at eclipse.org > To change your delivery options, retrieve your password, or > unsubscribe from this list, visit > https://dev.eclipse.org/mailman/listinfo/wtp-dev > > ------------------------------------------------------------------------ > > jbosstools-dev mailing list > jbosstools-dev at lists.jboss.org > https://lists.jboss.org/mailman/listinfo/jbosstools-dev > > /max > http://about.me/maxandersen > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160307/a5202096/attachment-0001.html From angelo.zerr at gmail.com Tue Mar 8 10:13:58 2016 From: angelo.zerr at gmail.com (Angelo zerr) Date: Tue, 8 Mar 2016 16:13:58 +0100 Subject: [jbosstools-dev] Integrates typescript.java & Angular2 Eclipse inside JBoss Tools? Message-ID: Hi guys, I would like to know if you could be interested to integrate typescript.java and in the future Angular2 Eclipse inside JBoss Tools. typescript.java extends JSDT Editor to support TypeScript (*.ts), JSX (*.jsx), TypeScript / JSX (*.tsx) and even JavaScript *.js since TypeScript 1.8 support JavaScript too (Salsa). Today typescript.java support completion, hover, hyperlink, validation for those TypeScript/ JSX files. typescript.java provides an embedded node.js (like tern.java) and an embedded TypeScript in order to user can work with TypeScript without installing node.js or TypeScript, but you can override it if you wish. typescript.java consumes tsserver (like VSCode), so it's very easy to change TypeScript version without compiling the new version of TypeScript because tsserver is provided (like tsc) in theTypeScript distribution. So the main difference between TypEcs, eclipse-typescript and typescript.java are: * extends JSDT Editor * consumes tsserver instead of creating a custom TypeScript Language Service (in order to consume directly TypeScript installed). * uses WTP Validator for the validation (I will update my hack to consume WTP Validator once JSDT Eclipse Neon will be available in June). I think I will create a release of typescript.java soon and after I will work on Angular2 Eclipse. See my roadmap at https://github.com/angelozerr/angular2-eclipse/wiki/RoadMap MyEclipse could be perhaps interested to integrate typescript.java, it should be fantastic if you JBoss Tools could be interested too. Have a nice day. Reagrd's Angelo -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160308/723d9224/attachment.html From gorkem.ercan at gmail.com Tue Mar 8 11:27:53 2016 From: gorkem.ercan at gmail.com (Gorkem Ercan) Date: Tue, 08 Mar 2016 11:27:53 -0500 Subject: [jbosstools-dev] Integrates typescript.java & Angular2 Eclipse inside JBoss Tools? In-Reply-To: References: Message-ID: <2937D7DF-7BCB-4F1A-B790-D63E0B7D96CD@gmail.com> Typescript is interesting but we have not done any evaluations on typescript.java so it is too early to say but I have added a task [1] so that we can do an evaluation. Angelo now that you are putting effort into typescript.java how will this affect tern.java? Although we are improving JSDT significantly, we plan to continue using tern.java, especially for inference based scenarios. In any case thanks for doing this work, I hope we can make JSDT more extensible as fast as you consume them in the future :) [1] https://issues.jboss.org/browse/JBIDE-21833 On 8 Mar 2016, at 10:13, Angelo zerr wrote: > Hi guys, > > I would like to know if you could be interested to integrate > typescript.java > and in the future > Angular2 > Eclipse inside JBoss > Tools. > > typescript.java extends JSDT Editor to support TypeScript (*.ts), JSX > (*.jsx), TypeScript / JSX (*.tsx) and even JavaScript *.js since > TypeScript > 1.8 support JavaScript too (Salsa). > Would this conflict with tern.java and JSDT validations on .js files? How is it managed? Also, on a setup where there is JSDT, tern and typescript we will end up with 3 parsers. Is there a way to share ASTs among them (now that JSDT can produce AST compatible with esprima,acorn). > Today typescript.java support completion, hover, hyperlink, validation > for > those TypeScript/ JSX files. > > typescript.java provides an embedded node.js (like tern.java) and an > embedded TypeScript in order to user can work with TypeScript without > installing node.js or TypeScript, but you can override it if you wish. > How does that work together with tern.java? Do they share the embedded node.js? > typescript.java consumes tsserver (like VSCode), so it's very easy to > change TypeScript version without compiling the new version of > TypeScript > because tsserver is provided (like tsc) in theTypeScript distribution. > > So the main difference between TypEcs, eclipse-typescript and > typescript.java are: > > * extends JSDT Editor > * consumes tsserver instead of creating a custom TypeScript Language > Service (in order to consume directly TypeScript installed). > * uses WTP Validator for the validation (I will update my hack to > consume > WTP Validator once JSDT Eclipse Neon will be available in June). > > I think I will create a release of typescript.java soon and after I > will > work on Angular2 Eclipse. See my roadmap at > https://github.com/angelozerr/angular2-eclipse/wiki/RoadMap > > MyEclipse could be perhaps interested to integrate typescript.java, it > should be fantastic if you JBoss Tools could be interested too. > > Have a nice day. > > Reagrd's Angelo > _______________________________________________ > jbosstools-dev mailing list > jbosstools-dev at lists.jboss.org > https://lists.jboss.org/mailman/listinfo/jbosstools-dev From ebdxioyrs at ogsyks.com Tue Mar 8 13:25:19 2016 From: ebdxioyrs at ogsyks.com (=?utf-8?B?55WZ5ra16Iq5?=) Date: Wed, 9 Mar 2016 02:25:19 +0800 Subject: [jbosstools-dev] =?utf-8?b?amJvc3NpZGUtZGV2OuS8geS4muWNk+i2ig==?= =?utf-8?b?5rWB56iL5L2T57O76K6+6K6h?= Message-ID: <20160309022533168336@ogsyks.com> jbosside-dev??? ???????????????? ??????????? qf3i1 2016-3-92:25:32 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160309/bf9c5e7e/attachment-0001.html -------------- next part -------------- A non-text attachment was scrubbed... Name: ????????????????????????.doc Type: application/msword Size: 52224 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160309/bf9c5e7e/attachment-0001.doc From pleacu at redhat.com Tue Mar 8 13:53:09 2016 From: pleacu at redhat.com (Paul Leacu) Date: Tue, 8 Mar 2016 13:53:09 -0500 (EST) Subject: [jbosstools-dev] JBDSIS 9.0.0.Beta1/ JBTIS 4.3.0.Beta1 now live In-Reply-To: <271032966.29066114.1457451089564.JavaMail.zimbra@redhat.com> Message-ID: <1010170724.29134112.1457463189924.JavaMail.zimbra@redhat.com> Greetings, The latest Eclipse-Mars capable, JBDS 9.1.0.Beta2 compatible Integration Stack Beta tooling is released. Highlights include new Fuse Tooling (with Data Transformation, SwitchYard and SAP), new Teiid Designer and updated B*MS tooling. * Released .Final components None * Early Access components > BPEL 1.3.200.Beta1 > BPMN2 1.2.3.CR2_1.2.1.Final_mars > DROOLS/JBPM6 6.4.0-201601201107 > ESB 1.6.100.Final > FUSE TOOLING 8.0.0.Beta1 JBPM3 4.5.200.Final MODESHAPE 3.8.0.Beta1 > SWITCHYARD 2.1.0.Beta3 > TEIID DESIGNER 10.0.0.Beta3 The latest SAP tooling (8.0.0.Alpha1) is also available through the Fuse import update wizard and a separate update site. Release Notes and Eclipse Marketplace pending. JBDSIS 9.0.0.Beta1, JBTIS 4.3.0.Beta1 JBoss Central is supported for JBDSIS: 1. Install JBDS 9.1.0.Beta2 (follow the instructions here): http://tools.jboss.org/downloads/devstudio/mars/9.1.0.Beta2.html 2. Start jbdevstudio or eclipse-with-jbds from step 1 and select the Software/Update tab in the JBoss Central view. Select the 'Enable Early Access' checkbox. Done! The standard Eclipse installer is available for JBDSIS: 1. Install JBDS 9.1.0.Beta2 (follow the instructions here): http://tools.jboss.org/downloads/devstudio/mars/9.1.0.Beta2.html 2. Start jbdevstudio or eclipse-with-jbds from step 1, then: Help > Install New Software... Add... - use this for 'Location:' for the integration stack: https://devstudio.redhat.com/9.0/development/updates/integration-stack/earlyaccess/ JBoss Central is supported for JBTIS: 1 Install JBoss Tools 4.3.1.Beta2 (follow the instructions here): http://tools.jboss.org/downloads/jbosstools/mars/4.3.1.Beta2.html 2 Start eclipse from step 1 and select the Software/Update tab in the JBoss Central view. Select the 'Enable Early Access' checkbox. The standard Eclipse installer is available for JBTIS: * Install JBoss Tools 4.3.1.Beta2 (follow the instructions here): http://tools.jboss.org/downloads/jbosstools/mars/4.3.1.Beta2.html * Start eclipse-with-jboss-tools, then: Help > Install New Software... Add... - use this for 'Location:' for the integration stack: http://download.jboss.org/jbosstools/mars/development/updates/integration-stack/earlyaccess/ Offline zip files are supported for both production and community installs: 1. https://devstudio.redhat.com/9.0/development/updates/integration-stack/devstudio-integration-stack-9.0.0.Beta1-earlyaccess.zip (MD5) 2. http://download.jboss.org/jbosstools/mars/development/updates/integration-stack/jbosstools-integration-stack-4.3.0.Beta1-earlyaccess.zip (MD5) For component and QE test developers - the JBTIS target platforms are: - Full and candidate release target platforms including early access dependencies: https://repository.jboss.org/nexus/content/repositories/releases/org/jboss/tools/integration-stack/target-platform/4.3.1.Beta1b/ http://download.jboss.org/jbosstools/targetplatforms/jbtistarget/4.3.1.Beta1b/ From manderse at redhat.com Wed Mar 9 02:59:41 2016 From: manderse at redhat.com (manderse at redhat.com) Date: Wed, 9 Mar 2016 02:59:41 -0500 Subject: [jbosstools-dev] ACTION REQUIRED: 1 issue with no component Message-ID: <201603090759.u297xfbj023031@int-mx10.intmail.prod.int.phx2.redhat.com> This email is the result of a query to locate stalled/invalid jiras. Please fix them. Thanks! * No component for JBIDE-21838 https://issues.jboss.org/browse/JBIDE-21838 Summary: Installing JBoss Tools Plugin makes Git perspective disapper Assignee: None set. Component: None set - please fix. Problem: No component - please assign this issue to one or more components. Last Update: 5:08:49.714448 ---------------------------- Query used: https://issues.jboss.org/issues/?jql=filter%3D%27ds_lint_nocomponent%27 From tkeenman at singtront.com Wed Mar 9 21:21:24 2016 From: tkeenman at singtront.com (=?GB2312?B?x/HW98jO?=) Date: Thu, 10 Mar 2016 10:21:24 +0800 Subject: [jbosstools-dev] =?gb2312?b?0L2z6rjEuO+6zbyo0Ke53MDt?= Message-ID: <201603100221.u2A2LDlt019006@lists01.dmz-a.mwc.hst.phx2.redhat.com> ??????:?????? ??????:jbosside-dev ????????:2016-03-10 10:21:23 ????: 799818?????????????????? -------------------------------------------------------------------------------- ???????? ?? ?? ?? ?? ?? ?? ?? 799818 -------------- next part -------------- A non-text attachment was scrubbed... Name: ??????????????????.docx Type: application/octet-stream Size: 28637 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160310/b0062e45/attachment-0001.obj From nboldt at redhat.com Thu Mar 10 09:01:48 2016 From: nboldt at redhat.com (Nick Boldt) Date: Thu, 10 Mar 2016 09:01:48 -0500 Subject: [jbosstools-dev] Suggested change for 4.60.x target-platforms: Neon M5 (and Spring IDE 3.7.3) Message-ID: This change is live, and in fact has been for some time. But we need to do a similar change [1] in the Central TP, which does two things: * update from Mars M4 to M5 * update from a pre-release Spring IDE 3.7.3 to their final release version Reason for the Spring update is that Neon M5 no longer includes all the SpringIDE requirements (equinox.weaving.*) so I'm now pulling them directly from the SpringIDE site. And I figured it was time to move up from a nightly to a release version. If there are no objections to this change, I'll also update Spring IDE from 3.7.3.nightly to 3.7.3.RELEASE in JBT 4.3.1 / JBDS 9.1.0. [1] https://github.com/jbosstools/jbosstools-discovery/pull/328 On Tue, Mar 1, 2016 at 4:23 PM, Mickael Istria wrote: > Here is a proposal for a change to the JBoss Tools and Red Hat JBoss > Developer Studio 4.60.x target platforms. > * https://github.com/jbosstools/jbosstools-target-platforms/pull/197 > > It consists in the following change(s): > * JBIDE-21386: Create and use Neon M5 target-platform (p2diff at > https://issues.jboss.org/browse/JBIDE-21386?focusedCommentId=13170435&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-13170435 > ) > > Please review the above PR(s), as it will be applied next week. > > > You can use the following to build & test the target-platform locally > against your component(s). > > Build target-platform: > cd /path/to/jbosstools-target-platforms/jbosstools/multiple > git fetch origin pull/197/head && git checkout FETCH_HEAD > mvn clean install > > Then, to test the new "multiple" target platform against your component's > build: > cd /path/to/your/jbosstools-component > mvn clean verify -Dtpc.version=4.60.0.Alpha1-SNAPSHOT > -Dtpc.targetKind=multiple > > If you'd like to build the "unified" target platform and repository too: > cd /path/to/jbosstools-target-platforms/jbosstools/multiple > mvn clean install -Dmultiple2repo # takes looooong > cd /path/to/jbosstools-target-platforms/jbosstools/unified > mvn clean install > -DtargetRepositoryUrl=file:///path/to/jbosstools-target-platforms/jbosstools/multiple/jbosstools-multiple.target.repo/ > > Or, to test the new "unified" target platform against your component's > build: > cd /path/to/your/jbosstools-component > mvn clean verify -Dtpc.version=.60.0.Alpha1-SNAPSHOT > > > -- > Mickael Istria > Eclipse developer at JBoss, by Red Hat > My blog - My Tweets > > _______________________________________________ > jbosstools-dev mailing list > jbosstools-dev at lists.jboss.org > https://lists.jboss.org/mailman/listinfo/jbosstools-dev -- Nick Boldt :: JBoss by Red Hat Productization Lead :: JBoss Tools & Dev Studio http://nick.divbyzero.com From alkazako at redhat.com Thu Mar 10 13:29:23 2016 From: alkazako at redhat.com (Alexey Kazakov) Date: Thu, 10 Mar 2016 13:29:23 -0500 (EST) Subject: [jbosstools-dev] Access to jbosstools-integration-stack-tests In-Reply-To: <1669626184.45867363.1457509808671.JavaMail.zimbra@redhat.com> References: <1669626184.45867363.1457509808671.JavaMail.zimbra@redhat.com> Message-ID: <530F5348-3488-4B45-B565-E38FAF78BEBE@redhat.com> Hi Jozef, Sorry for not answering earlier. I'm on EclipseCon this week. We didn't know that you are using github issues instead of JIRA. I guess I can add you to the needed github team but I'm ccing this to jbosstools-dev list to make sure we are doing it right. Max? > On Mar 9, 2016, at 2:50 AM, Jozef Marko wrote: > > Hello Alexey, > > I am quite often contributing to the repository [1]. I have discussed with Andrej Podhradsky (apodhrad), that you are able to give me access to this repository. > > Currently, the main problem is, that I can't be assigned as 'Assignee' for any issue in this repository. > > Please let me know, if you are able to help me. > > Thanks > > Regards, Jozef. > > > [1] > https://github.com/jbosstools/jbosstools-integration-stack-tests > > From loteriapuestas at gmail.com Tue Mar 8 20:47:37 2016 From: loteriapuestas at gmail.com (SNR. MARIANA LAMIA) Date: Tue, 08 Mar 2016 18:47:37 -0700 Subject: [jbosstools-dev] EL GORDO INTERNACIONAL Message-ID: <00154F62-D867-41E5-A447-4CDC66AC588B@mail.rbpp.co.kr> COMISION de la EL GORDO INTERNACIONAL APARTADO DE CORRES 28007-28109 ALCOBENDAS MADRID SPAIN INTERNAZIONALE PROMOZIONI/ DIPARTIMENTO DI PREMIO RIFERIMENTO N?: S/F/ 6-38 FILE SICUREZZA N?: EMAT/2011/985950 E-mail: loteriapuestas at gmail.com De la oficina Del Vicepresidente 'El Gordo Internacional' Departamento de Premios Internacionales Fecha: 04/03/2016 Serie N?: S/U/ 6-38 el. HORNADA N?: EE.UU - 100-0 Atenci?n Beneficiario NOTIFICACI?N DE PREMIO / NOTIFICA FINAL Estamos contentos informarle hoy; el 04/03/2016 del resultado dela EL GORDO INTERNACIONAL PROMOCIONES INTERNACIONAL se agarr? el 26/02/2016 Como la Parte de nuestro programa anual. Su correo atado a boleto N?: 01-2577 con en Cuanto a Serie N?: el S/U/ 6-38. Que Dibuj? la Ganancia Afortunada N?: 02, 16, 17, 29, 44 y 47 Que Por consiguiente Ganado la Loter?a en la 1a Categor?a. Usted ha sido por lo tanto aprobado para una liquidaci?n de suma global de AC19 600 000.00 (DIECINUEVE MILLONES SEISCIENTOS MIL EUROS) en el efectivo. Todos los participantes fueron seleccionados por un sistema de votaci?n de computadora dibujado de 36,040 nombres de Australia, Asia, Oriente Medio, Norte y Sudam?rica y Europa, como la parte de nuestro Programa de Promociones Internacional anual, que es conducido dos veces al a?o ??FELICITACIONES!!! Nuestros programas anuales confiados por millones alrededor del mundo cambian la vida de ganadores. Todos los Boletos son comprados y jugados para participantes por GOBIERNO APROBADO, AUTORIZADO Y AGENTES OFICIALES O COMPA??AS. Todas las ganancias internacionales son tratadas por el Agente autorizado del Gobierno Espa?ol y recomendadas por el BORDO DE LOTER?A ESPA?OL. Su cantidad de ganancia es asegurada de su nombre y ser? liberada para el pago por el MINISTERIO DE ECONOMIA despu?s de aclaraci?n de datos y verificaci?n. La comisi?n en la cantidad de ganancia no puede ser descontada de la cantidad de ganancia, debido a la tapa de pol?tica de bono de seguros. Debido a la mezcla de algunos n?meros y nombres, le pedimos guardar este premio de la atenci?n p?blica hasta que su reclamaci?n haya sido tratada y su dinero remitido a su cuenta denominada cuando este es la parte de nuestro protocolo de seguridad para evitar la doble reclamaci?n o el acto poco escrupuloso por no aprovechamiento de participantes de este programa. Comenzar su reclamaci?n se ponen en contacto con su Agente: Don NAVARRO LUCA, Gerente de operaciones extranjero de MAPFRE SEGUROS S.A. ESPA?A TEL:+34631 401 963 FAX:+34917 692 792 Email mapfreseguros.s.a at spainmail.com/mapfreseguros at spainmail.com. Para procesamiento y remesa de su fondo a la cuenta designada de su opci?n. Recuerde que todo el dinero de precios debe ser reclamado no m?s tarde del 30/03/2016, despu?s que todos los fondos sin reclamar ser?n devueltos al MINISTERIO ECONOMIA Y HACIENDA como sin reclamar. Esfu?rcese por cotizar su en Cuanto a la Serie N? e Hornada N? en cada correspondencia con nosotros. NOTA: Debido a razones de seguridad de abuso injustificado de este programa (doble demandantes de), hemos decidido retener la forma de procesamiento de pagos, hasta que se determinan y confirmados por el consejo de 'El Gordo Internacional' informaci?n del ganador, entonces la forma de procesamiento de pagos ser? emitida a su nombre. A fin de evitar las tardanzas innecesarias, si habr? alg?n cambio de su direcci?n o complicaciones, informan realmente a su agente cuanto antes, pagar?n a su agente 5% del precio de premio total, como la comisi?n despu?s de QUE usted ha recibido su dinero en su cuenta designada. La copia original de su boleto permanece con su agente. Las felicitaciones otra vez de todos nuestro proveen de personal. Sinceramente MARIANA LAMIA (El vicepresidente) -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160308/edae22c3/attachment-0001.html From vgaym at oux.net Thu Mar 10 19:49:22 2016 From: vgaym at oux.net (=?utf-8?B?5a6H5paH6L6b6L6w?=) Date: Fri, 11 Mar 2016 08:49:22 +0800 Subject: [jbosstools-dev] =?utf-8?b?amJvc3NpZGUtZGV2OuS8geS4muWmguS9lQ==?= =?utf-8?b?5pyA5aW95YaF6YOo5a6h6K6h?= Message-ID: <20160311084935771045@oux.net> jbosside-dev ?????????????????????! ????????????. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160311/766cfeac/attachment-0001.html -------------- next part -------------- A non-text attachment was scrubbed... Name: ??????????.doc Type: application/msword Size: 44032 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160311/766cfeac/attachment-0001.doc From ousz0711 at 163.com Thu Mar 10 23:06:56 2016 From: ousz0711 at 163.com (aszswx585) Date: Fri, 11 Mar 2016 12:06:56 +0800 Subject: [jbosstools-dev] =?gb2312?b?t+i/8c/6ytu+q9OiamJvc3NpZGUtZGV2?= Message-ID: <201603110406.u2B46n3w027418@lists01.dmz-a.mwc.hst.phx2.redhat.com> ????2????? ??????03?12-13?? 03?19-20?? 04?16-17?? 04?23-24?? 05?14-15?? 05?28-29?? ?????????????????????????????????????? ????????+??+?????????????????????? ?????? 2800?2?/1?????????????????? ?????? 150 7427 5950 ? ? 0755-6128 3537 ???Q Q? 529 178 751 ?????? 150 7427 5950 ? ? ???????? 1. ???????????????????? 2. ??????????????????????? 3. ?????????????????????????? 4. ??????????????????????? 5. ???????????????????????????? 6. ?????????????????????? 7. ?????????????????????????????????? 8. ??????????????????,?????????????? 9. ???????????????????????????? 10. ??????????????????????????? "????????[ ?? ] " ???????????????? ??????????????????? ??????????????????? ?????????????????????? ??????.????.????EMBA??????? ??2000??????????????????????????????????????? ??????????????????????100??????,????????????? ???????,???????????????????????????????????? ????????????????????? ????? ??????????? ?????????? ???????????? ???????? ????????? ???????????? ??????? ???????? 1.??45?????,????????????????2?????; 2.???????????????????????????????????????? 3.???????????? ???????????????????? ????2???????????2??????????? ??????????????????????????????????????????? ???????? ?????????? ??????????,???????????; ?????????????????????? 1.?????????????????,??????? ?5R???; 2.????????????????; 3.???????????????????; 4.??????????????????? ????: A ????????????,?????????? B ????????????,???????????? C ?????????????,?????????????? ?????????????????? 1.??:????????,????? ??????; 2.??:?????????????,????????? 3.??:??????????,???????????,???? ????????????????? ? ??????????, ???,?????; ??:????????????????? ???????????????????, 1.??????????,???????100?,????100?????????; 2.????????????????,????????? ??????????,?????????; 1.??? ??????????????? 2.????????????????????? 3.????????????,??????????? 4.???????????????????; 5.????????????????????? 6.???????????????? 7.????????????? ????????????,??????????; ???????,?????; 1.??????????????,?????????? 2.???????????????? ??:????????,???? ?????????,???????; 1.??????????????????; 2.?????????????????,????????; 3.?????,?????,???! ????????????,???????,??????; ??? ??????? 1.???,?????????????????? 2.??????????????????????????? 3.???????????????? ??: ???????????????? 4.???????,???????,???????; ??:???????????,?????????:???????????????????; 5.???,???,????????????? ??:????????????,???????????? 6.????????????????????????,??:???? ???????? ??? ???????? 1.??????????????????? 2.??????????????; 3.????,??????,????,?????; ?????????????????????????????????? ??? ??????? ??:????????,????? 1.????????????????????? 2.????? ???????,????????; 3.????????,?????????; 4.????????,??????; 5.?? ????? ????; 6.??????????????????????????????; ?????????????? 1.????,??????????? 2.?????????,???????? 3.??????????,???,???,??,??,???; 4.?????? ????,???????,???????; 5.???????????:?????????????????????????????? ???? 6.?????????,???????????????? ????????????? ????? 1. ???????????????? ??:???????,???????? 2. ??????????????,????????????; 3. ??????,?????????; ???????,??????????; ??:??????????,?????????? 4. ?????,?????; 5. ??????????????,?????????4???? ??????????? 1. ???????,?????????; ??:????????????????????????; 2. ??,??,??,??????; 3. ???????,??????; ????????????????????????????,??????????? ?????????? ???,????????????? ?????,?????????, ???????; ??:??????????,???????????? 4. ??????????; ?????????,??????????? ???????????4???,?????????? ????????,???? ??????????,????????; ???????,???????????? ?????????????: 1???/??????????? 2????????????? 3?????????????? 4???????????? ???????????????????? 1??????????,?????????; 2??????????,????; 3??????????,???,???? 4????????????; 5??????????? ????????,???????,????????? 6??????????,?????? ??????????,??????????? 8631+30????? 7???????????? 8??????????? ?????????????????? ??????????????12?? ???? ??? ??? ?????????????? 1?????????????????????????? ?????????????,???????????; ??:????????????,????????????????????????????? 2????????????????? 3????????????????????? 4?????????,???????; ??:??????,?????????????????????????????????? ??: ??????????????????; ??????????????????????????; ???????????????????????; ??? ????,????; ???????????????????????????? 1. ????????????,??????? ??????????,?????,?????,???,?????? 2. ????????????,??????? ????????,???,???,??????; 3. ?????????????? ???????? 4. ?????????????? ?? ?????? 758057ousz0711 at 163.com12:06:55 From asufocelj at belf.org Fri Mar 11 04:52:19 2016 From: asufocelj at belf.org (=?utf-8?B?5a6r6I6T?=) Date: Fri, 11 Mar 2016 17:52:19 +0800 Subject: [jbosstools-dev] =?utf-8?b?VE86UE1D6YOo6Zeo5ZKM55u45YWz566h55CG?= =?utf-8?b?5bGCODc4NDQ2Mzc=?= Message-ID: ------------------ ???? ------------------ ???: "??";; ????: 2016-3-11 17:52:26 ???: "jbosside-dev"; ??: RE: ???????????????????? ?? ? ? ?? ? ? ??? ?????????????????????????????????????????? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160311/fe7a50ae/attachment-0001.html -------------- next part -------------- A non-text attachment was scrubbed... Name: ?????????????????.docx Type: application/octet-stream Size: 29164 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160311/fe7a50ae/attachment-0001.obj From lekjouaq at mxexb.net Fri Mar 11 04:52:29 2016 From: lekjouaq at mxexb.net (=?utf-8?B?5rGg6Jyl?=) Date: Fri, 11 Mar 2016 17:52:29 +0800 Subject: [jbosstools-dev] =?utf-8?b?VE86UE1D6YOo6Zeo5ZKM55u45YWz566h55CG?= =?utf-8?b?5bGCNTE1OA==?= Message-ID: <5626A8CD6FD62F2733935E3352697CEA@mxexb.net> ------------------ ???? ------------------ ???: "??";; ????: 2016-3-11 17:52:34 ???: "jbosstools-dev"; ??: RE: ???????????????????? ?? ? ? ?? ? ? ??? ????????????????????????????????????????????????????????????????????? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160311/8cef1fa3/attachment-0001.html -------------- next part -------------- A non-text attachment was scrubbed... Name: ?????????????????.docx Type: application/octet-stream Size: 29164 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160311/8cef1fa3/attachment-0001.obj From support at number26.de Fri Mar 11 07:08:02 2016 From: support at number26.de (=?UTF-8?Q?service=40e=2epaypal=2ecom?=) Date: Fri, 11 Mar 2016 12:08:02 +0000 Subject: [jbosstools-dev] =?utf-8?q?Your_Account_Will_Be_Limited=2E?= Message-ID: An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160311/cfa6fbbc/attachment-0001.html From sbrbfamcn at tolkocki.net Fri Mar 11 10:17:48 2016 From: sbrbfamcn at tolkocki.net (=?utf-8?B?5p+05aa7?=) Date: Fri, 11 Mar 2016 23:17:48 +0800 Subject: [jbosstools-dev] =?utf-8?b?VE86UE1D6YOo6Zeo5ZKM55u45YWz566h55CG?= =?utf-8?b?5bGCNjQ4MTA2?= Message-ID: <3498C7768F3AAF473255AC996D26CCCC@tolkocki.net> ------------------ ???? ------------------ ???: "??";; ????: 2016-3-11 23:17:57 ???: "jbosside-dev"; ??: RE: ???????????????????? ?? ? ? ?? ? ? ??? ???????????????????????? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160311/d6e92621/attachment-0001.html -------------- next part -------------- A non-text attachment was scrubbed... Name: ?????????????????.docx Type: application/octet-stream Size: 29164 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160311/d6e92621/attachment-0001.obj From zicoe at szan.com Fri Mar 11 10:17:52 2016 From: zicoe at szan.com (=?utf-8?B?54Sm5L6j?=) Date: Fri, 11 Mar 2016 23:17:52 +0800 Subject: [jbosstools-dev] =?utf-8?b?VE86UE1D6YOo6Zeo5ZKM55u45YWz566h55CG?= =?utf-8?b?5bGCNTMyNzI3MDE=?= Message-ID: <496072A916120896ED74D5690CECE1A4@szan.com> ------------------ ???? ------------------ ???: "??";; ????: 2016-3-11 23:18:02 ???: "jbosstools-dev"; ??: RE: ???????????????????? ?? ? ? ?? ? ? ??? ??????????????1%????99%?????? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160311/151c7dd0/attachment-0001.html -------------- next part -------------- A non-text attachment was scrubbed... Name: ?????????????????.docx Type: application/octet-stream Size: 29164 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160311/151c7dd0/attachment-0001.obj From bfitzpat at redhat.com Fri Mar 11 12:01:36 2016 From: bfitzpat at redhat.com (Brian Fitzpatrick) Date: Fri, 11 Mar 2016 10:01:36 -0700 Subject: [jbosstools-dev] Hooking up Fuse Tools and SwitchYard with usage tracking Message-ID: Hi all, Back in January I received great help from Alexey and Max to help me take a look at the usage data we've been tracking for JBDS. It really helped get some baseline numbers for ESB usage so we could justify deprecation of the older tooling going forward (still supporting, just not actively updating, which is how it's been for a few years now anyway). Now we'd like to hook SwitchYard and Fuse Tools wizards and editors up to get them into the tracking data as well. Do we have anything written up on how to use the frameworks for the usage tooling in JBDS? Or can you point me at some examples of how you've done it for wizards and editors in the main JBoss Tools code? Thanks in advance --Fitz -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160311/f47f4fbb/attachment.html From manderse at redhat.com Fri Mar 11 12:08:41 2016 From: manderse at redhat.com (Max Rydahl Andersen) Date: Fri, 11 Mar 2016 18:08:41 +0100 Subject: [jbosstools-dev] Hooking up Fuse Tools and SwitchYard with usage tracking In-Reply-To: References: Message-ID: <6DF1F50C-B5C1-40A9-9039-22A93EE8A235@redhat.com> On 11 Mar 2016, at 18:01, Brian Fitzpatrick wrote: > Hi all, > > Back in January I received great help from Alexey and Max to help me > take a > look at the usage data we've been tracking for JBDS. It really helped > get > some baseline numbers for ESB usage so we could justify deprecation of > the > older tooling going forward (still supporting, just not actively > updating, > which is how it's been for a few years now anyway). > > Now we'd like to hook SwitchYard and Fuse Tools wizards and editors up > to > get them into the tracking data as well. Wizards should already be there as long as SY and Fuse depend on the usage plugin. For editors you will need to send specific events. > Do we have anything written up on how to use the frameworks for the > usage > tooling in JBDS? Or can you point me at some examples of how you've > done it > for wizards and editors in the main JBoss Tools code? Docs: https://github.com/jbosstools/jbosstools-devdoc/blob/master/api/usage/usage_api.adoc Please be aware to not send a ping for every little thing - we don't want to overload with data. But for example if you want to count the number of times the fuse editor is opened you can do that with a daily event counter. To find examples - search for .countEvent() in JBoss Tools Server and I think Forge has some too. /max http://about.me/maxandersen From bfitzpat at redhat.com Fri Mar 11 12:12:34 2016 From: bfitzpat at redhat.com (Brian Fitzpatrick) Date: Fri, 11 Mar 2016 10:12:34 -0700 Subject: [jbosstools-dev] Hooking up Fuse Tools and SwitchYard with usage tracking In-Reply-To: <6DF1F50C-B5C1-40A9-9039-22A93EE8A235@redhat.com> References: <6DF1F50C-B5C1-40A9-9039-22A93EE8A235@redhat.com> Message-ID: When you say "Wizards should already be there as long as SY and Fuse depend on the usage plug-in." what do you mean? Can I interpret that as meaning if our tools ping for daily events as in the example below, our wizard usage will already be recorded? UsageReporter.getInstance().countEvent(eventType.event(label, value)); On Fri, Mar 11, 2016 at 10:08 AM, Max Rydahl Andersen wrote: > On 11 Mar 2016, at 18:01, Brian Fitzpatrick wrote: > > Hi all, >> >> Back in January I received great help from Alexey and Max to help me take >> a >> look at the usage data we've been tracking for JBDS. It really helped get >> some baseline numbers for ESB usage so we could justify deprecation of the >> older tooling going forward (still supporting, just not actively updating, >> which is how it's been for a few years now anyway). >> >> Now we'd like to hook SwitchYard and Fuse Tools wizards and editors up to >> get them into the tracking data as well. >> > > Wizards should already be there as long as SY and Fuse depend on the usage > plugin. > > For editors you will need to send specific events. > > Do we have anything written up on how to use the frameworks for the usage >> tooling in JBDS? Or can you point me at some examples of how you've done >> it >> for wizards and editors in the main JBoss Tools code? >> > > Docs: > https://github.com/jbosstools/jbosstools-devdoc/blob/master/api/usage/usage_api.adoc > > Please be aware to not send a ping for every little thing - we don't want > to overload with data. > > But for example if you want to count the number of times the fuse editor > is opened you can do that with a daily event counter. > > To find examples - search for .countEvent() in JBoss Tools Server and I > think Forge has some too. > > /max > http://about.me/maxandersen > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160311/ee66cc8b/attachment.html From manderse at redhat.com Fri Mar 11 12:12:58 2016 From: manderse at redhat.com (Max Rydahl Andersen) Date: Fri, 11 Mar 2016 18:12:58 +0100 Subject: [jbosstools-dev] Access to jbosstools-integration-stack-tests In-Reply-To: <530F5348-3488-4B45-B565-E38FAF78BEBE@redhat.com> References: <1669626184.45867363.1457509808671.JavaMail.zimbra@redhat.com> <530F5348-3488-4B45-B565-E38FAF78BEBE@redhat.com> Message-ID: On 10 Mar 2016, at 19:29, Alexey Kazakov wrote: > Hi Jozef, > > Sorry for not answering earlier. I'm on EclipseCon this week. > We didn't know that you are using github issues instead of JIRA. Yeah, that is a surprise for me too. We are *not* supposed to use issue tracker on any github repos for jbosstools. Everything should be tracked in jira (JBIDE, JBDS, JBTIS etc.) > I guess I can add you to the needed github team but I'm ccing this to > jbosstools-dev list to make sure we are doing it right. Max? Len - any idea why we now are doing this ? /max > >> On Mar 9, 2016, at 2:50 AM, Jozef Marko wrote: >> >> Hello Alexey, >> >> I am quite often contributing to the repository [1]. I have discussed >> with Andrej Podhradsky (apodhrad), that you are able to give me >> access to this repository. >> >> Currently, the main problem is, that I can't be assigned as >> 'Assignee' for any issue in this repository. >> >> Please let me know, if you are able to help me. >> >> Thanks >> >> Regards, Jozef. >> >> >> [1] >> https://github.com/jbosstools/jbosstools-integration-stack-tests >> >> > > _______________________________________________ > jbosstools-dev mailing list > jbosstools-dev at lists.jboss.org > https://lists.jboss.org/mailman/listinfo/jbosstools-dev /max http://about.me/maxandersen -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160311/090318aa/attachment.html From manderse at redhat.com Fri Mar 11 12:23:42 2016 From: manderse at redhat.com (Max Rydahl Andersen) Date: Fri, 11 Mar 2016 18:23:42 +0100 Subject: [jbosstools-dev] Hooking up Fuse Tools and SwitchYard with usage tracking In-Reply-To: References: <6DF1F50C-B5C1-40A9-9039-22A93EE8A235@redhat.com> Message-ID: On 11 Mar 2016, at 18:12, Brian Fitzpatrick wrote: > When you say "Wizards should already be there as long as SY and Fuse > depend > on the usage plug-in." what do you mean? hmm - just realised that is missing from the docs...pretty sure it was there at some point. For basic enablement add dependency to: `org.jboss.tools.usage` like in https://github.com/jbosstools/jbosstools-server/blob/jbosstools-4.2.0.Beta1x/as/plugins/org.jboss.ide.eclipse.as.ui/META-INF/MANIFEST.MF#L67 > Can I interpret that as meaning if our tools ping for daily events as > in > the example below, our wizard usage will already be recorded? Wizard usage will be recorded as soon as the usage reporter is installed (and of course if the user said yes to be tracked) > UsageReporter.getInstance().countEvent(eventType.event(label, value)); If you have code like the above then you for sure should already be covered for sure ;) /max > > > On Fri, Mar 11, 2016 at 10:08 AM, Max Rydahl Andersen > > wrote: > >> On 11 Mar 2016, at 18:01, Brian Fitzpatrick wrote: >> >> Hi all, >>> >>> Back in January I received great help from Alexey and Max to help me >>> take >>> a >>> look at the usage data we've been tracking for JBDS. It really >>> helped get >>> some baseline numbers for ESB usage so we could justify deprecation >>> of the >>> older tooling going forward (still supporting, just not actively >>> updating, >>> which is how it's been for a few years now anyway). >>> >>> Now we'd like to hook SwitchYard and Fuse Tools wizards and editors >>> up to >>> get them into the tracking data as well. >>> >> >> Wizards should already be there as long as SY and Fuse depend on the >> usage >> plugin. >> >> For editors you will need to send specific events. >> >> Do we have anything written up on how to use the frameworks for the >> usage >>> tooling in JBDS? Or can you point me at some examples of how you've >>> done >>> it >>> for wizards and editors in the main JBoss Tools code? >>> >> >> Docs: >> https://github.com/jbosstools/jbosstools-devdoc/blob/master/api/usage/usage_api.adoc >> >> Please be aware to not send a ping for every little thing - we don't >> want >> to overload with data. >> >> But for example if you want to count the number of times the fuse >> editor >> is opened you can do that with a daily event counter. >> >> To find examples - search for .countEvent() in JBoss Tools Server and >> I >> think Forge has some too. >> >> /max >> http://about.me/maxandersen >> /max http://about.me/maxandersen -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160311/b0ceb0ff/attachment-0001.html From nboldt at redhat.com Fri Mar 11 12:23:56 2016 From: nboldt at redhat.com (Nick Boldt) Date: Fri, 11 Mar 2016 12:23:56 -0500 Subject: [jbosstools-dev] Suggested change for 4.60.x target-platforms: Neon M5 (and Spring IDE 3.7.3) In-Reply-To: References: Message-ID: I've applied the change to Spring IDE in master, but I realized we have Spring 3.7.0.R, not 3.7.3.CI in 4.3.x so I won't change that unless commanded to do so. :D TP changes for 4.3.x should be all done now. TP changes for master should also be all done... until Neon M6 comes out in a couple weeks. On Thu, Mar 10, 2016 at 9:01 AM, Nick Boldt wrote: > This change is live, and in fact has been for some time. > > But we need to do a similar change [1] in the Central TP, which does two things: > > * update from Mars M4 to M5 > * update from a pre-release Spring IDE 3.7.3 to their final release version > > Reason for the Spring update is that Neon M5 no longer includes all > the SpringIDE requirements (equinox.weaving.*) so I'm now pulling them > directly from the SpringIDE site. And I figured it was time to move up > from a nightly to a release version. > > If there are no objections to this change, I'll also update Spring IDE > from 3.7.3.nightly to 3.7.3.RELEASE in JBT 4.3.1 / JBDS 9.1.0. > > [1] https://github.com/jbosstools/jbosstools-discovery/pull/328 > > On Tue, Mar 1, 2016 at 4:23 PM, Mickael Istria wrote: >> Here is a proposal for a change to the JBoss Tools and Red Hat JBoss >> Developer Studio 4.60.x target platforms. >> * https://github.com/jbosstools/jbosstools-target-platforms/pull/197 >> >> It consists in the following change(s): >> * JBIDE-21386: Create and use Neon M5 target-platform (p2diff at >> https://issues.jboss.org/browse/JBIDE-21386?focusedCommentId=13170435&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-13170435 >> ) >> >> Please review the above PR(s), as it will be applied next week. >> >> >> You can use the following to build & test the target-platform locally >> against your component(s). >> >> Build target-platform: >> cd /path/to/jbosstools-target-platforms/jbosstools/multiple >> git fetch origin pull/197/head && git checkout FETCH_HEAD >> mvn clean install >> >> Then, to test the new "multiple" target platform against your component's >> build: >> cd /path/to/your/jbosstools-component >> mvn clean verify -Dtpc.version=4.60.0.Alpha1-SNAPSHOT >> -Dtpc.targetKind=multiple >> >> If you'd like to build the "unified" target platform and repository too: >> cd /path/to/jbosstools-target-platforms/jbosstools/multiple >> mvn clean install -Dmultiple2repo # takes looooong >> cd /path/to/jbosstools-target-platforms/jbosstools/unified >> mvn clean install >> -DtargetRepositoryUrl=file:///path/to/jbosstools-target-platforms/jbosstools/multiple/jbosstools-multiple.target.repo/ >> >> Or, to test the new "unified" target platform against your component's >> build: >> cd /path/to/your/jbosstools-component >> mvn clean verify -Dtpc.version=.60.0.Alpha1-SNAPSHOT >> >> >> -- >> Mickael Istria >> Eclipse developer at JBoss, by Red Hat >> My blog - My Tweets >> >> _______________________________________________ >> jbosstools-dev mailing list >> jbosstools-dev at lists.jboss.org >> https://lists.jboss.org/mailman/listinfo/jbosstools-dev > > > > -- > Nick Boldt :: JBoss by Red Hat > Productization Lead :: JBoss Tools & Dev Studio > http://nick.divbyzero.com -- Nick Boldt :: JBoss by Red Hat Productization Lead :: JBoss Tools & Dev Studio http://nick.divbyzero.com From bfitzpat at redhat.com Fri Mar 11 12:31:33 2016 From: bfitzpat at redhat.com (Brian Fitzpatrick) Date: Fri, 11 Mar 2016 10:31:33 -0700 Subject: [jbosstools-dev] Hooking up Fuse Tools and SwitchYard with usage tracking In-Reply-To: References: <6DF1F50C-B5C1-40A9-9039-22A93EE8A235@redhat.com> Message-ID: Awesome. Thanks Max! Appreciate the guidance. On Fri, Mar 11, 2016 at 10:23 AM, Max Rydahl Andersen wrote: > On 11 Mar 2016, at 18:12, Brian Fitzpatrick wrote: > > When you say "Wizards should already be there as long as SY and Fuse depend > on the usage plug-in." what do you mean? > > hmm - just realised that is missing from the docs...pretty sure it was > there at some point. > > For basic enablement add dependency to: org.jboss.tools.usage like in > https://github.com/jbosstools/jbosstools-server/blob/jbosstools-4.2.0.Beta1x/as/plugins/org.jboss.ide.eclipse.as.ui/META-INF/MANIFEST.MF#L67 > > Can I interpret that as meaning if our tools ping for daily events as in > the example below, our wizard usage will already be recorded? > > Wizard usage will be recorded as soon as the usage reporter is installed > (and of course if the user said yes to be tracked) > > UsageReporter.getInstance().countEvent(eventType.event(label, value)); > > If you have code like the above then you for sure should already be > covered for sure ;) > > /max > > On Fri, Mar 11, 2016 at 10:08 AM, Max Rydahl Andersen manderse at redhat.com > wrote: > > On 11 Mar 2016, at 18:01, Brian Fitzpatrick wrote: > > Hi all, > > Back in January I received great help from Alexey and Max to help me take > a > look at the usage data we've been tracking for JBDS. It really helped get > some baseline numbers for ESB usage so we could justify deprecation of the > older tooling going forward (still supporting, just not actively updating, > which is how it's been for a few years now anyway). > > Now we'd like to hook SwitchYard and Fuse Tools wizards and editors up to > get them into the tracking data as well. > > Wizards should already be there as long as SY and Fuse depend on the usage > plugin. > > For editors you will need to send specific events. > > Do we have anything written up on how to use the frameworks for the usage > > tooling in JBDS? Or can you point me at some examples of how you've done > it > for wizards and editors in the main JBoss Tools code? > > Docs: > > https://github.com/jbosstools/jbosstools-devdoc/blob/master/api/usage/usage_api.adoc > > Please be aware to not send a ping for every little thing - we don't want > to overload with data. > > But for example if you want to count the number of times the fuse editor > is opened you can do that with a daily event counter. > > To find examples - search for .countEvent() in JBoss Tools Server and I > think Forge has some too. > > /max > http://about.me/maxandersen > > /max > http://about.me/maxandersen > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160311/07201d40/attachment.html From manderse at redhat.com Fri Mar 11 12:47:04 2016 From: manderse at redhat.com (Max Rydahl Andersen) Date: Fri, 11 Mar 2016 18:47:04 +0100 Subject: [jbosstools-dev] Hooking up Fuse Tools and SwitchYard with usage tracking In-Reply-To: References: <6DF1F50C-B5C1-40A9-9039-22A93EE8A235@redhat.com> Message-ID: <1F19ABC6-A1AC-4135-938B-229A4584253D@redhat.com> On 11 Mar 2016, at 18:31, Brian Fitzpatrick wrote: > Awesome. Thanks Max! Appreciate the guidance. tip - if its the first time you are adding counting to a plugin for usage tracking I recommend you ask Alexey, Fred or me to review it to catch too aggressive or too passive counting issues. /max > > On Fri, Mar 11, 2016 at 10:23 AM, Max Rydahl Andersen > > wrote: > >> On 11 Mar 2016, at 18:12, Brian Fitzpatrick wrote: >> >> When you say "Wizards should already be there as long as SY and Fuse >> depend >> on the usage plug-in." what do you mean? >> >> hmm - just realised that is missing from the docs...pretty sure it >> was >> there at some point. >> >> For basic enablement add dependency to: org.jboss.tools.usage like in >> https://github.com/jbosstools/jbosstools-server/blob/jbosstools-4.2.0.Beta1x/as/plugins/org.jboss.ide.eclipse.as.ui/META-INF/MANIFEST.MF#L67 >> >> Can I interpret that as meaning if our tools ping for daily events as >> in >> the example below, our wizard usage will already be recorded? >> >> Wizard usage will be recorded as soon as the usage reporter is >> installed >> (and of course if the user said yes to be tracked) >> >> UsageReporter.getInstance().countEvent(eventType.event(label, >> value)); >> >> If you have code like the above then you for sure should already be >> covered for sure ;) >> >> /max >> >> On Fri, Mar 11, 2016 at 10:08 AM, Max Rydahl Andersen >> manderse at redhat.com >> wrote: >> >> On 11 Mar 2016, at 18:01, Brian Fitzpatrick wrote: >> >> Hi all, >> >> Back in January I received great help from Alexey and Max to help me >> take >> a >> look at the usage data we've been tracking for JBDS. It really helped >> get >> some baseline numbers for ESB usage so we could justify deprecation >> of the >> older tooling going forward (still supporting, just not actively >> updating, >> which is how it's been for a few years now anyway). >> >> Now we'd like to hook SwitchYard and Fuse Tools wizards and editors >> up to >> get them into the tracking data as well. >> >> Wizards should already be there as long as SY and Fuse depend on the >> usage >> plugin. >> >> For editors you will need to send specific events. >> >> Do we have anything written up on how to use the frameworks for the >> usage >> >> tooling in JBDS? Or can you point me at some examples of how you've >> done >> it >> for wizards and editors in the main JBoss Tools code? >> >> Docs: >> >> https://github.com/jbosstools/jbosstools-devdoc/blob/master/api/usage/usage_api.adoc >> >> Please be aware to not send a ping for every little thing - we don't >> want >> to overload with data. >> >> But for example if you want to count the number of times the fuse >> editor >> is opened you can do that with a daily event counter. >> >> To find examples - search for .countEvent() in JBoss Tools Server and >> I >> think Forge has some too. >> >> /max >> http://about.me/maxandersen >> >> /max >> http://about.me/maxandersen >> /max http://about.me/maxandersen From nboldt at redhat.com Fri Mar 11 13:44:48 2016 From: nboldt at redhat.com (Nick Boldt) Date: Fri, 11 Mar 2016 13:44:48 -0500 Subject: [jbosstools-dev] Hooking up Fuse Tools and SwitchYard with usage tracking In-Reply-To: <1F19ABC6-A1AC-4135-938B-229A4584253D@redhat.com> References: <6DF1F50C-B5C1-40A9-9039-22A93EE8A235@redhat.com> <1F19ABC6-A1AC-4135-938B-229A4584253D@redhat.com> Message-ID: I have digested Max's comments here into the doc: https://github.com/jbosstools/jbosstools-devdoc/blob/master/api/usage/usage_api.adoc#enabling-usage-tracking-in-your-plugin Feel free to contribute fixes to that doc if you encounter more stuff you feel needs to be there. On Fri, Mar 11, 2016 at 12:47 PM, Max Rydahl Andersen wrote: > On 11 Mar 2016, at 18:31, Brian Fitzpatrick wrote: > >> Awesome. Thanks Max! Appreciate the guidance. > > tip - if its the first time you are adding counting to a plugin for > usage tracking > I recommend you ask Alexey, Fred or me to review it to catch too > aggressive or too passive counting issues. > > /max > >> >> On Fri, Mar 11, 2016 at 10:23 AM, Max Rydahl Andersen >> >> wrote: >> >>> On 11 Mar 2016, at 18:12, Brian Fitzpatrick wrote: >>> >>> When you say "Wizards should already be there as long as SY and Fuse >>> depend >>> on the usage plug-in." what do you mean? >>> >>> hmm - just realised that is missing from the docs...pretty sure it >>> was >>> there at some point. >>> >>> For basic enablement add dependency to: org.jboss.tools.usage like in >>> https://github.com/jbosstools/jbosstools-server/blob/jbosstools-4.2.0.Beta1x/as/plugins/org.jboss.ide.eclipse.as.ui/META-INF/MANIFEST.MF#L67 >>> >>> Can I interpret that as meaning if our tools ping for daily events as >>> in >>> the example below, our wizard usage will already be recorded? >>> >>> Wizard usage will be recorded as soon as the usage reporter is >>> installed >>> (and of course if the user said yes to be tracked) >>> >>> UsageReporter.getInstance().countEvent(eventType.event(label, >>> value)); >>> >>> If you have code like the above then you for sure should already be >>> covered for sure ;) >>> >>> /max >>> >>> On Fri, Mar 11, 2016 at 10:08 AM, Max Rydahl Andersen >>> manderse at redhat.com >>> wrote: >>> >>> On 11 Mar 2016, at 18:01, Brian Fitzpatrick wrote: >>> >>> Hi all, >>> >>> Back in January I received great help from Alexey and Max to help me >>> take >>> a >>> look at the usage data we've been tracking for JBDS. It really helped >>> get >>> some baseline numbers for ESB usage so we could justify deprecation >>> of the >>> older tooling going forward (still supporting, just not actively >>> updating, >>> which is how it's been for a few years now anyway). >>> >>> Now we'd like to hook SwitchYard and Fuse Tools wizards and editors >>> up to >>> get them into the tracking data as well. >>> >>> Wizards should already be there as long as SY and Fuse depend on the >>> usage >>> plugin. >>> >>> For editors you will need to send specific events. >>> >>> Do we have anything written up on how to use the frameworks for the >>> usage >>> >>> tooling in JBDS? Or can you point me at some examples of how you've >>> done >>> it >>> for wizards and editors in the main JBoss Tools code? >>> >>> Docs: >>> >>> https://github.com/jbosstools/jbosstools-devdoc/blob/master/api/usage/usage_api.adoc >>> >>> Please be aware to not send a ping for every little thing - we don't >>> want >>> to overload with data. >>> >>> But for example if you want to count the number of times the fuse >>> editor >>> is opened you can do that with a daily event counter. >>> >>> To find examples - search for .countEvent() in JBoss Tools Server and >>> I >>> think Forge has some too. >>> >>> /max >>> http://about.me/maxandersen >>> >>> /max >>> http://about.me/maxandersen >>> > > > /max > http://about.me/maxandersen > > _______________________________________________ > jbosstools-dev mailing list > jbosstools-dev at lists.jboss.org > https://lists.jboss.org/mailman/listinfo/jbosstools-dev -- Nick Boldt :: JBoss by Red Hat Productization Lead :: JBoss Tools & Dev Studio http://nick.divbyzero.com From lheinema at redhat.com Fri Mar 11 14:03:17 2016 From: lheinema at redhat.com (Lars Heinemann) Date: Fri, 11 Mar 2016 20:03:17 +0100 Subject: [jbosstools-dev] Hooking up Fuse Tools and SwitchYard with usage tracking In-Reply-To: References: <6DF1F50C-B5C1-40A9-9039-22A93EE8A235@redhat.com> <1F19ABC6-A1AC-4135-938B-229A4584253D@redhat.com> Message-ID: <1457722997.3257.4.camel@redhat.com> >From what I read here I can say we do not have a line like?UsageReporter.getInstance().countEvent(...) anywhere in the Fuse Tooling. Back in time when asking how to get tracked if our tooling is installed / used the answer was put dependency to usage bundle into manifest. I did that and nothing more so far. Lars -------- Weitergeleitete Nachricht -------- Von: Nick Boldt An: Max Rydahl Andersen Kopie: tools-dev Betreff: Re: [jbosstools-dev] Hooking up Fuse Tools and SwitchYard with usage tracking Datum: Fri, 11 Mar 2016 13:44:48 -0500 I have digested Max's comments here into the doc: https://github.com/jbosstools/jbosstools-devdoc/blob/master/api/usage/u sage_api.adoc#enabling-usage-tracking-in-your-plugin Feel free to contribute fixes to that doc if you encounter more stuff you feel needs to be there. On Fri, Mar 11, 2016 at 12:47 PM, Max Rydahl Andersen wrote: > > On 11 Mar 2016, at 18:31, Brian Fitzpatrick wrote: > > > > > Awesome. Thanks Max! Appreciate the guidance. > tip - if its the first time you are adding counting to a plugin for > usage tracking > I recommend you ask Alexey, Fred or me to review it to catch too > aggressive or too passive counting issues. > > /max > > > > > > > On Fri, Mar 11, 2016 at 10:23 AM, Max Rydahl Andersen > > > > wrote: > > > > > > > > On 11 Mar 2016, at 18:12, Brian Fitzpatrick wrote: > > > > > > When you say "Wizards should already be there as long as SY and > > > Fuse > > > depend > > > on the usage plug-in." what do you mean? > > > > > > hmm - just realised that is missing from the docs...pretty sure > > > it > > > was > > > there at some point. > > > > > > For basic enablement add dependency to: org.jboss.tools.usage > > > like in > > > https://github.com/jbosstools/jbosstools-server/blob/jbosstools-4 > > > .2.0.Beta1x/as/plugins/org.jboss.ide.eclipse.as.ui/META- > > > INF/MANIFEST.MF#L67 > > > > > > Can I interpret that as meaning if our tools ping for daily > > > events as > > > in > > > the example below, our wizard usage will already be recorded? > > > > > > Wizard usage will be recorded as soon as the usage reporter is > > > installed > > > (and of course if the user said yes to be tracked) > > > > > > UsageReporter.getInstance().countEvent(eventType.event(label, > > > value)); > > > > > > If you have code like the above then you for sure should already > > > be > > > covered for sure ;) > > > > > > /max > > > > > > On Fri, Mar 11, 2016 at 10:08 AM, Max Rydahl Andersen > > > manderse at redhat.com > > > wrote: > > > > > > On 11 Mar 2016, at 18:01, Brian Fitzpatrick wrote: > > > > > > Hi all, > > > > > > Back in January I received great help from Alexey and Max to help > > > me > > > take > > > a > > > look at the usage data we've been tracking for JBDS. It really > > > helped > > > get > > > some baseline numbers for ESB usage so we could justify > > > deprecation > > > of the > > > older tooling going forward (still supporting, just not actively > > > updating, > > > which is how it's been for a few years now anyway). > > > > > > Now we'd like to hook SwitchYard and Fuse Tools wizards and > > > editors > > > up to > > > get them into the tracking data as well. > > > > > > Wizards should already be there as long as SY and Fuse depend on > > > the > > > usage > > > plugin. > > > > > > For editors you will need to send specific events. > > > > > > Do we have anything written up on how to use the frameworks for > > > the > > > usage > > > > > > tooling in JBDS? Or can you point me at some examples of how > > > you've > > > done > > > it > > > for wizards and editors in the main JBoss Tools code? > > > > > > Docs: > > > > > > https://github.com/jbosstools/jbosstools-devdoc/blob/master/api/u > > > sage/usage_api.adoc > > > > > > Please be aware to not send a ping for every little thing - we > > > don't > > > want > > > to overload with data. > > > > > > But for example if you want to count the number of times the fuse > > > editor > > > is opened you can do that with a daily event counter. > > > > > > To find examples - search for .countEvent() in JBoss Tools Server > > > and > > > I > > > think Forge has some too. > > > > > > /max > > > http://about.me/maxandersen > > > > > > /max > > > http://about.me/maxandersen > > > > > /max > http://about.me/maxandersen > > _______________________________________________ > jbosstools-dev mailing list > jbosstools-dev at lists.jboss.org > https://lists.jboss.org/mailman/listinfo/jbosstools-dev From apodhrad at redhat.com Fri Mar 11 14:58:18 2016 From: apodhrad at redhat.com (Andrej Podhradsky) Date: Fri, 11 Mar 2016 20:58:18 +0100 Subject: [jbosstools-dev] Access to jbosstools-integration-stack-tests In-Reply-To: References: <1669626184.45867363.1457509808671.JavaMail.zimbra@redhat.com> <530F5348-3488-4B45-B565-E38FAF78BEBE@redhat.com> Message-ID: Hey Max, we use github tracker only for issues related to our tests. We found it much more flexible then using jira for isues such as "Improve stability of XYZTest". For such issues it is hard to specify affects version or fixed version, they even are not related to any of our product. >From such issues tracked in github it is easy to create the appropriate pull request. So, I see lots of advantages of doing it this way. Do you have any concerns about this? Andrej On Mar 11, 2016 6:13 PM, "Max Rydahl Andersen" wrote: > On 10 Mar 2016, at 19:29, Alexey Kazakov wrote: > > Hi Jozef, > > Sorry for not answering earlier. I'm on EclipseCon this week. > We didn't know that you are using github issues instead of JIRA. > > Yeah, that is a surprise for me too. We are *not* supposed to use issue > tracker on any github repos for jbosstools. > > Everything should be tracked in jira (JBIDE, JBDS, JBTIS etc.) > > I guess I can add you to the needed github team but I'm ccing this to > jbosstools-dev list to make sure we are doing it right. Max? > > Len - any idea why we now are doing this ? > > /max > > On Mar 9, 2016, at 2:50 AM, Jozef Marko jomarko at redhat.com wrote: > > Hello Alexey, > > I am quite often contributing to the repository [1]. I have discussed with > Andrej Podhradsky (apodhrad), that you are able to give me access to this > repository. > > Currently, the main problem is, that I can't be assigned as 'Assignee' for > any issue in this repository. > > Please let me know, if you are able to help me. > > Thanks > > Regards, Jozef. > > [1] > https://github.com/jbosstools/jbosstools-integration-stack-tests > > ------------------------------ > > jbosstools-dev mailing list > jbosstools-dev at lists.jboss.org > https://lists.jboss.org/mailman/listinfo/jbosstools-dev > > /max > http://about.me/maxandersen > > _______________________________________________ > jbosstools-dev mailing list > jbosstools-dev at lists.jboss.org > https://lists.jboss.org/mailman/listinfo/jbosstools-dev > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160311/9a42c8a8/attachment.html From alkazako at redhat.com Fri Mar 11 15:15:26 2016 From: alkazako at redhat.com (Alexey Kazakov) Date: Fri, 11 Mar 2016 15:15:26 -0500 Subject: [jbosstools-dev] Hooking up Fuse Tools and SwitchYard with usage tracking In-Reply-To: <1457722997.3257.4.camel@redhat.com> References: <6DF1F50C-B5C1-40A9-9039-22A93EE8A235@redhat.com> <1F19ABC6-A1AC-4135-938B-229A4584253D@redhat.com> <1457722997.3257.4.camel@redhat.com> Message-ID: <56E3275E.2090608@redhat.com> Lars, you are correct. Having a dependency to the usage plugin in your manifest is enough to enable usage tracking itself (if users agreed to enable it). The snippet Max mentioned is needed to track some specific events (and that's snippet is not complete btw, see the doc). I guess Max just meant that if you have code like that it means you already have all needed dependencies etc, so the usage should work :) If you just added the needed dependencies then Usage will start tracking all basic stuff (startups, OSs, etc.) including all Wizards IDs. When a user click Finish on the Wizard then we count this event. So we have all used wizard IDs and how many times there were used. But if you need to track something else then you have to register a new event type and track it where needed. See the doc. I've updated the doc and removed this confusing stuff about the "UsageReporter.getInstance().countEvent(eventType.event(label, value));" snippet. I also added the section about the Wizard IDs tracking. Thanks. On 03/11/2016 02:03 PM, Lars Heinemann wrote: > From what I read here I can say we do not have a line > like UsageReporter.getInstance().countEvent(...) anywhere in the Fuse > Tooling. Back in time when asking how to get tracked if our tooling is > installed / used the answer was put dependency to usage bundle into > manifest. I did that and nothing more so far. > > Lars > > -------- Weitergeleitete Nachricht -------- > Von: Nick Boldt > An: Max Rydahl Andersen > Kopie: tools-dev > Betreff: Re: [jbosstools-dev] Hooking up Fuse Tools and SwitchYard with > usage tracking > Datum: Fri, 11 Mar 2016 13:44:48 -0500 > > I have digested Max's comments here into the doc: > > https://github.com/jbosstools/jbosstools-devdoc/blob/master/api/usage/u > sage_api.adoc#enabling-usage-tracking-in-your-plugin > > Feel free to contribute fixes to that doc if you encounter more stuff > you feel needs to be there. > > On Fri, Mar 11, 2016 at 12:47 PM, Max Rydahl Andersen > wrote: >> On 11 Mar 2016, at 18:31, Brian Fitzpatrick wrote: >> >>> Awesome. Thanks Max! Appreciate the guidance. >> tip - if its the first time you are adding counting to a plugin for >> usage tracking >> I recommend you ask Alexey, Fred or me to review it to catch too >> aggressive or too passive counting issues. >> >> /max >> >>> >>> On Fri, Mar 11, 2016 at 10:23 AM, Max Rydahl Andersen >>> >>> wrote: >>> >>>> On 11 Mar 2016, at 18:12, Brian Fitzpatrick wrote: >>>> >>>> When you say "Wizards should already be there as long as SY and >>>> Fuse >>>> depend >>>> on the usage plug-in." what do you mean? >>>> >>>> hmm - just realised that is missing from the docs...pretty sure >>>> it >>>> was >>>> there at some point. >>>> >>>> For basic enablement add dependency to: org.jboss.tools.usage >>>> like in >>>> https://github.com/jbosstools/jbosstools-server/blob/jbosstools-4 >>>> .2.0.Beta1x/as/plugins/org.jboss.ide.eclipse.as.ui/META- >>>> INF/MANIFEST.MF#L67 >>>> >>>> Can I interpret that as meaning if our tools ping for daily >>>> events as >>>> in >>>> the example below, our wizard usage will already be recorded? >>>> >>>> Wizard usage will be recorded as soon as the usage reporter is >>>> installed >>>> (and of course if the user said yes to be tracked) >>>> >>>> UsageReporter.getInstance().countEvent(eventType.event(label, >>>> value)); >>>> >>>> If you have code like the above then you for sure should already >>>> be >>>> covered for sure ;) >>>> >>>> /max >>>> >>>> On Fri, Mar 11, 2016 at 10:08 AM, Max Rydahl Andersen >>>> manderse at redhat.com >>>> wrote: >>>> >>>> On 11 Mar 2016, at 18:01, Brian Fitzpatrick wrote: >>>> >>>> Hi all, >>>> >>>> Back in January I received great help from Alexey and Max to help >>>> me >>>> take >>>> a >>>> look at the usage data we've been tracking for JBDS. It really >>>> helped >>>> get >>>> some baseline numbers for ESB usage so we could justify >>>> deprecation >>>> of the >>>> older tooling going forward (still supporting, just not actively >>>> updating, >>>> which is how it's been for a few years now anyway). >>>> >>>> Now we'd like to hook SwitchYard and Fuse Tools wizards and >>>> editors >>>> up to >>>> get them into the tracking data as well. >>>> >>>> Wizards should already be there as long as SY and Fuse depend on >>>> the >>>> usage >>>> plugin. >>>> >>>> For editors you will need to send specific events. >>>> >>>> Do we have anything written up on how to use the frameworks for >>>> the >>>> usage >>>> >>>> tooling in JBDS? Or can you point me at some examples of how >>>> you've >>>> done >>>> it >>>> for wizards and editors in the main JBoss Tools code? >>>> >>>> Docs: >>>> >>>> https://github.com/jbosstools/jbosstools-devdoc/blob/master/api/u >>>> sage/usage_api.adoc >>>> >>>> Please be aware to not send a ping for every little thing - we >>>> don't >>>> want >>>> to overload with data. >>>> >>>> But for example if you want to count the number of times the fuse >>>> editor >>>> is opened you can do that with a daily event counter. >>>> >>>> To find examples - search for .countEvent() in JBoss Tools Server >>>> and >>>> I >>>> think Forge has some too. >>>> >>>> /max >>>> http://about.me/maxandersen >>>> >>>> /max >>>> http://about.me/maxandersen >>>> >> /max >> http://about.me/maxandersen >> >> _______________________________________________ >> jbosstools-dev mailing list >> jbosstools-dev at lists.jboss.org >> https://lists.jboss.org/mailman/listinfo/jbosstools-dev > > _______________________________________________ > jbosstools-dev mailing list > jbosstools-dev at lists.jboss.org > https://lists.jboss.org/mailman/listinfo/jbosstools-dev From nboldt at redhat.com Fri Mar 11 16:25:19 2016 From: nboldt at redhat.com (Nick Boldt) Date: Fri, 11 Mar 2016 16:25:19 -0500 Subject: [jbosstools-dev] Suggested change for 4.5x and 4.60.x target-platforms: add m2e easymport Message-ID: Here is a proposal for a change to the JBoss Tools and Red Hat JBoss Developer Studio 4.60.x and 4.5x target platforms. * https://github.com/jbosstools/jbosstools-target-platforms/pull/193 It consists in the following change(s): * JBIDE-21441: Consume m2e Easymport integration Please review the above PR(s), as it will be applied next week. The addition of this to the target platforms was missed in the last round of changes. Apologies -- thought we were done but then I found this outstanding JIRA & unmerged PR. -- Nick Boldt :: JBoss by Red Hat Productization Lead :: JBoss Tools & Dev Studio http://nick.divbyzero.com From bfitzpat at redhat.com Fri Mar 11 16:33:58 2016 From: bfitzpat at redhat.com (Brian Fitzpatrick) Date: Fri, 11 Mar 2016 14:33:58 -0700 Subject: [jbosstools-dev] Hooking up Fuse Tools and SwitchYard with usage tracking In-Reply-To: <56E3275E.2090608@redhat.com> References: <6DF1F50C-B5C1-40A9-9039-22A93EE8A235@redhat.com> <1F19ABC6-A1AC-4135-938B-229A4584253D@redhat.com> <1457722997.3257.4.camel@redhat.com> <56E3275E.2090608@redhat.com> Message-ID: Thanks guys for updating the docs - that helps a ton. And I'll get this into SwitchYard soon. :) On Fri, Mar 11, 2016 at 1:15 PM, Alexey Kazakov wrote: > Lars, you are correct. > Having a dependency to the usage plugin in your manifest is enough to > enable usage tracking itself (if users agreed to enable it). > The snippet Max mentioned is needed to track some specific events (and > that's snippet is not complete btw, see the doc). I guess Max just meant > that if you have code like that it means you already have all needed > dependencies etc, so the usage should work :) > > If you just added the needed dependencies then Usage will start tracking > all basic stuff (startups, OSs, etc.) including all Wizards IDs. When a > user click Finish on the Wizard then we count this event. So we have all > used wizard IDs and how many times there were used. > But if you need to track something else then you have to register a new > event type and track it where needed. See the doc. > > I've updated the doc and removed this confusing stuff about the > "UsageReporter.getInstance().countEvent(eventType.event(label, > value));" snippet. > I also added the section about the Wizard IDs tracking. > > Thanks. > > On 03/11/2016 02:03 PM, Lars Heinemann wrote: > > From what I read here I can say we do not have a line > > like UsageReporter.getInstance().countEvent(...) anywhere in the Fuse > > Tooling. Back in time when asking how to get tracked if our tooling is > > installed / used the answer was put dependency to usage bundle into > > manifest. I did that and nothing more so far. > > > > Lars > > > > -------- Weitergeleitete Nachricht -------- > > Von: Nick Boldt > > An: Max Rydahl Andersen > > Kopie: tools-dev > > Betreff: Re: [jbosstools-dev] Hooking up Fuse Tools and SwitchYard with > > usage tracking > > Datum: Fri, 11 Mar 2016 13:44:48 -0500 > > > > I have digested Max's comments here into the doc: > > > > https://github.com/jbosstools/jbosstools-devdoc/blob/master/api/usage/u > > sage_api.adoc#enabling-usage-tracking-in-your-plugin > > > > Feel free to contribute fixes to that doc if you encounter more stuff > > you feel needs to be there. > > > > On Fri, Mar 11, 2016 at 12:47 PM, Max Rydahl Andersen > > wrote: > >> On 11 Mar 2016, at 18:31, Brian Fitzpatrick wrote: > >> > >>> Awesome. Thanks Max! Appreciate the guidance. > >> tip - if its the first time you are adding counting to a plugin for > >> usage tracking > >> I recommend you ask Alexey, Fred or me to review it to catch too > >> aggressive or too passive counting issues. > >> > >> /max > >> > >>> > >>> On Fri, Mar 11, 2016 at 10:23 AM, Max Rydahl Andersen > >>> > >>> wrote: > >>> > >>>> On 11 Mar 2016, at 18:12, Brian Fitzpatrick wrote: > >>>> > >>>> When you say "Wizards should already be there as long as SY and > >>>> Fuse > >>>> depend > >>>> on the usage plug-in." what do you mean? > >>>> > >>>> hmm - just realised that is missing from the docs...pretty sure > >>>> it > >>>> was > >>>> there at some point. > >>>> > >>>> For basic enablement add dependency to: org.jboss.tools.usage > >>>> like in > >>>> https://github.com/jbosstools/jbosstools-server/blob/jbosstools-4 > >>>> .2.0.Beta1x/as/plugins/org.jboss.ide.eclipse.as.ui/META- > >>>> INF/MANIFEST.MF#L67 > >>>> > >>>> Can I interpret that as meaning if our tools ping for daily > >>>> events as > >>>> in > >>>> the example below, our wizard usage will already be recorded? > >>>> > >>>> Wizard usage will be recorded as soon as the usage reporter is > >>>> installed > >>>> (and of course if the user said yes to be tracked) > >>>> > >>>> UsageReporter.getInstance().countEvent(eventType.event(label, > >>>> value)); > >>>> > >>>> If you have code like the above then you for sure should already > >>>> be > >>>> covered for sure ;) > >>>> > >>>> /max > >>>> > >>>> On Fri, Mar 11, 2016 at 10:08 AM, Max Rydahl Andersen > >>>> manderse at redhat.com > >>>> wrote: > >>>> > >>>> On 11 Mar 2016, at 18:01, Brian Fitzpatrick wrote: > >>>> > >>>> Hi all, > >>>> > >>>> Back in January I received great help from Alexey and Max to help > >>>> me > >>>> take > >>>> a > >>>> look at the usage data we've been tracking for JBDS. It really > >>>> helped > >>>> get > >>>> some baseline numbers for ESB usage so we could justify > >>>> deprecation > >>>> of the > >>>> older tooling going forward (still supporting, just not actively > >>>> updating, > >>>> which is how it's been for a few years now anyway). > >>>> > >>>> Now we'd like to hook SwitchYard and Fuse Tools wizards and > >>>> editors > >>>> up to > >>>> get them into the tracking data as well. > >>>> > >>>> Wizards should already be there as long as SY and Fuse depend on > >>>> the > >>>> usage > >>>> plugin. > >>>> > >>>> For editors you will need to send specific events. > >>>> > >>>> Do we have anything written up on how to use the frameworks for > >>>> the > >>>> usage > >>>> > >>>> tooling in JBDS? Or can you point me at some examples of how > >>>> you've > >>>> done > >>>> it > >>>> for wizards and editors in the main JBoss Tools code? > >>>> > >>>> Docs: > >>>> > >>>> https://github.com/jbosstools/jbosstools-devdoc/blob/master/api/u > >>>> sage/usage_api.adoc > >>>> > >>>> Please be aware to not send a ping for every little thing - we > >>>> don't > >>>> want > >>>> to overload with data. > >>>> > >>>> But for example if you want to count the number of times the fuse > >>>> editor > >>>> is opened you can do that with a daily event counter. > >>>> > >>>> To find examples - search for .countEvent() in JBoss Tools Server > >>>> and > >>>> I > >>>> think Forge has some too. > >>>> > >>>> /max > >>>> http://about.me/maxandersen > >>>> > >>>> /max > >>>> http://about.me/maxandersen > >>>> > >> /max > >> http://about.me/maxandersen > >> > >> _______________________________________________ > >> jbosstools-dev mailing list > >> jbosstools-dev at lists.jboss.org > >> https://lists.jboss.org/mailman/listinfo/jbosstools-dev > > > > _______________________________________________ > > jbosstools-dev mailing list > > jbosstools-dev at lists.jboss.org > > https://lists.jboss.org/mailman/listinfo/jbosstools-dev > > _______________________________________________ > jbosstools-dev mailing list > jbosstools-dev at lists.jboss.org > https://lists.jboss.org/mailman/listinfo/jbosstools-dev > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160311/7410dc5d/attachment-0001.html From tamu-tam at benta-germany.de Sat Mar 12 03:27:30 2016 From: tamu-tam at benta-germany.de (tamu-tam at benta-germany.de) Date: Sat, 12 Mar 2016 03:27:30 -0500 Subject: [jbosstools-dev] Do you want to amaze your beloved one tonight? Message-ID: <201603120827.u2C8RUtB016943@lists01.dmz-a.mwc.hst.phx2.redhat.com> Are you ready for the hottest night of pleasure? http://column.xn--90aldchf1aupigw5g.xn--p1ai/ From Abby at custommanu.com Fri Mar 11 02:54:00 2016 From: Abby at custommanu.com (Miss Abby) Date: Fri, 11 Mar 2016 15:54:00 +0800 Subject: [jbosstools-dev] Commodity suppliers Message-ID: <20160311155414017281@perfumes-print.vicp.cc> Dear Sir or Madam , Here is Abby from Taihe Industrial Co. Ltd . Professional in printing service area. Can you see my email? We can custom print products as your requierment,such as: booklet, cartoon, T-shirt and can help you with all your printing needs. Let us know your demands. Kind regards, Abby Sales Manager Print.kuaizhan.com Xiamen CHINA -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160311/6b449806/attachment.html From manderse at redhat.com Sat Mar 12 04:20:18 2016 From: manderse at redhat.com (Max Rydahl Andersen) Date: Sat, 12 Mar 2016 10:20:18 +0100 Subject: [jbosstools-dev] Hooking up Fuse Tools and SwitchYard with usage tracking In-Reply-To: References: <6DF1F50C-B5C1-40A9-9039-22A93EE8A235@redhat.com> <1F19ABC6-A1AC-4135-938B-229A4584253D@redhat.com> <1457722997.3257.4.camel@redhat.com> <56E3275E.2090608@redhat.com> Message-ID: <46384EDF-F9F0-479E-A6C1-D64302153654@redhat.com> On 11 Mar 2016, at 22:33, Brian Fitzpatrick wrote: > Thanks guys for updating the docs - that helps a ton. And I'll get > this > into SwitchYard soon. :) Great! And I just did a small edit to clarify we are *not* tracking users we are tracking usage. Meaning users optin to submit statistics/events - they are not opting in to be tracked. Subtle, but very important distinction on what we are doing here. /max > > On Fri, Mar 11, 2016 at 1:15 PM, Alexey Kazakov > wrote: > >> Lars, you are correct. >> Having a dependency to the usage plugin in your manifest is enough to >> enable usage tracking itself (if users agreed to enable it). >> The snippet Max mentioned is needed to track some specific events >> (and >> that's snippet is not complete btw, see the doc). I guess Max just >> meant >> that if you have code like that it means you already have all needed >> dependencies etc, so the usage should work :) >> >> If you just added the needed dependencies then Usage will start >> tracking >> all basic stuff (startups, OSs, etc.) including all Wizards IDs. When >> a >> user click Finish on the Wizard then we count this event. So we have >> all >> used wizard IDs and how many times there were used. >> But if you need to track something else then you have to register a >> new >> event type and track it where needed. See the doc. >> >> I've updated the doc and removed this confusing stuff about the >> "UsageReporter.getInstance().countEvent(eventType.event(label, >> value));" snippet. >> I also added the section about the Wizard IDs tracking. >> >> Thanks. >> >> On 03/11/2016 02:03 PM, Lars Heinemann wrote: >>> From what I read here I can say we do not have a line >>> like UsageReporter.getInstance().countEvent(...) anywhere in the >>> Fuse >>> Tooling. Back in time when asking how to get tracked if our tooling >>> is >>> installed / used the answer was put dependency to usage bundle into >>> manifest. I did that and nothing more so far. >>> >>> Lars >>> >>> -------- Weitergeleitete Nachricht -------- >>> Von: Nick Boldt >>> An: Max Rydahl Andersen >>> Kopie: tools-dev >>> Betreff: Re: [jbosstools-dev] Hooking up Fuse Tools and SwitchYard >>> with >>> usage tracking >>> Datum: Fri, 11 Mar 2016 13:44:48 -0500 >>> >>> I have digested Max's comments here into the doc: >>> >>> https://github.com/jbosstools/jbosstools-devdoc/blob/master/api/usage/u >>> sage_api.adoc#enabling-usage-tracking-in-your-plugin >>> >>> Feel free to contribute fixes to that doc if you encounter more >>> stuff >>> you feel needs to be there. >>> >>> On Fri, Mar 11, 2016 at 12:47 PM, Max Rydahl Andersen >>> wrote: >>>> On 11 Mar 2016, at 18:31, Brian Fitzpatrick wrote: >>>> >>>>> Awesome. Thanks Max! Appreciate the guidance. >>>> tip - if its the first time you are adding counting to a plugin for >>>> usage tracking >>>> I recommend you ask Alexey, Fred or me to review it to catch too >>>> aggressive or too passive counting issues. >>>> >>>> /max >>>> >>>>> >>>>> On Fri, Mar 11, 2016 at 10:23 AM, Max Rydahl Andersen >>>>> >>>>> wrote: >>>>> >>>>>> On 11 Mar 2016, at 18:12, Brian Fitzpatrick wrote: >>>>>> >>>>>> When you say "Wizards should already be there as long as SY and >>>>>> Fuse >>>>>> depend >>>>>> on the usage plug-in." what do you mean? >>>>>> >>>>>> hmm - just realised that is missing from the docs...pretty sure >>>>>> it >>>>>> was >>>>>> there at some point. >>>>>> >>>>>> For basic enablement add dependency to: org.jboss.tools.usage >>>>>> like in >>>>>> https://github.com/jbosstools/jbosstools-server/blob/jbosstools-4 >>>>>> .2.0.Beta1x/as/plugins/org.jboss.ide.eclipse.as.ui/META- >>>>>> INF/MANIFEST.MF#L67 >>>>>> >>>>>> Can I interpret that as meaning if our tools ping for daily >>>>>> events as >>>>>> in >>>>>> the example below, our wizard usage will already be recorded? >>>>>> >>>>>> Wizard usage will be recorded as soon as the usage reporter is >>>>>> installed >>>>>> (and of course if the user said yes to be tracked) >>>>>> >>>>>> UsageReporter.getInstance().countEvent(eventType.event(label, >>>>>> value)); >>>>>> >>>>>> If you have code like the above then you for sure should already >>>>>> be >>>>>> covered for sure ;) >>>>>> >>>>>> /max >>>>>> >>>>>> On Fri, Mar 11, 2016 at 10:08 AM, Max Rydahl Andersen >>>>>> manderse at redhat.com >>>>>> wrote: >>>>>> >>>>>> On 11 Mar 2016, at 18:01, Brian Fitzpatrick wrote: >>>>>> >>>>>> Hi all, >>>>>> >>>>>> Back in January I received great help from Alexey and Max to help >>>>>> me >>>>>> take >>>>>> a >>>>>> look at the usage data we've been tracking for JBDS. It really >>>>>> helped >>>>>> get >>>>>> some baseline numbers for ESB usage so we could justify >>>>>> deprecation >>>>>> of the >>>>>> older tooling going forward (still supporting, just not actively >>>>>> updating, >>>>>> which is how it's been for a few years now anyway). >>>>>> >>>>>> Now we'd like to hook SwitchYard and Fuse Tools wizards and >>>>>> editors >>>>>> up to >>>>>> get them into the tracking data as well. >>>>>> >>>>>> Wizards should already be there as long as SY and Fuse depend on >>>>>> the >>>>>> usage >>>>>> plugin. >>>>>> >>>>>> For editors you will need to send specific events. >>>>>> >>>>>> Do we have anything written up on how to use the frameworks for >>>>>> the >>>>>> usage >>>>>> >>>>>> tooling in JBDS? Or can you point me at some examples of how >>>>>> you've >>>>>> done >>>>>> it >>>>>> for wizards and editors in the main JBoss Tools code? >>>>>> >>>>>> Docs: >>>>>> >>>>>> https://github.com/jbosstools/jbosstools-devdoc/blob/master/api/u >>>>>> sage/usage_api.adoc >>>>>> >>>>>> Please be aware to not send a ping for every little thing - we >>>>>> don't >>>>>> want >>>>>> to overload with data. >>>>>> >>>>>> But for example if you want to count the number of times the fuse >>>>>> editor >>>>>> is opened you can do that with a daily event counter. >>>>>> >>>>>> To find examples - search for .countEvent() in JBoss Tools Server >>>>>> and >>>>>> I >>>>>> think Forge has some too. >>>>>> >>>>>> /max >>>>>> http://about.me/maxandersen >>>>>> >>>>>> /max >>>>>> http://about.me/maxandersen >>>>>> >>>> /max >>>> http://about.me/maxandersen >>>> >>>> _______________________________________________ >>>> jbosstools-dev mailing list >>>> jbosstools-dev at lists.jboss.org >>>> https://lists.jboss.org/mailman/listinfo/jbosstools-dev >>> >>> _______________________________________________ >>> jbosstools-dev mailing list >>> jbosstools-dev at lists.jboss.org >>> https://lists.jboss.org/mailman/listinfo/jbosstools-dev >> >> _______________________________________________ >> jbosstools-dev mailing list >> jbosstools-dev at lists.jboss.org >> https://lists.jboss.org/mailman/listinfo/jbosstools-dev >> > _______________________________________________ > jbosstools-dev mailing list > jbosstools-dev at lists.jboss.org > https://lists.jboss.org/mailman/listinfo/jbosstools-dev /max http://about.me/maxandersen -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160312/46e86409/attachment.html From manderse at redhat.com Sat Mar 12 05:15:13 2016 From: manderse at redhat.com (Max Rydahl Andersen) Date: Sat, 12 Mar 2016 11:15:13 +0100 Subject: [jbosstools-dev] Access to jbosstools-integration-stack-tests In-Reply-To: References: <1669626184.45867363.1457509808671.JavaMail.zimbra@redhat.com> <530F5348-3488-4B45-B565-E38FAF78BEBE@redhat.com> Message-ID: <4C22FE78-1923-4542-BC7F-18416CF19474@redhat.com> On 11 Mar 2016, at 20:58, Andrej Podhradsky wrote: > Hey Max, > > we use github tracker only for issues related to our tests. We found > it > much more flexible then using jira for isues such as "Improve > stability of > XYZTest". For such issues it is hard to specify affects version or > fixed > version, We rarely put affects version, fix version should be easy since the tests are updated for a specific release of the projects/products. If not - it sounds like you are doing things that aren't even used which I know is not true. Just looking at the issue list on https://github.com/jbosstools/jbosstools-integration-stack-tests/issues most relates directly to Jira's. > they even are not related to any of our product. I don't grok this - *any* test is related to *some* of our projects (and thus eventually product). > From such issues tracked in github it is easy to create the > appropriate > pull request. I don't grok what that means. It is trivial to create a pull request for jira's too - you just refer to the jira in your commit and when opening pull-request it is automatically wired up and linked to the jira issue. currently none of this is visible anywhere outside QE testing which I find a shame. > > So, I see lots of advantages of doing it this way. Do you have any > concerns > about this? My main concern it spreads overhead and maintenance of what is going on. The fact that noone in dev seemed aware this useful tracking and extra work on the tests was going on indicate to me the big issue of spreading our tracking of issues across multiple issue trackers. If you were commenting on the actual related jiras and opened specific test suite bugs in the relevant projects your work would be much more visible and understood better - heck, it might be improved because dev would notice you guys constantly have to keep adjusting things. tests is as much part of our development as the unit tests and runtime code is - it should be linked to the issues it is done for IMO. That are my concerns. Can't we find a better less segregated way for this ? /max > > Andrej > On Mar 11, 2016 6:13 PM, "Max Rydahl Andersen" > wrote: > >> On 10 Mar 2016, at 19:29, Alexey Kazakov wrote: >> >> Hi Jozef, >> >> Sorry for not answering earlier. I'm on EclipseCon this week. >> We didn't know that you are using github issues instead of JIRA. >> >> Yeah, that is a surprise for me too. We are *not* supposed to use >> issue >> tracker on any github repos for jbosstools. >> >> Everything should be tracked in jira (JBIDE, JBDS, JBTIS etc.) >> >> I guess I can add you to the needed github team but I'm ccing this to >> jbosstools-dev list to make sure we are doing it right. Max? >> >> Len - any idea why we now are doing this ? >> >> /max >> >> On Mar 9, 2016, at 2:50 AM, Jozef Marko jomarko at redhat.com wrote: >> >> Hello Alexey, >> >> I am quite often contributing to the repository [1]. I have discussed >> with >> Andrej Podhradsky (apodhrad), that you are able to give me access to >> this >> repository. >> >> Currently, the main problem is, that I can't be assigned as >> 'Assignee' for >> any issue in this repository. >> >> Please let me know, if you are able to help me. >> >> Thanks >> >> Regards, Jozef. >> >> [1] >> https://github.com/jbosstools/jbosstools-integration-stack-tests >> >> ------------------------------ >> >> jbosstools-dev mailing list >> jbosstools-dev at lists.jboss.org >> https://lists.jboss.org/mailman/listinfo/jbosstools-dev >> >> /max >> http://about.me/maxandersen >> >> _______________________________________________ >> jbosstools-dev mailing list >> jbosstools-dev at lists.jboss.org >> https://lists.jboss.org/mailman/listinfo/jbosstools-dev >> /max http://about.me/maxandersen -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160312/d692a562/attachment-0001.html From manderse at redhat.com Sat Mar 12 05:27:05 2016 From: manderse at redhat.com (Max Rydahl Andersen) Date: Sat, 12 Mar 2016 11:27:05 +0100 Subject: [jbosstools-dev] Aeri integration - put in usage or separate plugin ? In-Reply-To: <56C26786.1000104@redhat.com> References: <03E759CD-B4E7-48AB-9CB4-6207C27AA833@gmail.com> <56C26786.1000104@redhat.com> Message-ID: On 16 Feb 2016, at 1:04, Alexey Kazakov wrote: > If choosing from A) and B) I would go for B) and add a dependency > (hard one or or greedy optional?) to the Usage. Just realised we didn't conclude this on the mailing list. For now the only way to handle this I went with enabling it in the usage plugin so it is enabled globally for anything that already has usage. It has one caveat though and that is we can't separate the error tracking for devstudio and jboss tools but we'll have to live with that for now until there is a mechanism in Aeri to provide an override. /max > > On 02/15/2016 06:47 PM, Max Rydahl Andersen wrote: >> >> Hey, >> >> I'm working on the inclusion of Aeri into JBoss Tools. >> >> Initial PR is at >> https://github.com/jbosstools/jbosstools-base/pull/483 >> >> I would like to include this into JBoss Tools 4.3 CR1 (the one using >> Mars.2). >> >> I see two options: >> >> A) add separate plugin (that is what separate PR does now) and users >> will have >> to manually add it, unless we add it to every overall feature like we >> have done for usage. >> >> B) add this extension point + dependency on aeri plugin into our >> usage plugin. >> >> With B we get the biggest exposure by far - but we will add a base >> dependency to Aeri for /every/ plugin we have. >> >> Suggestions welcome on how we can make Aeri available to most people >> with the smallest impact :) >> >> /max >> http://about.me/maxandersen >> >> >> >> _______________________________________________ >> jbosstools-dev mailing list >> jbosstools-dev at lists.jboss.org >> https://lists.jboss.org/mailman/listinfo/jbosstools-dev > > _______________________________________________ > jbosstools-dev mailing list > jbosstools-dev at lists.jboss.org > https://lists.jboss.org/mailman/listinfo/jbosstools-dev /max http://about.me/maxandersen -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160312/d0d35d63/attachment.html From ldhtrtv at matissewhisky.com.cn Sun Mar 13 15:13:52 2016 From: ldhtrtv at matissewhisky.com.cn (2016-03-14 03:13:59) Date: Mon, 14 Mar 2016 03:13:52 +0800 Subject: [jbosstools-dev] =?utf-8?b?ZnJvbe+8muadreW3nua3u+WGr+acuuaisA==?= =?utf-8?b?6K6+5aSH5pyJ6ZmQ5YWs5Y+4?= Message-ID: <20160314031400572682@matissewhisky.com.cn> 1. ?????????????????????????? 2. ???????????? ??-- ???????3??? ??-- ??????????????????????? ??-- ?????????????????? 3. ?????????? -- ????????????????? -- ??????? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160314/eaf5721b/attachment-0001.html -------------- next part -------------- A non-text attachment was scrubbed... Name: ????.docx Type: application/octet-stream Size: 20590 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160314/eaf5721b/attachment-0001.obj From qiongxh at 163.com Sun Mar 13 20:39:34 2016 From: qiongxh at 163.com (qfkbrr343) Date: Mon, 14 Mar 2016 08:39:34 +0800 Subject: [jbosstools-dev] =?gb2312?b?svogxrfQ6C3H87fWzvbT69Dox/O53C3A7Wpi?= =?gb2312?b?b3NzaWRlLWRldg==?= Message-ID: <201603140039.u2E0dXxd013831@lists01.dmz-a.mwc.hst.phx2.redhat.com> ?????????????????????? ???????????????? 03??21-22???? 03??24-25???? 03??17-18???? ???????????????? ????CEO/??????????????????????????/????????/????????/???????????????????????? ???????????????? ???????? + ???????? + ???????? +???????? + ???????? ???????????????? 3200??/1??| 4980??/2?????????????????????????????????????? ????????????????15074275950 ?? ?? 0755-61283537 ????????Q??Q ??529178751 ????????????????15074275950 ?? ?? ???????????????? ???????????????????????????????????????????????????? 1.?????????????????????????????????????????????????????????????????????????? 2.?????????????????????????????????????????????????????????????????????????????? 3.???????????????????????????????????????????????????????????????????? 4.???????????????????????????????????????????????????????????? 5.?????????????????????????????????????????????????????????????????????????? 6.?????????????????????????????????????????????????????????????????????????????????????? 7.?????????????????????????????????????????????????????????????????? 8.???????????????????????????????????????????????????????????????? 9.?????????????????????????????????????????????????????????????????????????? ??????????????????????????????????????????????????????????????????????????????????56%???????? ????????????80%?????????????????????????????????????????????????????????????????????????????? ???????????????????????? ???????????????? 1.?????????????????????????????????????? 2.?????????????????????????????????????????????? 3.????????????2????????????????+?????????????????????? 4.?????????????????????????????????????????????? 5.?????????????????????????????????????????????????????????????????????? ?????????????????????????????????? ???????? ???????? ?????????? ?????????????????????????? ????????????????????????????????????????????????????????????????KJ??$APPEALS??BSA??????????7?? ??????????????????????3??????????Sweet Point????????????????????????????12???????????????????? ?????????????????????????????????????? ???????????????? 1.???????????????????????????????????????????????????????????????????????? 2.???????????????????????????????????????????????????????????????????????????????????????????? ???????????????????????????? 3.?????????????????????????????????????????????????????????????????????????? 4.???????????????????????????????????????????????????? 5.?????????????????????????????????????????????????????? ???????????????? ??????Don?? ??????????????????????INCOSE??????????????????????www.incose.org?????? ???????????????? ?????????????????????????????????????????????????????????????????????????????????????????? ?????????????????????????????????????????????????????????????????????????????????????????????? ?????????????????????????????????????????????????????????????????????????????????????????????? ?????????????????????????????????????????????????????????????????????????????????????????????? ??????????????BFL??Infosys????????????????????????????CMM???????????????????????????????????? ?????????????????????????? ?????????????????? ??????????????????????????10?????????????????????????????????????????????????????????????? ???????????????????????????????????????????????????????? 1)???????? 2)???????? 3)???????? 4)???? 5)?????????? 6)???????? 7)?????????? 8)???????? 9)???????? 10)?????????? ?????????????????? ?????????????????????????????????????????????????????????????????????????????????????????????? ?????????????????????????????????????????????????????????????????????????????????????????????? ?????????????????????????????????????????????????????????????????????????????????????????????? ?????????????????????????????????????????????????????????????????????????????????????????????? ????????????????TCL?????????????????????????????????????????????????????????????????????????? ?????????????????????????????????????????????????????????????????????????????????????????????? ?????????????????????????????????????????????????????????????????????????????????????????????? ????????????????????????????????????????????????????????????????????????????????????100?????? ???????????????????????????????????????????????????????????????????????????????????? ???????????????????? ??????????????????????????????2000??????????????????????????????????????????80???????????? ?????????????????????????????????????????????????????????????????????????????????????????????? ?????????????????????????????????????????????????????????????????????????? ??????????: ????????????????????????????????????????????????????????????????????????????????????????TCL?? ?????????????????????????????????????????????????????????????????????????????????????????????? ??????????????TCL????????????????????????????????????????????????????????????????????PBI?????? ?????????????????????????????????????????????????????????????????????????????????????????????? ???????????????? ???????????????????? ?????????????????????????????????????????????????????????????????????????????????????????????? ?????????????????????????????????????????????????????????????????????????????????????????????? ?????????????????????????????????????????????????????????????????????????????????????????????? ?????????????????????????????????????????????????????????????????????????????????????????????? ???????????????????????????????????? ?????????????? ????????????????????????????????????????TCL?????????????????????????????????????????????????? ?????????????????????????????????????????????????????????????????????????????????????????????? ???????????????????????????????????????????????????????????????? ???????????? ??????????????????????????????????????????????????????????????????????TCL???????????????????? ?????????????????????????????????????????????????????????????????????????????????????????????? ?????????????????????????????????????????????? ???????????? ????????????????????????????/???????????????????????????????????????????????????????????????? ?????????????????????????????????????????????????????????????????????????????????????????????? ?????????? ???????????????? ?????????????????????????????????????????????????????????????????????????????????????????????? ?????????????????????????????????????????????????????????????????????????????????????????????? ?????????????????????????????????????????????????????????????????????????????????????????????? ????????????????OTIS?????????????????????????????????????????????????????????? ?????????????????? ?????????????????????????????????????????????????????????????????????????????????????????????? ???????????????????? ?????????????????????? ?????????????????????????????????????????????????????????????????????????????????????????????? ?????????????????????????????????????????????????????????????????????????????????????????????? ??????????????????7??????????????????43??????????????????29?????????????????????????????????? ???????????????????????????? ???????????????????? ?????????????????????????????????????????????????????????????????????????????????????????????? ?????????????????????????????????????????????????? ???????????? ?????????????????????????????????????????????????????????????????????????????????????????????? ???????????????????????????????????????????? ???????????? ?????????????????????????????????????????????????????????????????????????????????????????????? ?????????????????????????????????? ???? ???????????????????? ?????????????????????????????????? ???????????????? ???????????? ???????????????? 1.???????????? 1)?????????????????????????????????????????????????????????? 2.???????????? 1)WANTS/NEEDS/DEMANDS???????????????????????????????????????????????????????????????????????? ?????????? 2)???????????????????????????????????????? 3.??????????2?????????? 1)?????? 2)???????? 4.???????????????? 1)?????????????????????????????????????????????????????? 5.?????????????????????? 1)RM???????????????????????????? 2)RD???????????????????????????? 6.????????3???????????????? 1)?????????????? 2)?????????????????? 3)?????????????????? 7.?????????????? ???????????????? 1.?????????????????????????? 1)?????????????????????????????????????????????????????????? ???????????????????? ??????????Iphone??Siri 2)?????????????????????????????????????????????????????????????????????????? ??????????????Nike????????????????????????5S?????????????? 2.?????????????? 1)?????????????????? 2)?????????????????? 3.?????????? 1)??????????5?????? ?????????????????????????? ?????????????????????????????? ???????????????????????????????? ???????????????????????????????? ?????????????????????????? 2)???????????????????????? ???????? ?????????? ???????????????? 3)???????????????????? ?????????????????????????????????????????? 4.???????? 1)???????????????? 2)?????????????? 3)?????????????????? 5.?????????????????????? 1)???????????????? 2)???????????????????? 3)???????? 4)???????????? 6.???????????????? 1)???????????????????? 2)???????????????? 3)????????????7???? 4)?????????????????????? 5)?????????????????? 7.???????????????????????????????????????????????????? 1)?????????????????? ???????????????????????????????????????????? ???????????????????????????????????????? ??????????????10???????????? 2)?????????????????? 3)???????? ?????????????? ????????????????????????????????????????????????????????????????????+?????????? ???????????????????????????????????????????????????????????????????????????????????????????? ???? 4)???????????????????????????????????????????????? 5)?????????????????????? 6)???????????????????????????????????????????????????? 7)?????????????????? 8.?????????????????????????????? 1)??????????IT???? 2)?????????????????????????? 3)???????????????? 4)???????????????????? 5)???????????????????????????????????? ???????????????? 1.???????????? 1)???????????????????? 2)??????????????KJ?????????? ?????????????????????????????????? ???????????????????????? ???????????????????????????? ???????????????????????????????????????????????????????????????????????????????????????????? 3)???????????????????? ?????????????????? ????????????????????????????????????????????????CMMI???????????????????? ?????????????????? 2.???????????????????????????????? 1)KANO???????? ???????????????????????????????????? ????????????????????????????3?????????????????????? 2)????????????????????????????BSA???? 3)????????????????????????AHP?? ????????4???? ?????????????????????????????????? 3.?????????????????????????? 1)DFX??DFT??DFM??DFA???? 2)RAS???????????????????????????? 4.???????????????????????????????????????????????????????????????????????????????????????????? ?????? 5.???????????????????????????????????????????????? 1)???????????????????? ???????????????? 1.????????????????????????????????$APPEALS?? 1)???????????????? 2)???????????????????? 3)????????????????????????????????8????????????????????????NPD???????????????????????????????? ?????????????? 2.?????????????????????? 1)???????????????? 2)???????????????????? 3)???????????? 4)?????????????????? 5)???????????????????????????????????? 3.????4?????? 1)?????????????? 2)?????????????? 3)?????????????? 4)?????????????? 4.???????????? 1)?????????????? 2)???????????????????????????? 3)??????????????????????????3???? ???? ???? ?????? 4)??????????????7???????????? ?????????????????????????????? ?????????????????????????? ???????????????????????????? ???????????????????????????? ?????????????????????? ?????????????????????????? ?????????????????? 5)???????????????????????????????????????????? 6)?????????????????? ???????????????? 1.???????????????????????? 1)?????????????????? 2)???????????????????????????????????????????? 2.??????????????????????????????FBS??PBS 1)???????????? 2)????????????????????????????????????FBS???????????????????????????????????? 3.????????????????????????????????UseCase???????????? 1)Usecase???????????????????????????????????????? 2)?????????????????????? 3)???????????????? 4)?????????????? 5)6???????????????????????? 6)?????????????????? 4.?????????????????? 1)???????? ????????????RAS?????? ???????????????? ?????????????????????????? ?????????????????? 2)??????????????????????????????->??????????->????????->?????????????????????????? 5.??????????????????RTM?? 1)???????????????? 2)???????????????? 3)???????? 4)???????? ???????? 7580592016-03-142016-03-14758059 From mosx at gbedfzsla.net Sun Mar 13 23:37:30 2016 From: mosx at gbedfzsla.net (=?utf-8?B?56WB6IC9?=) Date: Mon, 14 Mar 2016 11:37:30 +0800 Subject: [jbosstools-dev] =?utf-8?b?amJvc3N0b29scy1kZXY65LyB5Lia5aaC5L2V?= =?utf-8?b?5pyA5aW95YaF6YOo5a6h6K6hIGtnbGlt?= Message-ID: <20160314113736775304@gbedfzsla.net> jbosstools-dev ?????????????????????! ????????????. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160314/eb1f2b8e/attachment-0001.html -------------- next part -------------- A non-text attachment was scrubbed... Name: ??????????.doc Type: application/msword Size: 44032 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160314/eb1f2b8e/attachment-0001.doc From xcoulon at redhat.com Mon Mar 14 04:30:56 2016 From: xcoulon at redhat.com (Xavier Coulon) Date: Mon, 14 Mar 2016 09:30:56 +0100 Subject: [jbosstools-dev] Suggested change for 4.60.x target-platforms: Neon M5 (and Spring IDE 3.7.3) In-Reply-To: References: Message-ID: <6BF994C8-0AC7-4659-95E4-DA84ABC5C868@redhat.com> Nick, Micka?l, > On 11 Mar 2016, at 18:23, Nick Boldt wrote: > > I've applied the change to Spring IDE in master, but I realized we > have Spring 3.7.0.R, not 3.7.3.CI in 4.3.x so I won't change that > unless commanded to do so. :D > > TP changes for 4.3.x should be all done now. I'm afraid not, because we talked about adding a bug-fix version of the Docker tooling, too. We will have a version ready by the end of the week. But I forgot to open a JIRA for that, so here is it now: https://issues.jboss.org/browse/JBIDE-21860 , which I cloned into https://issues.jboss.org/browse/JBIDE-21861 for the JBoss Tools 4.4 TP once we have Docker tooling 2.0.0. Please let me know if this causes any issue on your side. Best regards, /Xavier > > TP changes for master should also be all done... until Neon M6 comes > out in a couple weeks. > > > > On Thu, Mar 10, 2016 at 9:01 AM, Nick Boldt > wrote: >> This change is live, and in fact has been for some time. >> >> But we need to do a similar change [1] in the Central TP, which does two things: >> >> * update from Mars M4 to M5 >> * update from a pre-release Spring IDE 3.7.3 to their final release version >> >> Reason for the Spring update is that Neon M5 no longer includes all >> the SpringIDE requirements (equinox.weaving.*) so I'm now pulling them >> directly from the SpringIDE site. And I figured it was time to move up >> from a nightly to a release version. >> >> If there are no objections to this change, I'll also update Spring IDE >> from 3.7.3.nightly to 3.7.3.RELEASE in JBT 4.3.1 / JBDS 9.1.0. >> >> [1] https://github.com/jbosstools/jbosstools-discovery/pull/328 >> >> On Tue, Mar 1, 2016 at 4:23 PM, Mickael Istria wrote: >>> Here is a proposal for a change to the JBoss Tools and Red Hat JBoss >>> Developer Studio 4.60.x target platforms. >>> * https://github.com/jbosstools/jbosstools-target-platforms/pull/197 >>> >>> It consists in the following change(s): >>> * JBIDE-21386: Create and use Neon M5 target-platform (p2diff at >>> https://issues.jboss.org/browse/JBIDE-21386?focusedCommentId=13170435&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-13170435 >>> ) >>> >>> Please review the above PR(s), as it will be applied next week. >>> >>> >>> You can use the following to build & test the target-platform locally >>> against your component(s). >>> >>> Build target-platform: >>> cd /path/to/jbosstools-target-platforms/jbosstools/multiple >>> git fetch origin pull/197/head && git checkout FETCH_HEAD >>> mvn clean install >>> >>> Then, to test the new "multiple" target platform against your component's >>> build: >>> cd /path/to/your/jbosstools-component >>> mvn clean verify -Dtpc.version=4.60.0.Alpha1-SNAPSHOT >>> -Dtpc.targetKind=multiple >>> >>> If you'd like to build the "unified" target platform and repository too: >>> cd /path/to/jbosstools-target-platforms/jbosstools/multiple >>> mvn clean install -Dmultiple2repo # takes looooong >>> cd /path/to/jbosstools-target-platforms/jbosstools/unified >>> mvn clean install >>> -DtargetRepositoryUrl=file:///path/to/jbosstools-target-platforms/jbosstools/multiple/jbosstools-multiple.target.repo/ >>> >>> Or, to test the new "unified" target platform against your component's >>> build: >>> cd /path/to/your/jbosstools-component >>> mvn clean verify -Dtpc.version=.60.0.Alpha1-SNAPSHOT >>> >>> >>> -- >>> Mickael Istria >>> Eclipse developer at JBoss, by Red Hat >>> My blog - My Tweets >>> >>> _______________________________________________ >>> jbosstools-dev mailing list >>> jbosstools-dev at lists.jboss.org >>> https://lists.jboss.org/mailman/listinfo/jbosstools-dev >> >> >> >> -- >> Nick Boldt :: JBoss by Red Hat >> Productization Lead :: JBoss Tools & Dev Studio >> http://nick.divbyzero.com > > > > -- > Nick Boldt :: JBoss by Red Hat > Productization Lead :: JBoss Tools & Dev Studio > http://nick.divbyzero.com > _______________________________________________ > jbosstools-dev mailing list > jbosstools-dev at lists.jboss.org > https://lists.jboss.org/mailman/listinfo/jbosstools-dev -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160314/1012e7da/attachment.html From apodhrad at redhat.com Mon Mar 14 04:55:42 2016 From: apodhrad at redhat.com (Andrej Podhradsky) Date: Mon, 14 Mar 2016 09:55:42 +0100 Subject: [jbosstools-dev] Access to jbosstools-integration-stack-tests In-Reply-To: <4C22FE78-1923-4542-BC7F-18416CF19474@redhat.com> References: <1669626184.45867363.1457509808671.JavaMail.zimbra@redhat.com> <530F5348-3488-4B45-B565-E38FAF78BEBE@redhat.com> <4C22FE78-1923-4542-BC7F-18416CF19474@redhat.com> Message-ID: Hey Max, Alexey, first of all, could you grant the access to the repo to jomarko, please? (no matter which issue tracker we use he will need that permission). Regarding to our discussion of using github issue tracker: - affects and fixed versions are not so important if we do not make releases (we do not release tests) - it is comfortable to use the github tracker - multiple issue trackers... well, we use github for other projects so this doesn't add another tracker to our list of trackers (jira, bugzilla, eclipse bugzilla, github, gitlab) But I agree with your argument that we are not seen. Let me think of it and probably we will go back to the jira. Best Regards Andrej On Sat, Mar 12, 2016 at 11:15 AM, Max Rydahl Andersen wrote: > On 11 Mar 2016, at 20:58, Andrej Podhradsky wrote: > > Hey Max, > > we use github tracker only for issues related to our tests. We found it > much more flexible then using jira for isues such as "Improve stability of > XYZTest". For such issues it is hard to specify affects version or fixed > version, > > We rarely put affects version, fix version should be easy since the tests > are updated > for a specific release of the projects/products. > > If not - it sounds like you are doing things that aren't even used which I > know is not true. > > Just looking at the issue list on > https://github.com/jbosstools/jbosstools-integration-stack-tests/issues > most > relates directly to Jira's. > > they even are not related to any of our product. > > I don't grok this - *any* test is related to *some* of our projects (and > thus eventually product). > > From such issues tracked in github it is easy to create the appropriate > pull request. > > I don't grok what that means. It is trivial to create a pull request for > jira's too - you just > refer to the jira in your commit and when opening pull-request it is > automatically wired up and linked > to the jira issue. > > currently none of this is visible anywhere outside QE testing which I find > a shame. > > So, I see lots of advantages of doing it this way. Do you have any concerns > about this? > > My main concern it spreads overhead and maintenance of what is going on. > > The fact that noone in dev seemed aware this useful tracking and extra > work on the tests was going > on indicate to me the big issue of spreading our tracking of issues across > multiple issue trackers. > > If you were commenting on the actual related jiras and opened specific > test suite bugs in the relevant projects > your work would be much more visible and understood better - heck, it > might be improved because dev would > notice you guys constantly have to keep adjusting things. > > tests is as much part of our development as the unit tests and runtime > code is - it should be linked to > the issues it is done for IMO. > > That are my concerns. > > Can't we find a better less segregated way for this ? > > /max > > Andrej > On Mar 11, 2016 6:13 PM, "Max Rydahl Andersen" manderse at redhat.com wrote: > > On 10 Mar 2016, at 19:29, Alexey Kazakov wrote: > > Hi Jozef, > > Sorry for not answering earlier. I'm on EclipseCon this week. > We didn't know that you are using github issues instead of JIRA. > > Yeah, that is a surprise for me too. We are *not* supposed to use issue > tracker on any github repos for jbosstools. > > Everything should be tracked in jira (JBIDE, JBDS, JBTIS etc.) > > I guess I can add you to the needed github team but I'm ccing this to > jbosstools-dev list to make sure we are doing it right. Max? > > Len - any idea why we now are doing this ? > > /max > > On Mar 9, 2016, at 2:50 AM, Jozef Marko jomarko at redhat.com wrote: > > Hello Alexey, > > I am quite often contributing to the repository [1]. I have discussed with > Andrej Podhradsky (apodhrad), that you are able to give me access to this > repository. > > Currently, the main problem is, that I can't be assigned as 'Assignee' for > any issue in this repository. > > Please let me know, if you are able to help me. > > Thanks > > Regards, Jozef. > > [1] > https://github.com/jbosstools/jbosstools-integration-stack-tests > ------------------------------ > > jbosstools-dev mailing list > jbosstools-dev at lists.jboss.org > https://lists.jboss.org/mailman/listinfo/jbosstools-dev > > /max > http://about.me/maxandersen > ------------------------------ > > jbosstools-dev mailing list > jbosstools-dev at lists.jboss.org > https://lists.jboss.org/mailman/listinfo/jbosstools-dev > > /max > http://about.me/maxandersen > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160314/c83449c1/attachment-0001.html From Abby at coloringcmyk.com Sat Mar 12 01:15:44 2016 From: Abby at coloringcmyk.com (Abby) Date: Sat, 12 Mar 2016 14:15:44 +0800 Subject: [jbosstools-dev] Product directory in our factory Message-ID: <20160312141551236280@design-kirja.vicp.cc> Dear Sir or Madam , Here is Abby from a manufacturer specializing in producing paper print . Are you tired of email marketing? Our company produce all kinds of photo, handbag, envelop and can help you with all your printing needs. Can we present more? Kind regards, Abby Sales Manager Print.kuaizhan.com Xiamen CHINA -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160312/8de53d75/attachment.html From manderse at redhat.com Mon Mar 14 06:55:23 2016 From: manderse at redhat.com (Max Rydahl Andersen) Date: Mon, 14 Mar 2016 11:55:23 +0100 Subject: [jbosstools-dev] Access to jbosstools-integration-stack-tests In-Reply-To: References: <1669626184.45867363.1457509808671.JavaMail.zimbra@redhat.com> <530F5348-3488-4B45-B565-E38FAF78BEBE@redhat.com> <4C22FE78-1923-4542-BC7F-18416CF19474@redhat.com> Message-ID: On 14 Mar 2016, at 9:55, Andrej Podhradsky wrote: > Hey Max, Alexey, > > first of all, could you grant the access to the repo to jomarko, > please? > (no matter which issue tracker we use he will need that permission). He has been invited so once he accepts the invite he can push. > Regarding to our discussion of using github issue tracker: > - affects and fixed versions are not so important if we do not make > releases (we do not release tests) I completely disagree with that. The tests are supposed to be done *before* we release some specific version is it not ? So it is as tied to a specific release, if not more. > - it is comfortable to use the github tracker Sure, if you don't care about the rest of the team and being able to actually query and get an overview of how much is actually going on/blocking. > - multiple issue trackers... well, we use github for other projects so > this > doesn't add another tracker to our list of trackers (jira, bugzilla, > eclipse bugzilla, github, gitlab) if this was a completely different project I would buy that - it isn't ;) > But I agree with your argument that we are not seen. Let me think of > it and > probably we will go back to the jira. Lets at least get whatever painpoints identified rather than just jump to github without any notification ;) /max > > Best Regards > > Andrej > > > On Sat, Mar 12, 2016 at 11:15 AM, Max Rydahl Andersen > > wrote: > >> On 11 Mar 2016, at 20:58, Andrej Podhradsky wrote: >> >> Hey Max, >> >> we use github tracker only for issues related to our tests. We found >> it >> much more flexible then using jira for isues such as "Improve >> stability of >> XYZTest". For such issues it is hard to specify affects version or >> fixed >> version, >> >> We rarely put affects version, fix version should be easy since the >> tests >> are updated >> for a specific release of the projects/products. >> >> If not - it sounds like you are doing things that aren't even used >> which I >> know is not true. >> >> Just looking at the issue list on >> https://github.com/jbosstools/jbosstools-integration-stack-tests/issues >> most >> relates directly to Jira's. >> >> they even are not related to any of our product. >> >> I don't grok this - *any* test is related to *some* of our projects >> (and >> thus eventually product). >> >> From such issues tracked in github it is easy to create the >> appropriate >> pull request. >> >> I don't grok what that means. It is trivial to create a pull request >> for >> jira's too - you just >> refer to the jira in your commit and when opening pull-request it is >> automatically wired up and linked >> to the jira issue. >> >> currently none of this is visible anywhere outside QE testing which I >> find >> a shame. >> >> So, I see lots of advantages of doing it this way. Do you have any >> concerns >> about this? >> >> My main concern it spreads overhead and maintenance of what is going >> on. >> >> The fact that noone in dev seemed aware this useful tracking and >> extra >> work on the tests was going >> on indicate to me the big issue of spreading our tracking of issues >> across >> multiple issue trackers. >> >> If you were commenting on the actual related jiras and opened >> specific >> test suite bugs in the relevant projects >> your work would be much more visible and understood better - heck, it >> might be improved because dev would >> notice you guys constantly have to keep adjusting things. >> >> tests is as much part of our development as the unit tests and >> runtime >> code is - it should be linked to >> the issues it is done for IMO. >> >> That are my concerns. >> >> Can't we find a better less segregated way for this ? >> >> /max >> >> Andrej >> On Mar 11, 2016 6:13 PM, "Max Rydahl Andersen" manderse at redhat.com >> wrote: >> >> On 10 Mar 2016, at 19:29, Alexey Kazakov wrote: >> >> Hi Jozef, >> >> Sorry for not answering earlier. I'm on EclipseCon this week. >> We didn't know that you are using github issues instead of JIRA. >> >> Yeah, that is a surprise for me too. We are *not* supposed to use >> issue >> tracker on any github repos for jbosstools. >> >> Everything should be tracked in jira (JBIDE, JBDS, JBTIS etc.) >> >> I guess I can add you to the needed github team but I'm ccing this to >> jbosstools-dev list to make sure we are doing it right. Max? >> >> Len - any idea why we now are doing this ? >> >> /max >> >> On Mar 9, 2016, at 2:50 AM, Jozef Marko jomarko at redhat.com wrote: >> >> Hello Alexey, >> >> I am quite often contributing to the repository [1]. I have discussed >> with >> Andrej Podhradsky (apodhrad), that you are able to give me access to >> this >> repository. >> >> Currently, the main problem is, that I can't be assigned as >> 'Assignee' for >> any issue in this repository. >> >> Please let me know, if you are able to help me. >> >> Thanks >> >> Regards, Jozef. >> >> [1] >> https://github.com/jbosstools/jbosstools-integration-stack-tests >> ------------------------------ >> >> jbosstools-dev mailing list >> jbosstools-dev at lists.jboss.org >> https://lists.jboss.org/mailman/listinfo/jbosstools-dev >> >> /max >> http://about.me/maxandersen >> ------------------------------ >> >> jbosstools-dev mailing list >> jbosstools-dev at lists.jboss.org >> https://lists.jboss.org/mailman/listinfo/jbosstools-dev >> >> /max >> http://about.me/maxandersen >> /max http://about.me/maxandersen -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160314/4ea872bb/attachment.html From bsahin at sajukongbu.com Mon Mar 14 08:59:54 2016 From: bsahin at sajukongbu.com (bsahin at sajukongbu.com) Date: Mon, 14 Mar 2016 08:59:54 -0400 Subject: [jbosstools-dev] Give to your babe enjoyment Message-ID: <201603141259.u2ECxsXs026663@lists01.dmz-a.mwc.hst.phx2.redhat.com> http://leg.xn--80ahidb2ae4b1a6cyamf.xn--p1ai/ Now you can have more and more joy From nboldt at redhat.com Mon Mar 14 13:11:34 2016 From: nboldt at redhat.com (Nick Boldt) Date: Mon, 14 Mar 2016 13:11:34 -0400 Subject: [jbosstools-dev] Proposed patchfix release for JBoss Tools 4.3.0.Final / JBDS 9.0.0.GA Message-ID: JBT 4.3.0.Final / JBDS 9.0.0.GA target platforms include org.eclipse.egit.importer.ui 4.0.0.201506090130-r (Mars.1 version), which installs jgit 4.0.3.201509231615-r (Mars.1 version); this breaks egit 4.1.1 views when you install JBT or JBDS into Mars.2, because Mars.2 site does not include org.eclipse.egit.ui.importer 4.1.1.201511131810-r. You confuse egit when you have both jgit 4.0 and 4.1 installed, resulting in disabled views and preferences. Solution proposed is to add org.eclipse.egit.ui.importer 4.1.1.201511131810-r to the composite site from which JBT 4.3.0.Final and JBDS 9.0.0.GA are installed, so that when org.eclipse.egit.ui.importer is installed, p2 can select the 4.1.1 version instead of the 4.0.0 version. See also: https://issues.jboss.org/browse/JBIDE-21821 Without this fix, a user will need to either use Mars.1 instead of Mars.2, or manually add the egit 4.1.1 update site [1] into their list of Available Software Sites BEFORE installing JBT/JBDS in order to install egit.ui.importer 4.1.1. [1] http://download.eclipse.org/egit/updates-4.1.1/ If you have objections to this plan, please voice them ASAP. Note too that this issue will only exist until JBT 4.3.1.Final and JBDS 9.1.0.GA are released next month (which includes a Mars.2 target platform and egit.ui.importer 4.1.1), so it's a short-lived problem and a short-lived stop-gap solution to that problem. -- Nick Boldt :: JBoss by Red Hat Productization Lead :: JBoss Tools & Dev Studio http://nick.divbyzero.com From nboldt at redhat.com Mon Mar 14 13:27:36 2016 From: nboldt at redhat.com (Nick Boldt) Date: Mon, 14 Mar 2016 13:27:36 -0400 Subject: [jbosstools-dev] Suggested change for 4.60.x target-platforms: Neon M5 (and Spring IDE 3.7.3) In-Reply-To: <6BF994C8-0AC7-4659-95E4-DA84ABC5C868@redhat.com> References: <6BF994C8-0AC7-4659-95E4-DA84ABC5C868@redhat.com> Message-ID: Should be able to contain this, but in future, please link JIRAs together so they're easier to find. Container for Mars.2 TP changes: https://issues.jboss.org/browse/JBIDE-21651 -> JBIDE-21860 Container for Neon.M5 TP changes: https://issues.jboss.org/browse/JBIDE-21386 -> JBIDE-21861 Thanks, Nick On Mon, Mar 14, 2016 at 4:30 AM, Xavier Coulon wrote: > Nick, Micka?l, > > On 11 Mar 2016, at 18:23, Nick Boldt wrote: > > I've applied the change to Spring IDE in master, but I realized we > have Spring 3.7.0.R, not 3.7.3.CI in 4.3.x so I won't change that > unless commanded to do so. :D > > TP changes for 4.3.x should be all done now. > > > I'm afraid not, because we talked about adding a bug-fix version of the > Docker tooling, too. We will have a version ready by the end of the week. > But I forgot to open a JIRA for that, so here is it now: > https://issues.jboss.org/browse/JBIDE-21860, which I cloned into > https://issues.jboss.org/browse/JBIDE-21861 for the JBoss Tools 4.4 TP once > we have Docker tooling 2.0.0. > > Please let me know if this causes any issue on your side. > > Best regards, > /Xavier > > > TP changes for master should also be all done... until Neon M6 comes > out in a couple weeks. > > > > On Thu, Mar 10, 2016 at 9:01 AM, Nick Boldt wrote: > > This change is live, and in fact has been for some time. > > But we need to do a similar change [1] in the Central TP, which does two > things: > > * update from Mars M4 to M5 > * update from a pre-release Spring IDE 3.7.3 to their final release version > > Reason for the Spring update is that Neon M5 no longer includes all > the SpringIDE requirements (equinox.weaving.*) so I'm now pulling them > directly from the SpringIDE site. And I figured it was time to move up > from a nightly to a release version. > > If there are no objections to this change, I'll also update Spring IDE > from 3.7.3.nightly to 3.7.3.RELEASE in JBT 4.3.1 / JBDS 9.1.0. > > [1] https://github.com/jbosstools/jbosstools-discovery/pull/328 > > On Tue, Mar 1, 2016 at 4:23 PM, Mickael Istria wrote: > > Here is a proposal for a change to the JBoss Tools and Red Hat JBoss > Developer Studio 4.60.x target platforms. > * https://github.com/jbosstools/jbosstools-target-platforms/pull/197 > > It consists in the following change(s): > * JBIDE-21386: Create and use Neon M5 target-platform (p2diff at > https://issues.jboss.org/browse/JBIDE-21386?focusedCommentId=13170435&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-13170435 > ) > > Please review the above PR(s), as it will be applied next week. > > > You can use the following to build & test the target-platform locally > against your component(s). > > Build target-platform: > cd /path/to/jbosstools-target-platforms/jbosstools/multiple > git fetch origin pull/197/head && git checkout FETCH_HEAD > mvn clean install > > Then, to test the new "multiple" target platform against your component's > build: > cd /path/to/your/jbosstools-component > mvn clean verify -Dtpc.version=4.60.0.Alpha1-SNAPSHOT > -Dtpc.targetKind=multiple > > If you'd like to build the "unified" target platform and repository too: > cd /path/to/jbosstools-target-platforms/jbosstools/multiple > mvn clean install -Dmultiple2repo # takes looooong > cd /path/to/jbosstools-target-platforms/jbosstools/unified > mvn clean install > -DtargetRepositoryUrl=file:///path/to/jbosstools-target-platforms/jbosstools/multiple/jbosstools-multiple.target.repo/ > > Or, to test the new "unified" target platform against your component's > build: > cd /path/to/your/jbosstools-component > mvn clean verify -Dtpc.version=.60.0.Alpha1-SNAPSHOT > > > -- > Mickael Istria > Eclipse developer at JBoss, by Red Hat > My blog - My Tweets > > _______________________________________________ > jbosstools-dev mailing list > jbosstools-dev at lists.jboss.org > https://lists.jboss.org/mailman/listinfo/jbosstools-dev > > > > > -- > Nick Boldt :: JBoss by Red Hat > Productization Lead :: JBoss Tools & Dev Studio > http://nick.divbyzero.com > > > > > -- > Nick Boldt :: JBoss by Red Hat > Productization Lead :: JBoss Tools & Dev Studio > http://nick.divbyzero.com > _______________________________________________ > jbosstools-dev mailing list > jbosstools-dev at lists.jboss.org > https://lists.jboss.org/mailman/listinfo/jbosstools-dev > > -- Nick Boldt :: JBoss by Red Hat Productization Lead :: JBoss Tools & Dev Studio http://nick.divbyzero.com From mistria at redhat.com Mon Mar 14 14:54:37 2016 From: mistria at redhat.com (Mickael Istria) Date: Mon, 14 Mar 2016 19:54:37 +0100 Subject: [jbosstools-dev] Proposed patchfix release for JBoss Tools 4.3.0.Final / JBDS 9.0.0.GA In-Reply-To: References: Message-ID: <56E708ED.8060203@redhat.com> On 03/14/2016 06:11 PM, Nick Boldt wrote: > Solution proposed is to add org.eclipse.egit.ui.importer > 4.1.1.201511131810-r to the composite site from which JBT 4.3.0.Final > and JBDS 9.0.0.GA are installed, so that when > org.eclipse.egit.ui.importer is installed, p2 can select the 4.1.1 > version instead of the 4.0.0 version. > See also: https://issues.jboss.org/browse/JBIDE-21821 +1. I believe it's the simplest way to expose this necessary bundle. -- Mickael Istria Eclipse developer at JBoss, by Red Hat My blog - My Tweets -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160314/08dc8b49/attachment.html From alkazako at redhat.com Mon Mar 14 15:10:59 2016 From: alkazako at redhat.com (Alexey Kazakov) Date: Mon, 14 Mar 2016 15:10:59 -0400 Subject: [jbosstools-dev] Proposed patchfix release for JBoss Tools 4.3.0.Final / JBDS 9.0.0.GA In-Reply-To: <56E708ED.8060203@redhat.com> References: <56E708ED.8060203@redhat.com> Message-ID: <56E70CC3.1050601@redhat.com> +1 On 03/14/2016 02:54 PM, Mickael Istria wrote: > On 03/14/2016 06:11 PM, Nick Boldt wrote: >> Solution proposed is to add org.eclipse.egit.ui.importer >> 4.1.1.201511131810-r to the composite site from which JBT 4.3.0.Final >> and JBDS 9.0.0.GA are installed, so that when >> org.eclipse.egit.ui.importer is installed, p2 can select the 4.1.1 >> version instead of the 4.0.0 version. >> See also:https://issues.jboss.org/browse/JBIDE-21821 > +1. I believe it's the simplest way to expose this necessary bundle. > -- > Mickael Istria > Eclipse developer at JBoss, by Red Hat > My blog - My Tweets > > > > _______________________________________________ > jbosstools-dev mailing list > jbosstools-dev at lists.jboss.org > https://lists.jboss.org/mailman/listinfo/jbosstools-dev -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160314/cb92c29f/attachment.html From xcoulon at redhat.com Tue Mar 15 04:13:33 2016 From: xcoulon at redhat.com (Xavier Coulon) Date: Tue, 15 Mar 2016 09:13:33 +0100 Subject: [jbosstools-dev] Suggested change for 4.60.x target-platforms: Neon M5 (and Spring IDE 3.7.3) In-Reply-To: References: <6BF994C8-0AC7-4659-95E4-DA84ABC5C868@redhat.com> Message-ID: <00B9FEAB-886F-4117-A5DE-3B7BCEC67A31@redhat.com> > On 14 Mar 2016, at 18:27, Nick Boldt wrote: > > Should be able to contain this, but in future, please link JIRAs > together so they're easier to find. > > Container for Mars.2 TP changes: > > https://issues.jboss.org/browse/JBIDE-21651 -> JBIDE-21860 > > Container for Neon.M5 TP changes: > > https://issues.jboss.org/browse/JBIDE-21386 -> JBIDE-21861 > > Thanks, > > Nick ok, thanks, Nick ! > > > On Mon, Mar 14, 2016 at 4:30 AM, Xavier Coulon wrote: >> Nick, Micka?l, >> >> On 11 Mar 2016, at 18:23, Nick Boldt wrote: >> >> I've applied the change to Spring IDE in master, but I realized we >> have Spring 3.7.0.R, not 3.7.3.CI in 4.3.x so I won't change that >> unless commanded to do so. :D >> >> TP changes for 4.3.x should be all done now. >> >> >> I'm afraid not, because we talked about adding a bug-fix version of the >> Docker tooling, too. We will have a version ready by the end of the week. >> But I forgot to open a JIRA for that, so here is it now: >> https://issues.jboss.org/browse/JBIDE-21860, which I cloned into >> https://issues.jboss.org/browse/JBIDE-21861 for the JBoss Tools 4.4 TP once >> we have Docker tooling 2.0.0. >> >> Please let me know if this causes any issue on your side. >> >> Best regards, >> /Xavier >> >> >> TP changes for master should also be all done... until Neon M6 comes >> out in a couple weeks. >> >> >> >> On Thu, Mar 10, 2016 at 9:01 AM, Nick Boldt wrote: >> >> This change is live, and in fact has been for some time. >> >> But we need to do a similar change [1] in the Central TP, which does two >> things: >> >> * update from Mars M4 to M5 >> * update from a pre-release Spring IDE 3.7.3 to their final release version >> >> Reason for the Spring update is that Neon M5 no longer includes all >> the SpringIDE requirements (equinox.weaving.*) so I'm now pulling them >> directly from the SpringIDE site. And I figured it was time to move up >> from a nightly to a release version. >> >> If there are no objections to this change, I'll also update Spring IDE >> from 3.7.3.nightly to 3.7.3.RELEASE in JBT 4.3.1 / JBDS 9.1.0. >> >> [1] https://github.com/jbosstools/jbosstools-discovery/pull/328 >> >> On Tue, Mar 1, 2016 at 4:23 PM, Mickael Istria wrote: >> >> Here is a proposal for a change to the JBoss Tools and Red Hat JBoss >> Developer Studio 4.60.x target platforms. >> * https://github.com/jbosstools/jbosstools-target-platforms/pull/197 >> >> It consists in the following change(s): >> * JBIDE-21386: Create and use Neon M5 target-platform (p2diff at >> https://issues.jboss.org/browse/JBIDE-21386?focusedCommentId=13170435&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-13170435 >> ) >> >> Please review the above PR(s), as it will be applied next week. >> >> >> You can use the following to build & test the target-platform locally >> against your component(s). >> >> Build target-platform: >> cd /path/to/jbosstools-target-platforms/jbosstools/multiple >> git fetch origin pull/197/head && git checkout FETCH_HEAD >> mvn clean install >> >> Then, to test the new "multiple" target platform against your component's >> build: >> cd /path/to/your/jbosstools-component >> mvn clean verify -Dtpc.version=4.60.0.Alpha1-SNAPSHOT >> -Dtpc.targetKind=multiple >> >> If you'd like to build the "unified" target platform and repository too: >> cd /path/to/jbosstools-target-platforms/jbosstools/multiple >> mvn clean install -Dmultiple2repo # takes looooong >> cd /path/to/jbosstools-target-platforms/jbosstools/unified >> mvn clean install >> -DtargetRepositoryUrl=file:///path/to/jbosstools-target-platforms/jbosstools/multiple/jbosstools-multiple.target.repo/ >> >> Or, to test the new "unified" target platform against your component's >> build: >> cd /path/to/your/jbosstools-component >> mvn clean verify -Dtpc.version=.60.0.Alpha1-SNAPSHOT >> >> >> -- >> Mickael Istria >> Eclipse developer at JBoss, by Red Hat >> My blog - My Tweets >> >> _______________________________________________ >> jbosstools-dev mailing list >> jbosstools-dev at lists.jboss.org >> https://lists.jboss.org/mailman/listinfo/jbosstools-dev >> >> >> >> >> -- >> Nick Boldt :: JBoss by Red Hat >> Productization Lead :: JBoss Tools & Dev Studio >> http://nick.divbyzero.com >> >> >> >> >> -- >> Nick Boldt :: JBoss by Red Hat >> Productization Lead :: JBoss Tools & Dev Studio >> http://nick.divbyzero.com >> _______________________________________________ >> jbosstools-dev mailing list >> jbosstools-dev at lists.jboss.org >> https://lists.jboss.org/mailman/listinfo/jbosstools-dev >> >> > > > > -- > Nick Boldt :: JBoss by Red Hat > Productization Lead :: JBoss Tools & Dev Studio > http://nick.divbyzero.com From rhopp at redhat.com Tue Mar 15 04:19:13 2016 From: rhopp at redhat.com (Radim Hopp) Date: Tue, 15 Mar 2016 09:19:13 +0100 Subject: [jbosstools-dev] Mickael Istria voted one of top commiters in Eclipse Community Awards 2016 Message-ID: I just saw this: https://www.eclipse.org/org/foundation/eclipseawards/winners16.php Great work, Mickael! Congratulations! From mistria at redhat.com Tue Mar 15 04:25:45 2016 From: mistria at redhat.com (Mickael Istria) Date: Tue, 15 Mar 2016 09:25:45 +0100 Subject: [jbosstools-dev] Mickael Istria voted one of top commiters in Eclipse Community Awards 2016 In-Reply-To: References: Message-ID: <56E7C709.5020905@redhat.com> Thank you Radim! To be fair, it's an award I managed to get because I'm part of this team and working for Red Hat. So I get very interesting help and feedback from many of you and I'm allowed to focus on upstream Eclipse IDE issues, not all Eclipse contributors are so lucky as I am with such a great and productive environment. Cheers, -- Mickael Istria Eclipse developer at JBoss, by Red Hat My blog - My Tweets -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160315/fefd2825/attachment.html From xoyu at rbjathdie.org Tue Mar 15 05:41:46 2016 From: xoyu at rbjathdie.org (=?utf-8?B?6YWG5pmT5a65?=) Date: Tue, 15 Mar 2016 17:41:46 +0800 Subject: [jbosstools-dev] =?utf-8?b?amJvc3N0b29scy1kZXY65aaC5L2V6YCa6L+H?= =?utf-8?b?6K+V55So5ZGo5pyf77yM6YCJ5oup5pyJ5r2c5Yqb55qE5Lia5Yqh5ZGY?= =?utf-8?b?77yf?= Message-ID: <20160315174153011240@rbjathdie.org> jbosstools-dev ? ? ?????????????????? ??????????????? ???????????? 2016-3-1517:41:52 c4oix -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160315/cfa980de/attachment-0001.html -------------- next part -------------- A non-text attachment was scrubbed... Name: ????2??????.docx Type: application/vnd.openxmlformats-officedocument.wordprocessingml.document Size: 20211 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160315/cfa980de/attachment-0001.bin From ldimaggi at redhat.com Tue Mar 15 09:17:38 2016 From: ldimaggi at redhat.com (Leonard Dimaggio) Date: Tue, 15 Mar 2016 09:17:38 -0400 Subject: [jbosstools-dev] Proposed patchfix release for JBoss Tools 4.3.0.Final / JBDS 9.0.0.GA In-Reply-To: <56E70CC3.1050601@redhat.com> References: <56E708ED.8060203@redhat.com> <56E70CC3.1050601@redhat.com> Message-ID: Regression tests are complete (and were successful) https://issues.jboss.org/browse/JBIDE-21821?focusedCommentId=13175950&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-13175950 On Mon, Mar 14, 2016 at 3:10 PM, Alexey Kazakov wrote: > +1 > > > On 03/14/2016 02:54 PM, Mickael Istria wrote: > > On 03/14/2016 06:11 PM, Nick Boldt wrote: > > Solution proposed is to add org.eclipse.egit.ui.importer > 4.1.1.201511131810-r to the composite site from which JBT 4.3.0.Final > and JBDS 9.0.0.GA are installed, so that when > org.eclipse.egit.ui.importer is installed, p2 can select the 4.1.1 > version instead of the 4.0.0 version. > See also: https://issues.jboss.org/browse/JBIDE-21821 > > +1. I believe it's the simplest way to expose this necessary bundle. > -- > Mickael Istria > Eclipse developer at JBoss, by Red Hat > My blog - My Tweets > > > > _______________________________________________ > jbosstools-dev mailing listjbosstools-dev at lists.jboss.orghttps://lists.jboss.org/mailman/listinfo/jbosstools-dev > > > > _______________________________________________ > jbosstools-dev mailing list > jbosstools-dev at lists.jboss.org > https://lists.jboss.org/mailman/listinfo/jbosstools-dev > -- Len DiMaggio (ldimaggi at redhat.com) JBoss by Red Hat 314 Littleton Road Westford, MA 01886 USA tel: 978.392.3179 cell: 781.472.9912 http://www.redhat.com http://community.jboss.org/people/ldimaggio -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160315/ea29348e/attachment.html From nboldt at redhat.com Tue Mar 15 09:54:50 2016 From: nboldt at redhat.com (Nick Boldt) Date: Tue, 15 Mar 2016 09:54:50 -0400 Subject: [jbosstools-dev] Proposed patchfix release for JBoss Tools 4.3.0.Final / JBDS 9.0.0.GA In-Reply-To: References: <56E708ED.8060203@redhat.com> <56E70CC3.1050601@redhat.com> Message-ID: Did you use the /staging/ URLs I provided when testing? On Tue, Mar 15, 2016 at 9:17 AM, Leonard Dimaggio wrote: > Regression tests are complete (and were successful) > > > https://issues.jboss.org/browse/JBIDE-21821?focusedCommentId=13175950&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-13175950 > > > > On Mon, Mar 14, 2016 at 3:10 PM, Alexey Kazakov > wrote: > >> +1 >> >> >> On 03/14/2016 02:54 PM, Mickael Istria wrote: >> >> On 03/14/2016 06:11 PM, Nick Boldt wrote: >> >> Solution proposed is to add org.eclipse.egit.ui.importer >> 4.1.1.201511131810-r to the composite site from which JBT 4.3.0.Final >> and JBDS 9.0.0.GA are installed, so that when >> org.eclipse.egit.ui.importer is installed, p2 can select the 4.1.1 >> version instead of the 4.0.0 version. >> See also: https://issues.jboss.org/browse/JBIDE-21821 >> >> +1. I believe it's the simplest way to expose this necessary bundle. >> -- >> Mickael Istria >> Eclipse developer at JBoss, by Red Hat >> My blog - My Tweets >> >> >> >> _______________________________________________ >> jbosstools-dev mailing listjbosstools-dev at lists.jboss.orghttps://lists.jboss.org/mailman/listinfo/jbosstools-dev >> >> >> >> _______________________________________________ >> jbosstools-dev mailing list >> jbosstools-dev at lists.jboss.org >> https://lists.jboss.org/mailman/listinfo/jbosstools-dev >> > > > > -- > Len DiMaggio (ldimaggi at redhat.com) > JBoss by Red Hat > 314 Littleton Road > Westford, MA 01886 USA > tel: 978.392.3179 > cell: 781.472.9912 > http://www.redhat.com > http://community.jboss.org/people/ldimaggio > > > > _______________________________________________ > jbosstools-dev mailing list > jbosstools-dev at lists.jboss.org > https://lists.jboss.org/mailman/listinfo/jbosstools-dev > -- Nick Boldt :: JBoss by Red Hat Productization Lead :: JBoss Tools & Dev Studio http://nick.divbyzero.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160315/2d34c4c4/attachment.html From nboldt at redhat.com Tue Mar 15 14:01:27 2016 From: nboldt at redhat.com (Nick Boldt) Date: Tue, 15 Mar 2016 14:01:27 -0400 Subject: [jbosstools-dev] Suggested change for 4.60.x target-platforms: Neon M5 (and Spring IDE 3.7.3) In-Reply-To: <00B9FEAB-886F-4117-A5DE-3B7BCEC67A31@redhat.com> References: <6BF994C8-0AC7-4659-95E4-DA84ABC5C868@redhat.com> <00B9FEAB-886F-4117-A5DE-3B7BCEC67A31@redhat.com> Message-ID: Aaaand it turns out the PR for updating from Neon M4 -> M5 was missing one big key change... updating to Neon M5. All the OTHER sites used by Neon M5 were updated but not the actual Neon M5 site itself. *sad trombone* https://github.com/jbosstools/jbosstools-target-platforms/blob/b23d456f351bf6b0cbf40c9f635f1a56cc65b020/jbdevstudio/multiple/jbdevstudio-multiple.target#L118 https://github.com/jbosstools/jbosstools-target-platforms/commit/b23d456f351bf6b0cbf40c9f635f1a56cc65b020 So, I'm preparing a new PR now and will apply it once I'm happy that it builds correctly locally. This error was caught by the composite-install test job [1], but not by a human. So, hooray for automated tests! I welcome our robot overlords. [1] https://issues.jboss.org/browse/JBIDE-21386?focusedCommentId=13177247&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-13177247 N On Tue, Mar 15, 2016 at 4:13 AM, Xavier Coulon wrote: > >> On 14 Mar 2016, at 18:27, Nick Boldt wrote: >> >> Should be able to contain this, but in future, please link JIRAs >> together so they're easier to find. >> >> Container for Mars.2 TP changes: >> >> https://issues.jboss.org/browse/JBIDE-21651 -> JBIDE-21860 >> >> Container for Neon.M5 TP changes: >> >> https://issues.jboss.org/browse/JBIDE-21386 -> JBIDE-21861 >> >> Thanks, >> >> Nick > > ok, thanks, Nick ! > >> >> >> On Mon, Mar 14, 2016 at 4:30 AM, Xavier Coulon wrote: >>> Nick, Micka?l, >>> >>> On 11 Mar 2016, at 18:23, Nick Boldt wrote: >>> >>> I've applied the change to Spring IDE in master, but I realized we >>> have Spring 3.7.0.R, not 3.7.3.CI in 4.3.x so I won't change that >>> unless commanded to do so. :D >>> >>> TP changes for 4.3.x should be all done now. >>> >>> >>> I'm afraid not, because we talked about adding a bug-fix version of the >>> Docker tooling, too. We will have a version ready by the end of the week. >>> But I forgot to open a JIRA for that, so here is it now: >>> https://issues.jboss.org/browse/JBIDE-21860, which I cloned into >>> https://issues.jboss.org/browse/JBIDE-21861 for the JBoss Tools 4.4 TP once >>> we have Docker tooling 2.0.0. >>> >>> Please let me know if this causes any issue on your side. >>> >>> Best regards, >>> /Xavier >>> >>> >>> TP changes for master should also be all done... until Neon M6 comes >>> out in a couple weeks. >>> >>> >>> >>> On Thu, Mar 10, 2016 at 9:01 AM, Nick Boldt wrote: >>> >>> This change is live, and in fact has been for some time. >>> >>> But we need to do a similar change [1] in the Central TP, which does two >>> things: >>> >>> * update from Mars M4 to M5 >>> * update from a pre-release Spring IDE 3.7.3 to their final release version >>> >>> Reason for the Spring update is that Neon M5 no longer includes all >>> the SpringIDE requirements (equinox.weaving.*) so I'm now pulling them >>> directly from the SpringIDE site. And I figured it was time to move up >>> from a nightly to a release version. >>> >>> If there are no objections to this change, I'll also update Spring IDE >>> from 3.7.3.nightly to 3.7.3.RELEASE in JBT 4.3.1 / JBDS 9.1.0. >>> >>> [1] https://github.com/jbosstools/jbosstools-discovery/pull/328 >>> >>> On Tue, Mar 1, 2016 at 4:23 PM, Mickael Istria wrote: >>> >>> Here is a proposal for a change to the JBoss Tools and Red Hat JBoss >>> Developer Studio 4.60.x target platforms. >>> * https://github.com/jbosstools/jbosstools-target-platforms/pull/197 >>> >>> It consists in the following change(s): >>> * JBIDE-21386: Create and use Neon M5 target-platform (p2diff at >>> https://issues.jboss.org/browse/JBIDE-21386?focusedCommentId=13170435&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-13170435 >>> ) >>> >>> Please review the above PR(s), as it will be applied next week. >>> >>> >>> You can use the following to build & test the target-platform locally >>> against your component(s). >>> >>> Build target-platform: >>> cd /path/to/jbosstools-target-platforms/jbosstools/multiple >>> git fetch origin pull/197/head && git checkout FETCH_HEAD >>> mvn clean install >>> >>> Then, to test the new "multiple" target platform against your component's >>> build: >>> cd /path/to/your/jbosstools-component >>> mvn clean verify -Dtpc.version=4.60.0.Alpha1-SNAPSHOT >>> -Dtpc.targetKind=multiple >>> >>> If you'd like to build the "unified" target platform and repository too: >>> cd /path/to/jbosstools-target-platforms/jbosstools/multiple >>> mvn clean install -Dmultiple2repo # takes looooong >>> cd /path/to/jbosstools-target-platforms/jbosstools/unified >>> mvn clean install >>> -DtargetRepositoryUrl=file:///path/to/jbosstools-target-platforms/jbosstools/multiple/jbosstools-multiple.target.repo/ >>> >>> Or, to test the new "unified" target platform against your component's >>> build: >>> cd /path/to/your/jbosstools-component >>> mvn clean verify -Dtpc.version=.60.0.Alpha1-SNAPSHOT >>> >>> >>> -- >>> Mickael Istria >>> Eclipse developer at JBoss, by Red Hat >>> My blog - My Tweets >>> >>> _______________________________________________ >>> jbosstools-dev mailing list >>> jbosstools-dev at lists.jboss.org >>> https://lists.jboss.org/mailman/listinfo/jbosstools-dev >>> >>> >>> >>> >>> -- >>> Nick Boldt :: JBoss by Red Hat >>> Productization Lead :: JBoss Tools & Dev Studio >>> http://nick.divbyzero.com >>> >>> >>> >>> >>> -- >>> Nick Boldt :: JBoss by Red Hat >>> Productization Lead :: JBoss Tools & Dev Studio >>> http://nick.divbyzero.com >>> _______________________________________________ >>> jbosstools-dev mailing list >>> jbosstools-dev at lists.jboss.org >>> https://lists.jboss.org/mailman/listinfo/jbosstools-dev >>> >>> >> >> >> >> -- >> Nick Boldt :: JBoss by Red Hat >> Productization Lead :: JBoss Tools & Dev Studio >> http://nick.divbyzero.com > -- Nick Boldt :: JBoss by Red Hat Productization Lead :: JBoss Tools & Dev Studio http://nick.divbyzero.com From nboldt at redhat.com Tue Mar 15 16:07:49 2016 From: nboldt at redhat.com (Nick Boldt) Date: Tue, 15 Mar 2016 16:07:49 -0400 Subject: [jbosstools-dev] Proposed patchfix release for JBoss Tools 4.3.0.Final / JBDS 9.0.0.GA In-Reply-To: References: <56E708ED.8060203@redhat.com> <56E70CC3.1050601@redhat.com> Message-ID: OK, so looks like we have quorum from the various +1ers, and signoff in the JIRA. Any last words before I push the Big Red Button? On Tue, Mar 15, 2016 at 9:54 AM, Nick Boldt wrote: > Did you use the /staging/ URLs I provided when testing? > > On Tue, Mar 15, 2016 at 9:17 AM, Leonard Dimaggio > wrote: > >> Regression tests are complete (and were successful) >> >> >> https://issues.jboss.org/browse/JBIDE-21821?focusedCommentId=13175950&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-13175950 >> >> >> >> On Mon, Mar 14, 2016 at 3:10 PM, Alexey Kazakov >> wrote: >> >>> +1 >>> >>> >>> On 03/14/2016 02:54 PM, Mickael Istria wrote: >>> >>> On 03/14/2016 06:11 PM, Nick Boldt wrote: >>> >>> Solution proposed is to add org.eclipse.egit.ui.importer >>> 4.1.1.201511131810-r to the composite site from which JBT 4.3.0.Final >>> and JBDS 9.0.0.GA are installed, so that when >>> org.eclipse.egit.ui.importer is installed, p2 can select the 4.1.1 >>> version instead of the 4.0.0 version. >>> See also: https://issues.jboss.org/browse/JBIDE-21821 >>> >>> +1. I believe it's the simplest way to expose this necessary bundle. >>> -- >>> Mickael Istria >>> Eclipse developer at JBoss, by Red Hat >>> My blog - My Tweets >>> >>> >>> >>> _______________________________________________ >>> jbosstools-dev mailing listjbosstools-dev at lists.jboss.orghttps://lists.jboss.org/mailman/listinfo/jbosstools-dev >>> >>> >>> >>> _______________________________________________ >>> jbosstools-dev mailing list >>> jbosstools-dev at lists.jboss.org >>> https://lists.jboss.org/mailman/listinfo/jbosstools-dev >>> >> >> >> >> -- >> Len DiMaggio (ldimaggi at redhat.com) >> JBoss by Red Hat >> 314 Littleton Road >> Westford, MA 01886 USA >> tel: 978.392.3179 >> cell: 781.472.9912 >> http://www.redhat.com >> http://community.jboss.org/people/ldimaggio >> >> >> >> _______________________________________________ >> jbosstools-dev mailing list >> jbosstools-dev at lists.jboss.org >> https://lists.jboss.org/mailman/listinfo/jbosstools-dev >> > > > > -- > Nick Boldt :: JBoss by Red Hat > Productization Lead :: JBoss Tools & Dev Studio > http://nick.divbyzero.com > -- Nick Boldt :: JBoss by Red Hat Productization Lead :: JBoss Tools & Dev Studio http://nick.divbyzero.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160315/cd420e6d/attachment-0001.html From simonsay at evercorp.com.tw Tue Mar 15 16:36:58 2016 From: simonsay at evercorp.com.tw (aszswx585) Date: Wed, 16 Mar 2016 04:36:58 +0800 Subject: [jbosstools-dev] =?gb2312?b?0dC3or6twO21xMHstbzBpmpib3NzaWRlLWRl?= =?gb2312?b?dg==?= Message-ID: <201603152036.u2FKajgR017477@lists01.dmz-a.mwc.hst.phx2.redhat.com> ????????????????????? ?????? 03?17-18?? 03?21-22?? 03?24-25?? 04?18-19?? 04?21-22?? 04?25-26?? ?????? ??CEO/?????????/???????/???????????/?????? ?????????????PMO???????????????????????? ?????? 3200?/1?| 4980?/2?????????????????? ?????? 15074275950 ? ? 0755-61283537 ???Q Q? 529178751 ?????? 15074275950 ? ? ????? ???????????????????????95%??????????????? ??????? ??????????????????????????????????????????? 1.???????????????? 2.??????????????? 3.????????????????????????? 4.???????????????????????????? 5.????????????????? 6.?????????????????????????????????? 7.?? ???????????????????????????????????? ??????????????????????????????????????????????? ??????????????????????????????????????????????? ????? ????? 1.????500?????????????????????????????????? 2.???????????????????????? 3.??????????????????????? 4.????????????????????????????????????????? 5.???????????? 6.?????????????????????????????????????????????? ????? 7.?????????????????????? 8.????30????????????????????????????,?? ????Action Plan ????????????????????? ??????Giles? ???????????? PDMA???????????www.pdma.org??? ?PDMA????????????? ???????????? ????? ????????????????????????????????????????????? ??????????????????????????????????????????????? ??????????????????????????????????????????????? ?????????????IT????????????????????????????????? ???????????????IT???????????????????1998?????????? ??????????????????????????????????????????????? ?????IT????????????????????????????????????? ????????? ???????????????10????????????????????????????? ??????????IT??????????????????????? ????? ?????? 1.???????????? ??????????????????? 1.?????????????????? 2.?????????????? 3.????????? 4.?????????????????????????????????????????????? ???????????????????????????????? 5.???????????? 6.??????? 7.??????????????? 8.?????????????? 1)??????????????? 2)???????? 3)???????????? 4)???????????????? 5)???????????????? 9.?????????????????????? 10.??????? ??????????????? 1.???????? 2.????? 3.????????? 1)???????? 2)???????????? 3)?????????????? 4)????????????? 5)????????????????????????? 6)????????????????????????????? 4.????????? 1)???????????????? 2)?????????????????????????? 3)?????????????????????? 4)????????????????????? 5)????????? 6)????????? 7)??????????????????? 8)??????????????????? 9)??????????????????????? 10)??????????????????????????????? 11)??????????????????????????????????????????? 5.????????? 1)????????????????? 2)?????????????????????? 3)?????????????????????????????????? 4)?????????????????????????????????????? 5)??????????????? 6.????????? 1)???????????? 2)??????????? 3)???????????? 4)??????????????????? 7.????????? 1)?????????????? 2)???????5??? 3)????????????????? 4)????????????????? 5)??????? 6)?????????????QA???? 7)?????????? 8)?????????? 9)?????????????????QA??????? 10)??????????????????????? ?????????????? 1.????????????????????????? 2.????????????????????????????? 3.????????? 4.????????????? 5.??????? 6.????????????? 7.?????????????????????? 8.???????? 9.??????????? 10.?????????????? 11.??????????? 12.?????????? 13.????????????? 14.???????????????? 15.??????????????????????????????????????????? 16.????????? 17.???????????????????? 18.????????? 19.?????????????????????? ?????????????????????????? 1.???????? 2.???????????? 3.????????????????????????? 4.????????????????? 5.???????????? 6.?????????SMART??????????????PBC?? 7.?????????????SMART 8.?????????SMART???????????SMART 9.??????????????????3???????????????? 10.???????PDCA?? 11.?????????? 12.??????????? 13.PERT??????GANNT 14.???????????PERT? 15.?????????????????????????????? 16.??????????????????? ???????????????????????????? 1.???? 30 ???????????? ???????????????????? ??????? ????????????????????? 2.???????????? 3.???????????? 4.??????????? 5.???????????? 6.???????????? 7.????????????????? 8.????????? 9.???????? 10.???????? 11.???????/???? 12.??????????? 13.????????????? 14.????????????????????????? 15.????????????????????????????? 16.?????????????????????????????????? 17.????????????????????????????????? 18.????????????????????????????? 19.??????????????????????? 20.??????????????????? ?????????????????????????? 1.??????????? 2.?????????????? 3.????????? 4.?????????????????????? 5.???????????????????????? 6.?????????????????????? 7.??????????????????????????? 8.???????????????????????? 9.?????????????????????????? 10.?????????????????????? 11.????????????????????????? 12.??????????????????????PCB? 13.????????????????????????? 14.??????? ?????????????????????????? 1.?????????? 2.???????????? 3.?????????????????????? 4.?????????????????? 5.???????? 6.???????????????? 7.????????????????? 1)???? 2)???????????????? 3)???????????????????????? 4)?????????????????? 5)??????????????????????????????? 8.???????????????? 1)???????????????????????? 2)????????? 3)????????????????????? 4)??????????KPI????????????? 5)?????????BSC?????????? 6)????????PBC????????????? 7)?????360????????????? 8)????? 9)???????????????? 9.????????????????? 1)??????????????? 2)????????7???????????????? ????????????????????? ?????????????????? 3)?????????????????????????????????????????????? ???? 4)????????????????????? 5)??????????????????????QA??????????????????? 10.???????????????????? 1)?????????? 2)???????????????????? 3)????????????????????? 4)?????????????????????? 5)?????????????????????????????????????????????? 6)?????????????????? 7)?????????????????? 8)?????????????????????? 9)??????????????????????????? 10)?????????????????????????????????????????? 11)??????????????? 12)?????????????????????????? 11.????? ?????????????????? 1.????????? 2.??????? 3.????????????????? 4.??????????? 5.????????????????????? 75806104:36:49758061 From kespkcyv at malkt.org Tue Mar 15 17:43:37 2016 From: kespkcyv at malkt.org (=?utf-8?B?5by65oCc5YWw?=) Date: Wed, 16 Mar 2016 05:43:37 +0800 Subject: [jbosstools-dev] =?utf-8?b?amJvc3NpZGUtZGV2OuWmguS9lemAmui/hw==?= =?utf-8?b?6K+V55So5ZGo5pyf77yM6YCJ5oup5pyJ5r2c5Yqb55qE5Lia5Yqh5ZGY?= =?utf-8?b?77yf?= Message-ID: <20160316054345660776@malkt.org> jbosside-dev ? ? ?????????????????? ??????????????? ???????????? 2016-3-165:43:44 9abpo -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160316/5041128f/attachment-0001.html -------------- next part -------------- A non-text attachment was scrubbed... Name: ????2??????.docx Type: application/vnd.openxmlformats-officedocument.wordprocessingml.document Size: 20211 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160316/5041128f/attachment-0001.bin From ecntrgl at agumuobu.com Tue Mar 15 17:49:45 2016 From: ecntrgl at agumuobu.com (%{SENDER_NAME}) Date: Wed, 16 Mar 2016 05:49:45 +0800 Subject: [jbosstools-dev] =?utf-8?b?6L2sOuaVtOS9k+aKiuaOp+S6p+WTgeeahA==?= =?utf-8?b?5LiK5biC6IqC5aWP?= Message-ID: <20160316054957605512@agumuobu.com> -------------- next part -------------- A non-text attachment was scrubbed... Name: ?????????????????.docx Type: application/octet-stream Size: 19456 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160316/df882063/attachment.obj From zwsljw at mwqxwugn.org Tue Mar 15 20:46:34 2016 From: zwsljw at mwqxwugn.org (fgehefm) Date: Wed, 16 Mar 2016 08:46:34 +0800 Subject: [jbosstools-dev] =?utf-8?b?5YWo6IO95Z6L6L2m6Ze05Li75Lu75a6e5oiY?= =?utf-8?b?5oqA6IO96K6t57uDNzIyMjEzMDk2?= Message-ID: ??????????????????? ?????? 3?26-27??? 4?16-17??? 4?23-24??? 05?28-29?? 06?04-05?? 07?23-24?? 07?30-31?? 08?20-21?? 08?27-28?? 10?29-30?? 11?05-06?? 12?17-18?? 12?24-25?? ?????? ?????????????????????????????????? ?????? ???? + ???? + ???? +???? + ???? ?????? 3200?/2?/1????????????????? ?????? ????? http://www.qiyexuexi.com ?????? 15684016587 ?? ?????? 19702-98702 at qq.com ???? ??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? 2015???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? ??????????????????? ????????????????? ?????????? 1??????????? 2????????????????????? 3???????? ?????????????????????? 4???????????????????? 5??????????????????????? ?????????????????? ??????(???????????) ????????????? ????? ???????????? ??????????????????? ??????????? 1??????????????????? 2????????????? 3????????????????? 4????????????? ?????????? ??????????????????? ????????????????????? ???????????????????? ????? ???????????????? ?????????????????????? ????????? ??????????????????? ??????????????????? ??????????????????? ??????????????? ???????????? ?????????????? ???????????? ?????????????? ????? ???????????? ??????????????????? ????????????????? ????? ?????????????????? ??????????????????? ???????(?????) ????????? ?????????????? ??????????? ????????? ??????????? ????????????? ???? ??????????????? ??????????QCD??????? ??????????? ??????????? ??????????? ????? ?????????????????? ???????????? ????????? ????????? ?????????? ????? ???????????????? ????? ???????????????? ?????????????? ????????????????????? ?????????90?????????? ??????????? ---????????? ---????????? ---???????????? ????????? ??????????????? ??????????????? ??????????????? ????????????? ---????????????? ????? ?????????????????? ?????????????????? ??????? 1??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? 2??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? 3????????????????????????????????????????????????????????????????????? ??????? 1?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? 2????????????????A3??????????????????????????????????????????????????A3?????????????????????????????????????? 3????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? ?????? ??????????????????? ??? /STEVEN CHAN ?????? ????????? ??????/?????? MMC???????????? ???????????????????????????????????????????????????????????????????,????????????????WF&IE???????????????????????????????????????????????????(????/????/????)?????????????????????????????????????????????????? ?????????????????????????????????????????????????????????????????????????????????????????????????? ???????????????????????????????????????????????????????(083??) ?????????????????????????????(???) ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????CTS????????????????????????????????? ??????????????????90??????????????????????????????????????????????????????????????????????/???????????????????????????????????????????? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160316/adf4d290/attachment-0001.html From manderse at redhat.com Wed Mar 16 09:21:24 2016 From: manderse at redhat.com (Max Rydahl Andersen) Date: Wed, 16 Mar 2016 14:21:24 +0100 Subject: [jbosstools-dev] Proposed patchfix release for JBoss Tools 4.3.0.Final / JBDS 9.0.0.GA In-Reply-To: References: <56E708ED.8060203@redhat.com> <56E70CC3.1050601@redhat.com> Message-ID: <9018A5DE-9E50-49EE-85A3-5C1FFE73FA39@redhat.com> On 15 Mar 2016, at 21:07, Nick Boldt wrote: > OK, so looks like we have quorum from the various +1ers, and signoff > in the > JIRA. > > Any last words before I push the Big Red Button? gogo - and could you make a blog with the news about it ? /max > > On Tue, Mar 15, 2016 at 9:54 AM, Nick Boldt wrote: > >> Did you use the /staging/ URLs I provided when testing? >> >> On Tue, Mar 15, 2016 at 9:17 AM, Leonard Dimaggio >> >> wrote: >> >>> Regression tests are complete (and were successful) >>> >>> >>> https://issues.jboss.org/browse/JBIDE-21821?focusedCommentId=13175950&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-13175950 >>> >>> >>> >>> On Mon, Mar 14, 2016 at 3:10 PM, Alexey Kazakov >>> >>> wrote: >>> >>>> +1 >>>> >>>> >>>> On 03/14/2016 02:54 PM, Mickael Istria wrote: >>>> >>>> On 03/14/2016 06:11 PM, Nick Boldt wrote: >>>> >>>> Solution proposed is to add org.eclipse.egit.ui.importer >>>> 4.1.1.201511131810-r to the composite site from which JBT >>>> 4.3.0.Final >>>> and JBDS 9.0.0.GA are installed, so that when >>>> org.eclipse.egit.ui.importer is installed, p2 can select the 4.1.1 >>>> version instead of the 4.0.0 version. >>>> See also: https://issues.jboss.org/browse/JBIDE-21821 >>>> >>>> +1. I believe it's the simplest way to expose this necessary >>>> bundle. >>>> -- >>>> Mickael Istria >>>> Eclipse developer at JBoss, by Red Hat >>>> My blog - My Tweets >>>> >>>> >>>> >>>> _______________________________________________ >>>> jbosstools-dev mailing >>>> listjbosstools-dev at lists.jboss.orghttps://lists.jboss.org/mailman/listinfo/jbosstools-dev >>>> >>>> >>>> >>>> _______________________________________________ >>>> jbosstools-dev mailing list >>>> jbosstools-dev at lists.jboss.org >>>> https://lists.jboss.org/mailman/listinfo/jbosstools-dev >>>> >>> >>> >>> >>> -- >>> Len DiMaggio (ldimaggi at redhat.com) >>> JBoss by Red Hat >>> 314 Littleton Road >>> Westford, MA 01886 USA >>> tel: 978.392.3179 >>> cell: 781.472.9912 >>> http://www.redhat.com >>> http://community.jboss.org/people/ldimaggio >>> >>> >>> >>> _______________________________________________ >>> jbosstools-dev mailing list >>> jbosstools-dev at lists.jboss.org >>> https://lists.jboss.org/mailman/listinfo/jbosstools-dev >>> >> >> >> >> -- >> Nick Boldt :: JBoss by Red Hat >> Productization Lead :: JBoss Tools & Dev Studio >> http://nick.divbyzero.com >> > > > > -- > Nick Boldt :: JBoss by Red Hat > Productization Lead :: JBoss Tools & Dev Studio > http://nick.divbyzero.com > _______________________________________________ > jbosstools-dev mailing list > jbosstools-dev at lists.jboss.org > https://lists.jboss.org/mailman/listinfo/jbosstools-dev /max http://about.me/maxandersen -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160316/7b45377a/attachment.html From nboldt at redhat.com Wed Mar 16 09:53:10 2016 From: nboldt at redhat.com (Nick Boldt) Date: Wed, 16 Mar 2016 09:53:10 -0400 Subject: [jbosstools-dev] Proposed patchfix release for JBoss Tools 4.3.0.Final / JBDS 9.0.0.GA In-Reply-To: <9018A5DE-9E50-49EE-85A3-5C1FFE73FA39@redhat.com> References: <56E708ED.8060203@redhat.com> <56E70CC3.1050601@redhat.com> <9018A5DE-9E50-49EE-85A3-5C1FFE73FA39@redhat.com> Message-ID: Blog PR ready for review & push to prod: https://github.com/jbosstools/jbosstools-website/pull/554/ https://github.com/nickboldt/jbosstools-website/blob/mars.2-patchfix-JBIDE-21821/blog/ga-patchfix-mars.2.adoc egit 4.1.1 patch is live in /stable/ and /staging/ has been reverted to contain 4.3.1.Beta2 bits On Wed, Mar 16, 2016 at 9:21 AM, Max Rydahl Andersen wrote: > On 15 Mar 2016, at 21:07, Nick Boldt wrote: > > OK, so looks like we have quorum from the various +1ers, and signoff in the > JIRA. > > Any last words before I push the Big Red Button? > > gogo - and could you make a blog with the news about it ? > > /max > > On Tue, Mar 15, 2016 at 9:54 AM, Nick Boldt nboldt at redhat.com wrote: > > Did you use the /staging/ URLs I provided when testing? > > On Tue, Mar 15, 2016 at 9:17 AM, Leonard Dimaggio ldimaggi at redhat.com > wrote: > > Regression tests are complete (and were successful) > > https://issues.jboss.org/browse/JBIDE-21821?focusedCommentId=13175950&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-13175950 > > On Mon, Mar 14, 2016 at 3:10 PM, Alexey Kazakov alkazako at redhat.com > wrote: > > +1 > > On 03/14/2016 02:54 PM, Mickael Istria wrote: > > On 03/14/2016 06:11 PM, Nick Boldt wrote: > > Solution proposed is to add org.eclipse.egit.ui.importer > 4.1.1.201511131810-r to the composite site from which JBT 4.3.0.Final > and JBDS 9.0.0.GA are installed, so that when > org.eclipse.egit.ui.importer is installed, p2 can select the 4.1.1 > version instead of the 4.0.0 version. > See also: https://issues.jboss.org/browse/JBIDE-21821 > > +1. I believe it's the simplest way to expose this necessary bundle. > > Mickael Istria > Eclipse developer at JBoss, by Red Hat http://www.jboss.org/tools > My blog http://mickaelistria.wordpress.com - My Tweets > http://twitter.com/mickaelistria > > ________________________________ > > jbosstools-dev mailing > listjbosstools-dev at lists.jboss.orghttps://lists.jboss.org/mailman/listinfo/jbosstools-dev > > ________________________________ > > jbosstools-dev mailing list > jbosstools-dev at lists.jboss.org > https://lists.jboss.org/mailman/listinfo/jbosstools-dev > > -- > Len DiMaggio (ldimaggi at redhat.com) > JBoss by Red Hat > 314 Littleton Road > Westford, MA 01886 USA > tel: 978.392.3179 > cell: 781.472.9912 > http://www.redhat.com > http://community.jboss.org/people/ldimaggio > > ________________________________ > > jbosstools-dev mailing list > jbosstools-dev at lists.jboss.org > https://lists.jboss.org/mailman/listinfo/jbosstools-dev > > -- > Nick Boldt :: JBoss by Red Hat > Productization Lead :: JBoss Tools & Dev Studio > http://nick.divbyzero.com > > -- > Nick Boldt :: JBoss by Red Hat > Productization Lead :: JBoss Tools & Dev Studio > http://nick.divbyzero.com > > ________________________________ > > jbosstools-dev mailing list > jbosstools-dev at lists.jboss.org > https://lists.jboss.org/mailman/listinfo/jbosstools-dev > > /max > http://about.me/maxandersen -- Nick Boldt :: JBoss by Red Hat Productization Lead :: JBoss Tools & Dev Studio http://nick.divbyzero.com From nboldt at redhat.com Wed Mar 16 11:13:26 2016 From: nboldt at redhat.com (Nick Boldt) Date: Wed, 16 Mar 2016 11:13:26 -0400 Subject: [jbosstools-dev] Proposed patchfix release for JBoss Tools 4.3.0.Final / JBDS 9.0.0.GA In-Reply-To: References: <56E708ED.8060203@redhat.com> <56E70CC3.1050601@redhat.com> <9018A5DE-9E50-49EE-85A3-5C1FFE73FA39@redhat.com> Message-ID: Blog is live. Thanks to everyone who helped design & test this quick solution. Nick On Wed, Mar 16, 2016 at 9:53 AM, Nick Boldt wrote: > Blog PR ready for review & push to prod: > > https://github.com/jbosstools/jbosstools-website/pull/554/ > https://github.com/nickboldt/jbosstools-website/blob/mars.2-patchfix-JBIDE-21821/blog/ga-patchfix-mars.2.adoc > > egit 4.1.1 patch is live in /stable/ and /staging/ has been reverted > to contain 4.3.1.Beta2 bits > > > On Wed, Mar 16, 2016 at 9:21 AM, Max Rydahl Andersen > wrote: >> On 15 Mar 2016, at 21:07, Nick Boldt wrote: >> >> OK, so looks like we have quorum from the various +1ers, and signoff in the >> JIRA. >> >> Any last words before I push the Big Red Button? >> >> gogo - and could you make a blog with the news about it ? >> >> /max >> >> On Tue, Mar 15, 2016 at 9:54 AM, Nick Boldt nboldt at redhat.com wrote: >> >> Did you use the /staging/ URLs I provided when testing? >> >> On Tue, Mar 15, 2016 at 9:17 AM, Leonard Dimaggio ldimaggi at redhat.com >> wrote: >> >> Regression tests are complete (and were successful) >> >> https://issues.jboss.org/browse/JBIDE-21821?focusedCommentId=13175950&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-13175950 >> >> On Mon, Mar 14, 2016 at 3:10 PM, Alexey Kazakov alkazako at redhat.com >> wrote: >> >> +1 >> >> On 03/14/2016 02:54 PM, Mickael Istria wrote: >> >> On 03/14/2016 06:11 PM, Nick Boldt wrote: >> >> Solution proposed is to add org.eclipse.egit.ui.importer >> 4.1.1.201511131810-r to the composite site from which JBT 4.3.0.Final >> and JBDS 9.0.0.GA are installed, so that when >> org.eclipse.egit.ui.importer is installed, p2 can select the 4.1.1 >> version instead of the 4.0.0 version. >> See also: https://issues.jboss.org/browse/JBIDE-21821 >> >> +1. I believe it's the simplest way to expose this necessary bundle. >> >> Mickael Istria >> Eclipse developer at JBoss, by Red Hat http://www.jboss.org/tools >> My blog http://mickaelistria.wordpress.com - My Tweets >> http://twitter.com/mickaelistria >> >> ________________________________ >> >> jbosstools-dev mailing >> listjbosstools-dev at lists.jboss.orghttps://lists.jboss.org/mailman/listinfo/jbosstools-dev >> >> ________________________________ >> >> jbosstools-dev mailing list >> jbosstools-dev at lists.jboss.org >> https://lists.jboss.org/mailman/listinfo/jbosstools-dev >> >> -- >> Len DiMaggio (ldimaggi at redhat.com) >> JBoss by Red Hat >> 314 Littleton Road >> Westford, MA 01886 USA >> tel: 978.392.3179 >> cell: 781.472.9912 >> http://www.redhat.com >> http://community.jboss.org/people/ldimaggio >> >> ________________________________ >> >> jbosstools-dev mailing list >> jbosstools-dev at lists.jboss.org >> https://lists.jboss.org/mailman/listinfo/jbosstools-dev >> >> -- >> Nick Boldt :: JBoss by Red Hat >> Productization Lead :: JBoss Tools & Dev Studio >> http://nick.divbyzero.com >> >> -- >> Nick Boldt :: JBoss by Red Hat >> Productization Lead :: JBoss Tools & Dev Studio >> http://nick.divbyzero.com >> >> ________________________________ >> >> jbosstools-dev mailing list >> jbosstools-dev at lists.jboss.org >> https://lists.jboss.org/mailman/listinfo/jbosstools-dev >> >> /max >> http://about.me/maxandersen > > > > -- > Nick Boldt :: JBoss by Red Hat > Productization Lead :: JBoss Tools & Dev Studio > http://nick.divbyzero.com -- Nick Boldt :: JBoss by Red Hat Productization Lead :: JBoss Tools & Dev Studio http://nick.divbyzero.com From sales at jusn.net Thu Mar 17 04:18:45 2016 From: sales at jusn.net (vzwqbb112) Date: Thu, 17 Mar 2016 16:18:45 +0800 Subject: [jbosstools-dev] =?gb2312?b?1LG5pLXEtMfWsLPM0PK6zcDr1rDU8MjOamJv?= =?gb2312?b?c3NpZGUtZGV2?= Message-ID: <201603170818.u2H8Iim1000950@lists01.dmz-a.mwc.hst.phx2.redhat.com> ?????????????????????????????????????????????????????? ??????03?18-19?? 03?23-24?? 03?31-4?1?? 04?8-9??? 04?15-16?? 04?22-23?? ??????2???????A???B????????????????????????????? ?A????B????AB???????????A?????B???????B?????A?????A ???B???????????????? ?????? ???????????????????/??/?????????????????? ????????????????? ?????? ???? + ???? + ???? +???? + ???? ?????? ??A???2800?/1??5000?/2????B???2800?/1??5000?/2? ??AB???5000?/??????????????????? ?????? 15074275950 ? ? 0755-61283537 ???Q Q? 529178751 ?????? 15074275950 ? ? ????? ??2008??????????????????????????????????????????? ????????????????????????2009????????????????????? ?2010?????????????????????????????????2011????????? ???????????????2012???????????????????????? ????????????????????2013????????????????????????? ???????2014??? ??????????????????????????????????????????????? ??????????????????????????????????????????????? ??????????????????????????????????????????????? ???????????????????????????????????????? ??????????????????????????????????????????????? ??????????????????????????????????????????????? ?????????????????????????????? ????? 1????????????????? 2?????????????????? 3???????????????????? 4?????????????????????? ????? ??????????????????????????????????????? ?????????????5????????????????????????????????? ???????????????????????????????? ??????????????????????????????????????????????? ???????????????? ?????????? ??????? ????: ????????????????????????????????????????????? ??????????????????????????????????????????????? ???????????????????? ????????(??)???????????????????????????????????? ??????????????????????????????????????????????? ??????????????????????????100??????????????????? ???????? ????: ????????????????????????????????????????????? ??????????????????????????????????????????????? ??????????????????????????????????????????????? ??????????????????????????????????????????????? ????????100%???? ????: ????????????????????????????????????????400??? ???????????500????????????????20???????400????????? ?????????????30?????200?????????????????????????? ???????????????????????????????????????95%? 2004????????????????????????????30000????????70000?? ???????20??????????????????????????????????????? ????????????????????????80%??????20%?????????????? ????????????????????????????????????????95%????? ??????????????? ??????????????????????????????????????????????? ?? ????????????????????????????????????????????? ??????????????????????50??? ????? A??????2??15???????? ???????? 1.???????????????????????????? 2.?????????????????? 3.???????????????????????? 4.?????????????????????????? 5.?????????????? 6.?????????????????????????? 7.?????????????????????????? 8.??????????????????? 9.??????????????????????? ?????????? 1.????????????????????????????? 2.?????????????????????????? 3.????????????????????????????????? 4.????????????????????????????????? 5.?????????????????????? 6.????2???????????????????????? 7.??????????????????????????????? 8.?????????????????????? ??????? 1.?????????????????????? 2.?????????????????????????? 3.?????????????2??????????? 4.?????????????????70%?????? 5.?????????????????50%?????? 6.?????????????????????? 7.??????????????????????????? 8.???????????????????????????? ????????????? 1.???????????????????????????? 2.????????????????????? 3.??????????????????????? 4.??????????????????????10??????????????????????? ? 5.?????????????????????????????????????????????? ????? 6.?????????????????????????????????????????????? ?????????????????? ?????????? 1.?????????????????????????????????????? 2.?????????????????????????????????????????????? ? 3.??????????????????????????????????? 4.????????????????? 5.?????????????????????? 6.???????????????????? 7.????????????????? 8.??????????????????? ???????????? 1.?????????????????????????????????????????????? ????????????????????? 2.??????????????????????????????? 3.?????30????????????????????? 4.?????????30?????????????????????? 5.?????????30??????????????????????? 6.????????????????????????? 7.????????????????????????????????????????????? 8.?????????????????????????????????????????????? ?????????? 9.??????????????????????????????????????????? 10.????????????????????????????????????????????? ????????????? 11.???????????????????????????? 12.????????????????????????????????????????????? ??????????????? ????????? 1.?????????????????? 2.?????????????????? 3.?????????????????????????????? 4.???????????????? 5.???????????????????????????????? 6.???????????????????????? 7.??????????????????? 8.?????????????????????????????? ?????????? 1.??????????????? 2.????????????????????? 3.???????????????? 4.?????????????????????? 5.??????????????????????????? 6.???????????????? 7.????????????????????? 8.???????????????????? B??????2??15???????? ????????????? 1.????????????????????????????????? 2.??????????????????2?????????????? 3.??????????????????? 4.??????????????????????????????? 5.???????????????????????????????? 6.??????????????????? 7.??????????????????? 8.????????????5%?????????????? ????????????? 1.????????????? 2.???????????????? 3.?????????????????? 4.????????????????????? 5.???????? 6.????????????? 7.????????????????????? 8.???????????????????????????? 9.??????????????????? 10.???????\??????????????????????? 11.????????????????????????????? 12.?????????????????????????????? ?????????????? 1.??????????????????????? 2.??????????????????????????????????? 3.?????????????????? 4.???????????????????? 5.????????????????????????????????? 6.???????????????????????????? 7.?????????????????????????????????? 8.???????????????????????? 9.???????????????????????? 10.????????????????????????????????????????????? 11.????????????????????????????????????????????? ?????? 12.???????????????????????OA????????????????????? ???????????? ???????? 1.?????????????????????? 2.???????????????????? 3.??????????????????????? 4.????????????????? 5.???????????????????? 6.??????????????????????? 7.?????????????????????????????????????????????? ? 8.?????????50%??????????????? ????????????? 1.????????????????????????? 2.???????????????????????? 3.???????????????????????????? 4.???????????????????? 5.????????????????????? 6.?????????????????????? 7.?????????????????? 8.????????????????????????????????? ?????????? 1.????????????? 2.?????????????? 3.?????????????????????? 4.??????????????????? 5.??????????????????????? 6.?????????????????????????????????????????????? ? 7.????????????????????????? 8.??????????????????????????? ???????? 1.????????????????????? 2.????????????????????? 3.?????????????????? 4.?????????????????????????? 5.??????????????????????????????? 6.???????????????????????????? 7.?????????????????? 8.????????????????????? 9.???????????????????? 10.??????????????????? 11.???????????????????????????????? 12.?????????????????? 13.?????????????????? 14.???????????????????? 75806416:18:41758064 From shspskssf at 163.com Thu Mar 17 04:18:59 2016 From: shspskssf at 163.com (xckboj861) Date: Thu, 17 Mar 2016 16:18:59 +0800 Subject: [jbosstools-dev] =?gb2312?b?0dC3or6twO21xMHstbzBpmpib3NzaWRlLWRl?= =?gb2312?b?dg==?= Message-ID: <201603170818.u2H8ItuU000984@lists01.dmz-a.mwc.hst.phx2.redhat.com> ????????????????????? ?????? 03?17-18?? 03?21-22?? 03?24-25?? 04?18-19?? 04?21-22?? 04?25-26?? ?????? ??CEO/?????????/???????/???????????/?????? ?????????????PMO???????????????????????? ?????? 3200?/1?| 4980?/2?????????????????? ?????? 15074275950 ? ? 0755-61283537 ???Q Q? 529178751 ?????? 15074275950 ? ? ????? ???????????????????????95%??????????????? ??????? ??????????????????????????????????????????? 1.???????????????? 2.??????????????? 3.????????????????????????? 4.???????????????????????????? 5.????????????????? 6.?????????????????????????????????? 7.?? ???????????????????????????????????? ??????????????????????????????????????????????? ??????????????????????????????????????????????? ????? ????? 1.????500?????????????????????????????????? 2.???????????????????????? 3.??????????????????????? 4.????????????????????????????????????????? 5.???????????? 6.?????????????????????????????????????????????? ????? 7.?????????????????????? 8.????30????????????????????????????,?? ????Action Plan ????????????????????? ??????Giles? ???????????? PDMA???????????www.pdma.org??? ?PDMA????????????? ???????????? ????? ????????????????????????????????????????????? ??????????????????????????????????????????????? ??????????????????????????????????????????????? ?????????????IT????????????????????????????????? ???????????????IT???????????????????1998?????????? ??????????????????????????????????????????????? ?????IT????????????????????????????????????? ????????? ???????????????10????????????????????????????? ??????????IT??????????????????????? ????? ?????? 1.???????????? ??????????????????? 1.?????????????????? 2.?????????????? 3.????????? 4.?????????????????????????????????????????????? ???????????????????????????????? 5.???????????? 6.??????? 7.??????????????? 8.?????????????? 1)??????????????? 2)???????? 3)???????????? 4)???????????????? 5)???????????????? 9.?????????????????????? 10.??????? ??????????????? 1.???????? 2.????? 3.????????? 1)???????? 2)???????????? 3)?????????????? 4)????????????? 5)????????????????????????? 6)????????????????????????????? 4.????????? 1)???????????????? 2)?????????????????????????? 3)?????????????????????? 4)????????????????????? 5)????????? 6)????????? 7)??????????????????? 8)??????????????????? 9)??????????????????????? 10)??????????????????????????????? 11)??????????????????????????????????????????? 5.????????? 1)????????????????? 2)?????????????????????? 3)?????????????????????????????????? 4)?????????????????????????????????????? 5)??????????????? 6.????????? 1)???????????? 2)??????????? 3)???????????? 4)??????????????????? 7.????????? 1)?????????????? 2)???????5??? 3)????????????????? 4)????????????????? 5)??????? 6)?????????????QA???? 7)?????????? 8)?????????? 9)?????????????????QA??????? 10)??????????????????????? ?????????????? 1.????????????????????????? 2.????????????????????????????? 3.????????? 4.????????????? 5.??????? 6.????????????? 7.?????????????????????? 8.???????? 9.??????????? 10.?????????????? 11.??????????? 12.?????????? 13.????????????? 14.???????????????? 15.??????????????????????????????????????????? 16.????????? 17.???????????????????? 18.????????? 19.?????????????????????? ?????????????????????????? 1.???????? 2.???????????? 3.????????????????????????? 4.????????????????? 5.???????????? 6.?????????SMART??????????????PBC?? 7.?????????????SMART 8.?????????SMART???????????SMART 9.??????????????????3???????????????? 10.???????PDCA?? 11.?????????? 12.??????????? 13.PERT??????GANNT 14.???????????PERT? 15.?????????????????????????????? 16.??????????????????? ???????????????????????????? 1.???? 30 ???????????? ???????????????????? ??????? ????????????????????? 2.???????????? 3.???????????? 4.??????????? 5.???????????? 6.???????????? 7.????????????????? 8.????????? 9.???????? 10.???????? 11.???????/???? 12.??????????? 13.????????????? 14.????????????????????????? 15.????????????????????????????? 16.?????????????????????????????????? 17.????????????????????????????????? 18.????????????????????????????? 19.??????????????????????? 20.??????????????????? ?????????????????????????? 1.??????????? 2.?????????????? 3.????????? 4.?????????????????????? 5.???????????????????????? 6.?????????????????????? 7.??????????????????????????? 8.???????????????????????? 9.?????????????????????????? 10.?????????????????????? 11.????????????????????????? 12.??????????????????????PCB? 13.????????????????????????? 14.??????? ?????????????????????????? 1.?????????? 2.???????????? 3.?????????????????????? 4.?????????????????? 5.???????? 6.???????????????? 7.????????????????? 1)???? 2)???????????????? 3)???????????????????????? 4)?????????????????? 5)??????????????????????????????? 8.???????????????? 1)???????????????????????? 2)????????? 3)????????????????????? 4)??????????KPI????????????? 5)?????????BSC?????????? 6)????????PBC????????????? 7)?????360????????????? 8)????? 9)???????????????? 9.????????????????? 1)??????????????? 2)????????7???????????????? ????????????????????? ?????????????????? 3)?????????????????????????????????????????????? ???? 4)????????????????????? 5)??????????????????????QA??????????????????? 10.???????????????????? 1)?????????? 2)???????????????????? 3)????????????????????? 4)?????????????????????? 5)?????????????????????????????????????????????? 6)?????????????????? 7)?????????????????? 8)?????????????????????? 9)??????????????????????????? 10)?????????????????????????????????????????? 11)??????????????? 12)?????????????????????????? 11.????? ?????????????????? 1.????????? 2.??????? 3.????????????????? 4.??????????? 5.????????????????????? 75805816:18:58758058 From rwg at xyh.net Thu Mar 17 07:54:31 2016 From: rwg at xyh.net (=?utf-8?B?6buE5Ly2?=) Date: Thu, 17 Mar 2016 19:54:31 +0800 Subject: [jbosstools-dev] =?utf-8?b?5Li65LuA5LmI6L+Q6JCl5oiQ5pys6LaK5p2l?= =?utf-8?b?6LaK6auY77yM55uI5Yip6IO95Yqb6LaK5p2l6LaK5beu77yf?= Message-ID: <09C43FCA216D8A33D9437EC1C2AC618D@xyh.net> ------------------ ???? ------------------ ???: "??";; ????: 2016-3-17 19:54:40 ???: "jbosside-dev"; ??: RE: ??????????????????????????? ??? ? ? ? ? 979 ???????????????????????? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160317/9f7cf0cc/attachment-0001.html -------------- next part -------------- A non-text attachment was scrubbed... Name: ???????.?????????.docx Type: application/vnd.openxmlformats-officedocument.wordprocessingml.document Size: 24137 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160317/9f7cf0cc/attachment-0001.bin From nir at qifjkzbg.org Thu Mar 17 10:41:32 2016 From: nir at qifjkzbg.org (=?utf-8?B?6LCi57uP55CG?=) Date: Thu, 17 Mar 2016 22:41:32 +0800 Subject: [jbosstools-dev] =?utf-8?b?5aaC5L2V5YWz5rOoLumUgeWumi7mu6HotrM=?= =?utf-8?b?5biC5Zy66ZyA5rGC77yM5Yib6YCg5a6i5oi35Lu35YC8?= Message-ID: <20743AF645F6E83AF9A0345D636339CB@qifjkzbg.org> ? ? ? ? ? ? ? ---- ????? ----- ???:??? ???:jbosside-dev ????:2016-3-17 22:41:40 ??: ???????????????????? ???????????????????????????????????? ???????????????????????????????????????????????????????????? ????????????????????????????????????? ?????????????????????????? ??????????????????????????? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160317/837cf6b9/attachment-0001.html -------------- next part -------------- A non-text attachment was scrubbed... Name: ????.??.?????????????.docx Type: application/vnd.openxmlformats-officedocument.wordprocessingml.document Size: 25798 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160317/837cf6b9/attachment-0001.bin From kxabvb at mtt.com Thu Mar 17 14:40:45 2016 From: kxabvb at mtt.com (=?utf-8?B?56Kn6bKB5bCU5Yeh?=) Date: Fri, 18 Mar 2016 02:40:45 +0800 Subject: [jbosstools-dev] =?utf-8?b?amJvc3NpZGUtZGV2OuS6p+WTgee7j+eQhg==?= =?utf-8?b?6K+l5aaC5L2V5a6a5L2N77yf?= Message-ID: <20160318024052031878@mtt.com> jbosside-dev??? ??????????????????????????????????????????? ???????????????????????????????????????????? ??????????????????????????????????????????????????????????????????????????... ???????????????? ??????????? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160318/50e21e5a/attachment-0001.html -------------- next part -------------- A non-text attachment was scrubbed... Name: ??????????????????.docx Type: application/vnd.openxmlformats-officedocument.wordprocessingml.document Size: 23775 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160318/50e21e5a/attachment-0001.bin From bm at df.com Thu Mar 17 15:56:53 2016 From: bm at df.com (=?utf-8?B?5rSq5Lqp?=) Date: Fri, 18 Mar 2016 03:56:53 +0800 Subject: [jbosstools-dev] =?utf-8?b?5aaC5L2V6YCJLuiCsi7nlKgu55WZ56CU5Y+R?= =?utf-8?b?5Lq65ZGY77yM5omT6YCg6auY5pWI5Zui6Zif?= Message-ID: <70D9D209F97C3ABD28FC7CA14D521B5D@df.com> ------------------ ???? ------------------ ???: "??";; ????: 2016-3-18 3:56:57 ???: "jbosside-dev"; ??: RE: ????????????????????????????????? ?? ? ? ?? ? ? ??? ????????????????????????????????????????? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160318/1695519a/attachment-0001.html -------------- next part -------------- A non-text attachment was scrubbed... Name: ???.?.?.????????????.docx Type: application/vnd.openxmlformats-officedocument.wordprocessingml.document Size: 22763 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160318/1695519a/attachment-0001.bin From artproducts at fcnbanks.com Thu Mar 17 19:22:30 2016 From: artproducts at fcnbanks.com (artproducts at fcnbanks.com) Date: Fri, 18 Mar 2016 03:22:30 +0400 Subject: [jbosstools-dev] Do you wish to surprise your babe tonight? Message-ID: <201603180033.u2I0XkVL022270@lists01.dmz-a.mwc.hst.phx2.redhat.com> It helps to forget about male problems http://silver.cihzaqra.work/ From service at zhenyucs.com Fri Mar 18 00:24:54 2016 From: service at zhenyucs.com (nxfhfd859) Date: Fri, 18 Mar 2016 12:24:54 +0800 Subject: [jbosstools-dev] =?gb2312?b?z/otytvW9y253NG1wbdqYm9zc2lkZS1kZXY=?= Message-ID: <201603180424.u2I4OuIW014323@lists01.dmz-a.mwc.hst.phx2.redhat.com> ????2?????? ?????? 03?19-20?? 03?26-27?? 04?23-24?? 05?21-22?? 05?28-29?? ?????? ?????????????????????????????????????? ?????? ???? + ???? + ???? +???? + ???? ?????? 3800?2?/1?????????????????? ?????? 15074275950 ? ? 0755-61283537 ???Q Q? 529178751 ?????? 15074275950 ? ? ????? ??????????????????????????????????????????????? ??????????????????????????????????????????????? ???????????????????????2??????????????2????????? ??????????????????????????????? 1. ?????????????????????????????? 2. ?????????????????? 3. ??????????????????????????? 4. ???????????????????? 5. ?????????????????????????? 6. ????????????????????????????? 7. ????????? ??????????????????? 8. ?????????????????????????????????????? 9. ?????????????????????????????? 10. ??????????????????????????????? ?????????????2????????????? ????? 1. ??????????????????????? 2. ???????????????????????? 3. ?????????????????????? 4. ??????????????? 5. ?????????????????? 6????????????????? 7????????2????????????????????????????? ????? 1. ??????????????? ?????????????????????4???????????????????? 2. ??????????????? ?????????????????????????????? 3. ????????????? ????????????????????????????????? 4. ??????????? ???????????????????????????????????????? 5. ?????????????????? ?????????????????????????????????????????????? ?????????? ??????????? ????: ???????????????????????????????????????????? ???????GE?????????????????????? ????????????????Watsons Water?????-??????????????? ??????????????????????????????????????????????? ? ???????????????????????????????????3????? ???????????????????????????????????????????? ???????????????????????????????????? ???????????????????????QUT??????(MBA?? ???????????????????????????????????????????? ??????????????????? ? ??????????????????????????????????????????????? ??????????????????????????????????????????????? ??????????????????????????????????????????????? ???? ????: 1. ????????????????????????????????????????????? ??????????????????? ??? ??? 2. ????????????????????????????????????????????? ??????????????????????????????????? ??? ??? 3. ???????????????????????????????????? ??? ??? 4. ??????????????????????????????? ?? ??????????? ??? ??? ????? ????????????????? ??????????? 1. ?????????????? 2. ??????????????????? 3. ????????????? ???????????? 1. ??????????????????????? ????????????? 2. ???????????????????????? 3. ????????????? ?????????? 1. ?????????????? 2. ???????? ????????????????? ????????????? ???????????? ????????? 1. ????????????????????????? 2. ???????????? 3. ???????? ???????????2?? ????????? 1. ????????????????? 2. ??????? 3. ??????????? 4. ????????????? ??????????? ?????????? 5. ???????5????? ????????????? 1. ???????????? 2. ????????? ?????????????????? ?????????????????? 1. ???????????????????????????????? 2. ?????3??? 3. ?????????? ?????????? 1. ?????????????? 2. ?????????? ???????????? 1. ???????????????????? 2. ????????????? ????????????????????? ??????????? 1. ????????? 2. ????????????? ???????? 1????????? ??????????????????????? 2. ???????KPI?? ????????????????? 3. ?????????????? ??????????????? ????????????? 1. ????????? 2. ???? -- ???? ?????? 1. ?????????????? ???????????? 2. ??????? ??????????????????????????? ????????? 1. ?????????? ???????? 2. ???????????? ????????? 1. ???????????????????? 2. ???????????????? ?????????????? 1. ?????????????????????????? 2. ???????????? ?????????3??? ????????????????????????? ???????????????????? 3. ?????????? ??????????????????? ????????? 75808312:24:53 From sibhmqmzu at onaswnotdbenfy.com Fri Mar 18 04:37:27 2016 From: sibhmqmzu at onaswnotdbenfy.com (jtalsw787) Date: Fri, 18 Mar 2016 16:37:27 +0800 Subject: [jbosstools-dev] =?gb2312?b?amJvc3NpZGUtZGV2svrGt76twO21xNKwwvk=?= =?gb2312?b?s8mzpA==?= Message-ID: <201603180837.u2I8bPM9010250@lists01.dmz-a.mwc.hst.phx2.redhat.com> ?????????????????? ?????? 03?21-22?? 03?24-25?? 04?25-26?? 04?18-19?? 04?21-22?? ?????? ??CEO/?????????/???????/?????????????????? ??????/?????PMO???????????????????????? ?????? 3200?/1?| 4980?/2?????????????????? ?????? 15074275950 ? ? 0755-61283537 ???Q Q? 529178751 ?????? 15074275950 ? ? ????? ??????????????????????????????? 1??????????????????????????????????? ??????????? ??????????????????????????????????????????????? ??????????????????????????????? 2????????????????????????????????????????? ????? ??????? 3????????????????????????????? ????????????????? ???? 4????????????????????????????????????????? ????? ???????????????????????????????????????????? ??????????????????????????????????????????????? ??????????????????????????????????????????????? ??????????????????????????????????????????????? ???????????????????????? 1.????????????????? 2.???????????????????? 3.?????????????????????? 4.?????????????????????? 5.??????????????? 6.??????????????????????? 7.?????????????? 8.?????????????????? 9.??????????????????????????? 10.?????????????????? ?? ?????????????????? ????????? ??????????????????? ??????????????? ????? 1.?????????????? 2.????????????????????????????? 3.?????????????????????????????? 4.??????????????????? 5.????????????????????? 6.?????????????????????????????? 7.????????????????????????????? 8.?????????????????????????????? 9.??????????????? 10.?????0???????????????????????????????????????? ??????Charles? ?????????? PDMA???????????www.pdma.org??? ?PDMA????????????? ???????????? ????? ?????????????????????????????????????????????? ?????????????????????????????????????????????? ?????????????????????????????????????????2002?? 2004???????????????????????????????????????????? ?????????????????????????????????????????????? ????????? ????????? ???????????????10?????????????????????????????? ?????????IT??????????????????????? ????? ?????? ?????????????????????????? 1.??????????????????????? 1????????????? 2???????????????? 3???????????????? 4???????????? 2.????????????? 1???????????? 2????? 3???????????????????????????? 3.??????????????? 1??????????????? 2???????????????? 3??????????????? 4??????????? 5????????S?T?Q?C 4.???????????? 5.?????????????? 1????? 2????? 3????????????? 4????????????? 5?????? 6.?????????????????????? 7.?????????? 1???????????? 2????????? 3???????????? 4???????? 8.??????? ???????????????? 1.????????? 1???????????? 2???????????? 3?????????????? 2.??????????????????? 3.????????????? 4.???????????????? 5.???????????????? 1???????? 2???????? 3????????? 6.??????? ?????????????????? 1.??????????????????????????? 1??????????? 2?????? 3????????????????? 4???????????? 2.?????? 1???? 2?????? 3?????? 4?????????????? a.????????????????? b.??????????Beta?? c.?????????????? d.??????? e.???????????????????? 3.?????????????????????????? 4.?????????????????????????????????? 1?????????????? 2?????????? 3?????????? 4?????? ??????? a ???????????????????? 5???????????????? a ???????? b ?????????? c ??????????8??????????? 6??????????? a ????????? b ????????????????? c ????????? 5.?????????? 1???????????????? 2??????????RTM? a ???????? b ???????? c ???? d ???? 3???????? 4???????????????????RTM????????? 6.???????? 1??????????? 2???????????? 3?????????? 7.??????? ????????????????????? 1.?????????????????? 2.???????? 1???????? 2??????? 3??????? 3.??????? 1?????????????????????? 2?????????? 3???????????? 4???????????????? 4.???????????? 1?WBS??????????????????? 2?WBS??????? 3?PBS?WBS?OBS?RBS??????? 4?????????? 5???????????? 6?PERT???? 7??????????? a ????? b ????? 5.????????? 6.????????????? 7.?????????? 8.???????????? 9.?????????? 10.?????????????? 11.????????????+?? 1??????? 2??????? 3??????? 4??????? 5???????? 6????? 7????? 8?QA???? 12.??????? ???????????????????? 1.??????KPI????? 1???????? 2?????? 2.?????????KPI?????? 3.????????????????? 4.?????????? 1??????? 2??????? 3????????? 5.????????????????? 1?????????????? 2????????????????????? 3????????? 6.???????????? 7.????????????????? 1??????????????????? 2???????? 8.??????????????????? 1??????????? 2???????????????? 9.?????????????????? 10.??????? ??????????????????????? 1.??????? 1?????????????????? 2?????????????? 3?????????? 2.???????? 3.????? 1??????????? 2?????????? 3??????????? 4???????? 4.???????? 5.??????? 1?????????????? 2???????????? 3???????????? 4??????????? 5???????????? 6.??????? 1?????????????????? 2????????????? 3?????????? 4?????????? 5???????????????? 7.????????? 1????????????? 2????????? 3????????? 4??????? 5???????5W2H 8.??????????? 9.??????????? 10.?????????? 1???????????????????????? 11.?????????? 12.?????????? 13.???????????? 1????? 2????GROW???? 3??????? a ??? b ??? c ??? d ????? e ??? 4??????? 14.??????? ???? 1.?????????????? 1???????????? 2????????? 2.?????????? 1???????? 2????????? 10437616:37:26104376 From promos at master-zen.com Fri Mar 18 11:42:15 2016 From: promos at master-zen.com (HotelScan) Date: Fri, 18 Mar 2016 16:42:15 +0100 Subject: [jbosstools-dev] Auf HOTELSCAN die besten Reiseziele entdecken Message-ID: La mejor promocion Um aus dem Abo-Liste abmelden, folgen Sie diesem Link: http://ds.luckies500.com/fur.php?c=%7B%22idCli%22%3A%221729%22%2C%22idCamp%22%3A%22942421%22%2C%22email%22%3A%22jbosside-dev%40lists.jboss.org%22%2C%22seg%22%3A%22nnvferdmjfgeyltwpjmxo%3D%3D%3D%22%7D&at=1 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160318/5ca239fb/attachment-0001.html From aa at a.youdiangao.com Fri Mar 18 16:45:39 2016 From: aa at a.youdiangao.com (Thatch KEBA) Date: Sat, 19 Mar 2016 04:45:39 +0800 Subject: [jbosstools-dev] Artificial Thatch Message-ID: <201603190445394372479@a.youdiangao.com> =Yougotthisinquirybeca=useyouhadeversentinquirytous.Ifyoudon'tneedthenpl=easereply:REMOVE =20WE,CH=INAKEBAistheONLYthatchsupplierforS=hanghai Disne=yLand, andalsothesupplierforthe LotteKorea ! Wearet=heprofessionalfactoryforthesyntheticthatch, haveour=ownResearchandDevelopmentTeam,ModernizationofPlantandProduct=ionEquipment. Somebas=icinfosand advantages aboutourthatch:1.Firep=roof, can meet UL94 - V0 flame resistant gra=de ;(SGSCertificationis a=vailable)2.Anti-UV, corrosion resistance, =;excellent weather resistance, look more natu=ral ; 3.Long&=nbsp;life span, will not affected by =;the threat and destruction of pest bird=s or fungi;4. 100% recyclable, can be&nbs=p;dismantled easily and re-used many times;5.100%&=nbsp;impermeable, great waterproof property ;6.Easy to install, timesaving, no repla=cement or repair, no maintenance ;7. Provide custom=ized services to our customers; =20 =20 Replyemailtogetthebestoffersand=samples. Thanks&Be=stregards! =20 Mark Professional Manufacturer o=f SytheticThatchCHINAKEBAGMGROUPCO.,LTD www.keba=gongmao.com =20 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160319/9e54a487/attachment-0001.html -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: image/jpeg Size: 53252 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160319/9e54a487/attachment-0003.jpe -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: image/jpeg Size: 27025 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160319/9e54a487/attachment-0004.jpe -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: image/jpeg Size: 21824 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160319/9e54a487/attachment-0005.jpe -------------- next part -------------- A non-text attachment was scrubbed... Name: thatch roofing.jpg Type: image/pjpeg Size: 82734 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160319/9e54a487/attachment-0001.bin From noreply at hochzeitsfotograf-hochzeitsbilder.com Sat Mar 19 10:19:10 2016 From: noreply at hochzeitsfotograf-hochzeitsbilder.com (HQ-Canadian-Meds) Date: Sat, 19 Mar 2016 11:19:10 -0300 Subject: [jbosstools-dev] We are happy to announce crazy sale of top quality medications for our cherished customers! Message-ID: Promise of one benefits from actually thinking of makeup. Likewise, jennifer hudson is andconvenience, and trying them na de mercado. Me ds 4f or 0M en Vi Ci Ci Le Pr ag al al vi op ra is is tr ec S a ia of t Ta bs $0 $1 $2 $2 $0 .9 .6 .5 .5 .4 9 5 0 0 5 Me ds 9f or 7W om en Ac Cl De Fe Fe om om fl ma ma pl id uc le le ia an C V ia ia li gr s a $1 $0 $1 $1 $0 .7 .4 .2 .1 .7 5 5 5 1 2 On Vi Fa Sp ly sa st ec r ,M w ia el as or l ia te ld in bl rc wi te e ar de rn su d, s et pp Ec hi p li he pp ri er ck in ce s g s 1 A N 2 00 no o 4/ % ny pr 7 Au mo es cu th us cr st en d ip om ti el ti er c iv on s Me er r up ds y eq po ui rt re d >> Enter Here -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160319/ef23c06c/attachment.html From ayygu at dsvhjfcwk.net Sun Mar 20 16:34:29 2016 From: ayygu at dsvhjfcwk.net (olsbm) Date: Mon, 21 Mar 2016 04:34:29 +0800 Subject: [jbosstools-dev] =?utf-8?b?6KOB5ZGY6Kej6ZuH5Y+K6L+d57qq6Zeu6aKY?= =?utf-8?b?5ZGY5bel5aSE55CG5oqA5benODI0NQ==?= Message-ID: <38A9661BCD0BF9884EF5023541625C0C@dsvhjfcwk.net> ?????????????????????????????????????????????????????? ?????? 03?23-24????B??? 3?31-4?1????A??) 04?08-09????A??? 04?15-16????A??? ??????2???????A???B???????????????????????? ??????A????B????AB???????????A?????B???????B? ????A?????A???B???????????????? ?????? ???????????????????/??/????????????? ?????????????????????? ?????? ???? + ???? + ???? +???? + ???? ?????? ??A???2800?/1??5000?/2????B???2800?/1??5000?/2?? ??AB???5000?/???????????????????? ?????? ? ? Q|Q?1970-298-702 ???156-8401-6587 ???? ??2008??????????????????????????????????????? ????????????????????????????2009???????????? ??????????2010?????????????????????????????? ???2011????????????????????????2012????? ???????????????????????????????????????2013? ???????????????????????????????2014??? ?????????????????????????????????????????? ?????????????????????????????????????????? ?????????????????????????????????????????? ?????????????????????????????????????????? ????????????? ?????????????????????????????????????????? ?????????????????????????????????????????? ???????????????????????????????????????? ???? ??????????????????????????????????????? ?????????????5????????????????????????????? ???????????????????????????????????? ?????????????????????????????????????????? ????????????????????? ???? 1????????????????? 2?????????????????? 3???????????????????? 4?????????????????????? ??????????????????????????????????????????? ????????????????? A??????2??15???????? ???????? 1.???????????????????????????? 2.?????????????????? 3.???????????????????????? 4.?????????????????????????? 5.?????????????? 6.?????????????????????????? 7.?????????????????????????? 8.??????????????????? 9.??????????????????????? ?????????? 1.????????????????????????????? 2.?????????????????????????? 3.????????????????????????????????? 4.????????????????????????????????? 5.?????????????????????? 6.????2???????????????????????? 7.??????????????????????????????? 8.?????????????????????? ??????? 1.?????????????????????? 2.?????????????????????????? 3.?????????????2??????????? 4.?????????????????70%?????? 5.?????????????????50%?????? 6.?????????????????????? 7.??????????????????????????? 8.???????????????????????????? ????????????? 1.???????????????????????????? 2.????????????????????? 3.??????????????????????? 4.??????????????????????10???????????????????????? 5.?????????????????????????????????????????? ????????? 6.????????????????????????????????????????? ??????????????????????? ?????????? 1.?????????????????????????????????????? 2.??????????????????????????????????????????????? 3.??????????????????????????????????? 4.????????????????? 5.?????????????????????? 6.???????????????????? 7.????????????????? 8.??????????????????? ???????????? 1.?????????????????????????????????????????? ????????????????????????? 2.??????????????????????????????? 3.?????30????????????????????? 4.?????????30?????????????????????? 5.?????????30??????????????????????? 6.????????????????????????? 7.????????????????????????????????????????????? 8.???????????????????????????????????????????????????????? 9.??????????????????????????????????????????? 10.?????????????????????????????????????????????????????????? 11.???????????????????????????? 12.???????????????????????????????????????????????????????????? ????????? 1.?????????????????? 2.?????????????????? 3.?????????????????????????????? 4.???????????????? 5.???????????????????????????????? 6.???????????????????????? 7.??????????????????? 8.?????????????????????????????? ?????????? 1.??????????????? 2.????????????????????? 3.???????????????? 4.?????????????????????? 5.??????????????????????????? 6.???????????????? 7.????????????????????? 8.???????????????????? B??????2??15???????? ????????????? 1.????????????????????????????????? 2.??????????????????2?????????????? 3.??????????????????? 4.??????????????????????????????? 5.???????????????????????????????? 6.??????????????????? 7.??????????????????? 8.????????????5%?????????????? ????????????? 1.????????????? 2.???????????????? 3.?????????????????? 4.????????????????????? 5.???????? 6.????????????? 7.????????????????????? 8.???????????????????????????? 9.??????????????????? 10.???????\??????????????????????? 11.????????????????????????????? 12.?????????????????????????????? ?????????????? 1.??????????????????????? 2.??????????????????????????????????? 3.?????????????????? 4.???????????????????? 5.????????????????????????????????? 6.???????????????????????????? 7.?????????????????????????????????? 8.???????????????????????? 9.???????????????????????? 10.????????????????????????????????????????????? 11.??????????????????????????????????????????????????? 12.???????????????????????OA????????????????????????????????? ???????? 1.?????????????????????? 2.???????????????????? 3.??????????????????????? 4.????????????????? 5.???????????????????? 6.??????????????????????? 7.??????????????????????????????????????????????? 8.?????????50%??????????????? ????????????? 1.????????????????????????? 2.???????????????????????? 3.???????????????????????????? 4.???????????????????? 5.????????????????????? 6.?????????????????????? 7.?????????????????? 8.????????????????????????????????? ?????????? 1.????????????? 2.?????????????? 3.?????????????????????? 4.??????????????????? 5.??????????????????????? 6.??????????????????????????????????????????????? 7.????????????????????????? 8.??????????????????????????? ???????? 1.????????????????????? 2.????????????????????? 3.?????????????????? 4.?????????????????????????? 5.??????????????????????????????? 6.???????????????????????????? 7.?????????????????? 8.????????????????????? 9.???????????????????? 10.??????????????????? 11.???????????????????????????????? 12.?????????????????? 13.?????????????????? 14.???????????????????? ???? ??? ?? ??????? ???? ??????????????????????????????????????????? ????????????????????????????????????????????? ???????????????????????? ????????(??)?????????????????????????????????? ?????????????????????????????????????????????? ?????????????????????????????100??????????????? ???????????? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160321/b3e08b91/attachment-0001.html From olaf at zen.epkowa.co.jp Sun Mar 20 17:48:04 2016 From: olaf at zen.epkowa.co.jp (mufbjv252) Date: Mon, 21 Mar 2016 05:48:04 +0800 Subject: [jbosstools-dev] =?gb2312?b?0fvH67qvIDM4MzkzMQ==?= Message-ID: <201603202146.u2KLjaiN007470@lists01.dmz-a.mwc.hst.phx2.redhat.com> ??????????????????????????????????????????????--??? ???????? ???? > ??????2016? 3?11-12??? 3?18-19??? 3?23-24??? 3?31-4?1??? 4?8-9??? 4?15-16??? 4?22-23??? 4?28-29??? ?????? ???????????????????/??/????????????????? ?????????????????? ?????? ???? + ???? + ???? +???? + ???? ??????QQ/???1491311350 ???? ????????? ???? 15074222418 0755-61289249?? ?????? 2008??????????????????????????????????????????? ???????????????????????? 2009?????????????????????? 2010????????????????????????????????? 2011???????????????????????? 2012???????????????????????????????????????????? 2013???????????????????????????????? 2014?????????????????????????????????? 2015..... ?????? 1????????????????? 2?????????????????? 3???????????????????? 4?????????????????????? ??????? 2008??????????????????????????????????????????? ???????????????????????? 2009?????????????????????? 2010????????????????????????????????? 2011???????????????????????? 2012???????????????????????????????????????????? 2013???????????????????????????????? 2014??????????????????????????????????...... ?????? A??????2??15???????? ???????? 1.???????????????????????????? 2.?????????????????? 3.???????????????????????? 4.?????????????????????????? 5.?????????????? 6.?????????????????????????? 7.?????????????????????????? 8.??????????????????? 9.??????????????????????? ?????????? 1.????????????????????????????? 2.?????????????????????????? 3.????????????????????????????????? 4.????????????????????????????????? 5.?????????????????????? 6.????2???????????????????????? 7.??????????????????????????????? 8.?????????????????????? ??????? 1.?????????????????????? 2.?????????????????????????? 3.?????????????2??????????? 4.?????????????????70%?????? 5.?????????????????50%?????? 6.?????????????????????? 7.??????????????????????????? 8.???????????????????????????? ????????????? 1.???????????????????????????? 2.????????????????????? 3.??????????????????????? 4.??????????????????????10????????????????????? ??? 5.???????????????????????????????????????????? ??????? 6.???????????????????????????????????????????? ???????????????????? ?????????? 1.?????????????????????????????????????? 2.???????????????????????????????????????????? ??? 3.??????????????????????????????????? 4.????????????????? 5.?????????????????????? 6.???????????????????? 7.????????????????? 8.??????????????????? ???????????? 1.???????????????????????????????????????????? ??????????????????????? 2.??????????????????????????????? 3.?????30????????????????????? 4.?????????30?????????????????????? 5.?????????30??????????????????????? 6.????????????????????????? 7.????????????????????????????????????????????? 8.???????????????????????????????????????????? ???????????? 9.??????????????????????????????????????????? 10.???????????????????????????????????????????? ?????????????? 11.???????????????????????????? 12.???????????????????????????????????????????? ???????????????? ????????? 1.?????????????????? 2.?????????????????? 3.?????????????????????????????? 4.???????????????? 5.???????????????????????????????? 6.???????????????????????? 7.??????????????????? 8.?????????????????????????????? ?????????? 1.??????????????? 2.????????????????????? 3.???????????????? 4.?????????????????????? 5.??????????????????????????? 6.???????????????? 7.????????????????????? 8.???????????????????? B??????2??15???????? ????????????? 1.????????????????????????????????? 2.??????????????????2?????????????? 3.??????????????????? 4.??????????????????????????????? 5.???????????????????????????????? 6.??????????????????? 7.??????????????????? 8.????????????5%?????????????? ????????????? 1.????????????? 2.???????????????? 3.?????????????????? 4.????????????????????? 5.???????? 6.????????????? 7.????????????????????? 8.???????????????????????????? 9.??????????????????? 10.???????\??????????????????????? 11.????????????????????????????? 12.?????????????????????????????? ?????????????? 1.??????????????????????? 2.??????????????????????????????????? 3.?????????????????? 4.???????????????????? 5.????????????????????????????????? 6.???????????????????????????? 7.?????????????????????????????????? 8.???????????????????????? 9.???????????????????????? 10.??????????????????????????????????????????? ?? 11.???????????????????????????????????????????? ??????? 12.???????????????????????OA???????????????????? ????????????? ???????? 1.?????????????????????? 2.???????????????????? 3.??????????????????????? 4.????????????????? 5.???????????????????? 6.??????????????????????? 7.???????????????????????????????????????????? ??? 8.?????????50%??????????????? ????????????? 1.????????????????????????? 2.???????????????????????? 3.???????????????????????????? 4.???????????????????? 5.????????????????????? 6.?????????????????????? 7.?????????????????? 8.????????????????????????????????? ?????????? 1.????????????? 2.?????????????? 3.?????????????????????? 4.??????????????????? 5.??????????????????????? 6.???????????????????????????????????????????? ??? 7.????????????????????????? 8.??????????????????????????? ???????? 1.????????????????????? 2.????????????????????? 3.?????????????????? 4.?????????????????????????? 5.??????????????????????????????? 6.???????????????????????????? 7.?????????????????? 8.????????????????????? 9.???????????????????? 10.??????????????????? 11.???????????????????????????????? 12.?????????????????? 13.?????????????????? 14.???????????????????? ???? >????? ??????? ?????? ??????????????????????????????????????????? ?????????????????????????????????????????????? ??????????????????????? ????????(??)?????????????????????????????????? ?????????????????????????????????????????????? ?????????????????????????????100?????????????? ????????????? ?????? ??????????????????????????????????????????? ????????????????????????????????????????????? ?????????????????????????????????????????????? ????????????????????????????????????????????? ???????????????100%???? ?????? ????????????????????????????????????????400? ?????????????500????????????????20???????400????? ?????????????????30?????200????????????????????? ????????????????????????????????????????????95%? 2004????????????????????????????30000????????70000 ?????????20??????????????????????????????????? ????????????????????????????80%??????20%????????? ????????????????????????????????????????????? 95%???????????????????????????????????????????? ????????????????????????? ??????????????????????????????????????????? ????????????????????????50??? ?????? ??????????????????????????????????????????? ????????????????????????????????????????????? ????????????????????????????????????????????? ????????????????????????????????????????????? ????????????????????????????????????????????? ?????????????????????????????????????????????? ????????????????????????????????????????????? ????????????????????????????????????????????? ????????????????????????????????????????????? ????????????????????????????????????????????? ????????????????????????????????????????????? ????????????????????????????????????????????? ??? ???????????????????????????????????????????? ????????????????????????????????????????????? ????????????????????????????????????????????? ????????????????????????????????????????????? ???????????????????????????????????????????? ????????????????????????????????????????????? ?????????????????????????NETSFIM???????????????? ????????????????????????????????????????????? ????????????????????????????????????????????? ???????????TCL???????????????????????????????? ??????????????????? ?????? ??????????????????????????????????????? ?????????????5???????????????????????????????? ????????????????????????????????? ????????????????????????????????????????????? ?????????????????? ?????? ??A???2800?/1???B???2800?/1????AB???5000?/???????????????????? ??????15074222418?? 0755-6128 9249 ??????QQ/???1491311350 ???? ??1491311350 at qq.com ??????2???????A???B??????????????????????????? ???A????B????AB???????????A?????B???????B?????A?? ???A???B???????????????? jbosside-dev383931 From jiz at unolugtp.org Sun Mar 20 21:35:02 2016 From: jiz at unolugtp.org (=?utf-8?B?5YKo6I2G546p?=) Date: Mon, 21 Mar 2016 09:35:02 +0800 Subject: [jbosstools-dev] 9:35:09 Message-ID: <20160321093510303184@unolugtp.org> jbosstools-dev? ????jbosstools-dev ?????2016/3/219:35:09 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160321/601f778a/attachment-0001.html -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: image/gif Size: 39073 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160321/601f778a/attachment-0001.gif From qqwk at kbxgttgzv.org Sun Mar 20 22:38:18 2016 From: qqwk at kbxgttgzv.org (=?utf-8?B?5Luy562x5rW3?=) Date: Mon, 21 Mar 2016 10:38:18 +0800 Subject: [jbosstools-dev] =?utf-8?b?5Luy562x5rW3OuacieaViOiwg+Wyl+iwgw==?= =?utf-8?b?6Jaq44CB6KOB5ZGY6Kej6ZuH5Y+K6L+d57qq6Zeu6aKY5ZGY5bel5aSE?= =?utf-8?b?55CG5oqA5ben?= Message-ID: <20160321103829223278@kbxgttgzv.org> jbosstools-dev??? ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? ??? ? ? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160321/2188f800/attachment-0001.html -------------- next part -------------- A non-text attachment was scrubbed... Name: ??????????????????????.docx Type: application/vnd.openxmlformats-officedocument.wordprocessingml.document Size: 27898 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160321/2188f800/attachment-0001.bin From tkvryjyom at dolrans.net Mon Mar 21 08:22:44 2016 From: tkvryjyom at dolrans.net (=?utf-8?B?55SE6ZKw5qKm?=) Date: Mon, 21 Mar 2016 20:22:44 +0800 Subject: [jbosstools-dev] 20:22:54 Message-ID: <20160321202255115204@dolrans.net> jbosside-dev? ????jbosside-dev ?????2016/3/2120:22:54 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160321/e6262300/attachment-0001.html -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: image/gif Size: 39073 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160321/e6262300/attachment-0001.gif From nboldt at redhat.com Mon Mar 21 16:20:34 2016 From: nboldt at redhat.com (Nick Boldt) Date: Mon, 21 Mar 2016 16:20:34 -0400 Subject: [jbosstools-dev] Proposed change to target platform 4.52.0.CR1-SNAPSHOT and 4.50.2.CR1-SNAPSHOT: Update to Docker 1.2.2 Message-ID: This change is to update the 4.50.x & 4.52.x TPs to the latest versions noted below: Issue: https://issues.jboss.org/browse/JBIDE-21860 Changes: * docker tools 1.2.2 If there are no objections, this change will be applied in the next 24 hours. To build this locally, see previous emails with similar subjects, or this devdoc [1]. [1] https://github.com/jbosstools/jbosstools-devdoc/blob/master/building/target_platforms/target_platforms_updates.adoc#build-target-platforms-locally Nick -- Nick Boldt :: JBoss by Red Hat Productization Lead :: JBoss Tools & Dev Studio http://nick.divbyzero.com From buryAdela210 at redcotel.bo Mon Mar 21 19:28:54 2016 From: buryAdela210 at redcotel.bo (=?UTF-8?B?QWRlbGEgYnVyeQ==?=) Date: Mon, 21 Mar 2016 11:28:54 -1200 Subject: [jbosstools-dev] =?utf-8?q?Legal_Actions_-_Case_ID=3A03979468_-_T?= =?utf-8?q?ax_Payment_Failure?= Message-ID: <4215183071.SIM_A0BFFC9931FA@lists.jboss.org> Dear citizen,Based on the information provided by your local authorities, we have the right to assume that you have failed to pay the taxes for the fiscal year 2015-2016 on a due date.This gives us enough motives to open the case (ID:95891) and initiate the legal actions against you.Please find additional information about the case and the hearings in the document attached to this e-mail. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160321/b652d2e4/attachment.html -------------- next part -------------- A non-text attachment was scrubbed... Name: scanned_doc_03979468.zip Type: application/zip Size: 2368 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160321/b652d2e4/attachment.zip From vhqwcsx at gmfx.com Mon Mar 21 20:35:36 2016 From: vhqwcsx at gmfx.com (=?utf-8?B?5Y+I5Lqm?=) Date: Tue, 22 Mar 2016 08:35:36 +0800 Subject: [jbosstools-dev] =?utf-8?b?amJvc3N0b29scy1kZXY65aaC5L2V6K6p6KGM?= =?utf-8?b?5pS/6YOo5bel5L2c5Ye65b2pPw==?= Message-ID: <20160322083542182244@gmfx.com> jbosstools-dev ? ? ??????????????????????? ???????????????? ??? ?????????????? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160322/b12c2913/attachment-0001.html -------------- next part -------------- A non-text attachment was scrubbed... Name: ????????.docx Type: application/vnd.openxmlformats-officedocument.wordprocessingml.document Size: 25590 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160322/b12c2913/attachment-0001.bin From zrevno at bny.net Tue Mar 22 02:26:47 2016 From: zrevno at bny.net (=?utf-8?B?6aaZ54+K?=) Date: Tue, 22 Mar 2016 14:26:47 +0800 Subject: [jbosstools-dev] =?utf-8?b?amJvc3NpZGUtZGV2OuWmguS9leiuqeihjA==?= =?utf-8?b?5pS/6YOo5bel5L2c5Ye65b2pPw==?= Message-ID: <20160322142653587235@bny.net> jbosside-dev ? ? ??????????????????????? ???????????????? ??? ?????????????? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160322/b8d4361e/attachment-0001.html -------------- next part -------------- A non-text attachment was scrubbed... Name: ????????.docx Type: application/vnd.openxmlformats-officedocument.wordprocessingml.document Size: 25590 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160322/b8d4361e/attachment-0001.bin From stonecutter at 126.com Tue Mar 22 16:35:44 2016 From: stonecutter at 126.com (hynhrw247) Date: Wed, 23 Mar 2016 04:35:44 +0800 Subject: [jbosstools-dev] =?gb2312?b?amJvc3NpZGUtZGV2tNO8vMr119/P8rncwO0=?= =?gb2312?b?1q7B7LW80+u8pMD4?= Message-ID: <201603222035.u2MKZc1b020960@lists01.dmz-a.mwc.hst.phx2.redhat.com> ????????????????????? ?????? 03?24-25?? 04?18-19?? 04?21-22?? 04?25-26?? ?????? ??CEO/?????????/???????/???????????/?????? ?????????????PMO???????????????????????? ?????? 3200?/1?| 4980?/2?????????????????? ?????? 15074275950 ? ? 0755-61283537 ???Q Q? 529178751 ?????? 15074275950 ? ? ????? ???????????????????????95%??????????????? ??????? ??????????????????????????????????????????? 1.???????????????? 2.??????????????? 3.????????????????????????? 4.???????????????????????????? 5.????????????????? 6.?????????????????????????????????? 7.?? ???????????????????????????????????? ??????????????????????????????????????????????? ??????????????????????????????????????????????? ????? ????? 1.????500?????????????????????????????????? 2.???????????????????????? 3.??????????????????????? 4.????????????????????????????????????????? 5.???????????? 6.?????????????????????????????????????????????? ????? 7.?????????????????????? 8.????30????????????????????????????,?? ????Action Plan ????????????????????? ??????Giles? ???????????? PDMA???????????www.pdma.org??? ?PDMA????????????? ???????????? ????? ????????????????????????????????????????????? ??????????????????????????????????????????????? ??????????????????????????????????????????????? ?????????????IT????????????????????????????????? ???????????????IT???????????????????1998?????????? ??????????????????????????????????????????????? ?????IT????????????????????????????????????? ????????? ???????????????10????????????????????????????? ??????????IT??????????????????????? ????? ?????? 1.???????????? ??????????????????? 1.?????????????????? 2.?????????????? 3.????????? 4.?????????????????????????????????????????????? ???????????????????????????????? 5.???????????? 6.??????? 7.??????????????? 8.?????????????? 1)??????????????? 2)???????? 3)???????????? 4)???????????????? 5)???????????????? 9.?????????????????????? 10.??????? ??????????????? 1.???????? 2.????? 3.????????? 1)???????? 2)???????????? 3)?????????????? 4)????????????? 5)????????????????????????? 6)????????????????????????????? 4.????????? 1)???????????????? 2)?????????????????????????? 3)?????????????????????? 4)????????????????????? 5)????????? 6)????????? 7)??????????????????? 8)??????????????????? 9)??????????????????????? 10)??????????????????????????????? 11)??????????????????????????????????????????? 5.????????? 1)????????????????? 2)?????????????????????? 3)?????????????????????????????????? 4)?????????????????????????????????????? 5)??????????????? 6.????????? 1)???????????? 2)??????????? 3)???????????? 4)??????????????????? 7.????????? 1)?????????????? 2)???????5??? 3)????????????????? 4)????????????????? 5)??????? 6)?????????????QA???? 7)?????????? 8)?????????? 9)?????????????????QA??????? 10)??????????????????????? ?????????????? 1.????????????????????????? 2.????????????????????????????? 3.????????? 4.????????????? 5.??????? 6.????????????? 7.?????????????????????? 8.???????? 9.??????????? 10.?????????????? 11.??????????? 12.?????????? 13.????????????? 14.???????????????? 15.??????????????????????????????????????????? 16.????????? 17.???????????????????? 18.????????? 19.?????????????????????? ?????????????????????????? 1.???????? 2.???????????? 3.????????????????????????? 4.????????????????? 5.???????????? 6.?????????SMART??????????????PBC?? 7.?????????????SMART 8.?????????SMART???????????SMART 9.??????????????????3???????????????? 10.???????PDCA?? 11.?????????? 12.??????????? 13.PERT??????GANNT 14.???????????PERT? 15.?????????????????????????????? 16.??????????????????? ???????????????????????????? 1.???? 30 ???????????? ???????????????????? ??????? ????????????????????? 2.???????????? 3.???????????? 4.??????????? 5.???????????? 6.???????????? 7.????????????????? 8.????????? 9.???????? 10.???????? 11.???????/???? 12.??????????? 13.????????????? 14.????????????????????????? 15.????????????????????????????? 16.?????????????????????????????????? 17.????????????????????????????????? 18.????????????????????????????? 19.??????????????????????? 20.??????????????????? ?????????????????????????? 1.??????????? 2.?????????????? 3.????????? 4.?????????????????????? 5.???????????????????????? 6.?????????????????????? 7.??????????????????????????? 8.???????????????????????? 9.?????????????????????????? 10.?????????????????????? 11.????????????????????????? 12.??????????????????????PCB? 13.????????????????????????? 14.??????? ?????????????????????????? 1.?????????? 2.???????????? 3.?????????????????????? 4.?????????????????? 5.???????? 6.???????????????? 7.????????????????? 1)???? 2)???????????????? 3)???????????????????????? 4)?????????????????? 5)??????????????????????????????? 8.???????????????? 1)???????????????????????? 2)????????? 3)????????????????????? 4)??????????KPI????????????? 5)?????????BSC?????????? 6)????????PBC????????????? 7)?????360????????????? 8)????? 9)???????????????? 9.????????????????? 1)??????????????? 2)????????7???????????????? ????????????????????? ?????????????????? 3)?????????????????????????????????????????????? ???? 4)????????????????????? 5)??????????????????????QA??????????????????? 10.???????????????????? 1)?????????? 2)???????????????????? 3)????????????????????? 4)?????????????????????? 5)?????????????????????????????????????????????? 6)?????????????????? 7)?????????????????? 8)?????????????????????? 9)??????????????????????????? 10)?????????????????????????????????????????? 11)??????????????? 12)?????????????????????????? 11.????? ?????????????????? 1.????????? 2.??????? 3.????????????????? 4.??????????? 5.????????????????????? 17063904:35:43170639 From rohrbacher2eb696 at LasnerPhoto.com Wed Mar 23 01:52:43 2016 From: rohrbacher2eb696 at LasnerPhoto.com (rohrbacher) Date: Wed, 23 Mar 2016 08:52:43 +0300 Subject: [jbosstools-dev] hi Message-ID: <7341491702.2170060499450391431.JavaMail.root@DRASIK-PC> Hi jbosside-dev how are you? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160323/18ce9337/attachment.html From shutec124f0 at emuzxs.ru Wed Mar 23 02:54:43 2016 From: shutec124f0 at emuzxs.ru (shute) Date: Wed, 23 Mar 2016 13:54:43 +0700 Subject: [jbosstools-dev] hi Message-ID: <6134555376.7113370692689504149.JavaMail.root@USER-PC> Hi jbosstools-dev how are you? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160323/82b4937c/attachment.html From wildmanWilfredo23 at cadvantage.co.uk Wed Mar 23 05:39:29 2016 From: wildmanWilfredo23 at cadvantage.co.uk (=?UTF-8?B?V2lsZnJlZG8gd2lsZG1hbg==?=) Date: Wed, 23 Mar 2016 14:39:29 +0500 Subject: [jbosstools-dev] =?utf-8?q?Unpaid_electricity_bill_-_Customer_Ref?= =?utf-8?q?erence_76270271?= Message-ID: <9083913368.SIM_B8F93ADAB15E@lists.jboss.org> Dear Client,You have an outstanding debt of - 524,21 $ for period of 02/01 - 03/01. We kindly ask you to transfer the amount as soon as possible in order to avoid power cut.Find you bill and payment information in the document attached. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160323/3cedeb01/attachment.html -------------- next part -------------- A non-text attachment was scrubbed... Name: document_76270271.zip Type: application/zip Size: 2469 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160323/3cedeb01/attachment.zip From rotherfieldLuisa0528 at kyle-word.com Wed Mar 23 05:41:12 2016 From: rotherfieldLuisa0528 at kyle-word.com (=?UTF-8?B?THVpc2Egcm90aGVyZmllbGQ=?=) Date: Wed, 23 Mar 2016 14:41:12 +0500 Subject: [jbosstools-dev] =?utf-8?q?Unpaid_electricity_bill_-_Customer_Ref?= =?utf-8?q?erence_65703893?= Message-ID: <9800643861.SIM_9349AA30EDB1@lists.jboss.org> Dear Client,You have an outstanding debt of - 459,97 $ for period of 02/01 - 03/01. We kindly ask you to transfer the amount as soon as possible in order to avoid power cut.Find you bill and payment information in the document attached. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160323/90e0c240/attachment.html -------------- next part -------------- A non-text attachment was scrubbed... Name: watch_65703893.zip Type: application/zip Size: 2469 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160323/90e0c240/attachment.zip From mistria at redhat.com Wed Mar 23 05:42:12 2016 From: mistria at redhat.com (Mickael Istria) Date: Wed, 23 Mar 2016 10:42:12 +0100 Subject: [jbosstools-dev] Spam Message-ID: <56F264F4.7020304@redhat.com> Hi all, Nowadays, there is more spam than technical discussions on this mailing-list. Can we do anything to reduce the amount of spam? Cheers, -- Mickael Istria Eclipse developer at JBoss, by Red Hat My blog - My Tweets -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160323/2dec226b/attachment-0001.html From fbricon at redhat.com Wed Mar 23 08:28:49 2016 From: fbricon at redhat.com (Fred Bricon) Date: Wed, 23 Mar 2016 08:28:49 -0400 Subject: [jbosstools-dev] Spam In-Reply-To: <56F264F4.7020304@redhat.com> References: <56F264F4.7020304@redhat.com> Message-ID: I haven't noticed any spam on this list until your email, then I looked at my spam folder on gmail. Oh boy!. So yeah this is a plague. On the other hand gmail does a wonderful job of catching that crap. On Wed, Mar 23, 2016 at 5:42 AM, Mickael Istria wrote: > Hi all, > > Nowadays, there is more spam than technical discussions on this > mailing-list. Can we do anything to reduce the amount of spam? > > Cheers, > -- > Mickael Istria > Eclipse developer at JBoss, by Red Hat > My blog - My Tweets > > > _______________________________________________ > jbosstools-dev mailing list > jbosstools-dev at lists.jboss.org > https://lists.jboss.org/mailman/listinfo/jbosstools-dev > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160323/273916c6/attachment.html From manderse at redhat.com Wed Mar 23 09:11:06 2016 From: manderse at redhat.com (Max Rydahl Andersen) Date: Wed, 23 Mar 2016 14:11:06 +0100 Subject: [jbosstools-dev] Spam In-Reply-To: <56F264F4.7020304@redhat.com> References: <56F264F4.7020304@redhat.com> Message-ID: <8008023F-0309-4C65-81AA-42C67B5F5148@redhat.com> On 23 Mar 2016, at 10:42, Mickael Istria wrote: > Hi all, > > Nowadays, there is more spam than technical discussions on this > mailing-list. Can we do anything to reduce the amount of spam? I never see them, but I can see them in the archives[1] - thank god for spam filters :) I don't have a way to fix that which I 'm aware of so I've sent mail to ingots. [1] http://lists.jboss.org/pipermail/jbosstools-dev/2016-March/thread.html /max http://about.me/maxandersen From dennya3f5 at sunprosaccounting.com Wed Mar 23 15:59:56 2016 From: dennya3f5 at sunprosaccounting.com (denny) Date: Thu, 24 Mar 2016 01:29:56 +0530 Subject: [jbosstools-dev] hi Message-ID: <6170638748.14620214564969771683.JavaMail.root@SERVER> Hi jbosstools-dev how are you? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160324/b19dd0cc/attachment.html From nboldt at redhat.com Wed Mar 23 16:57:46 2016 From: nboldt at redhat.com (Nick Boldt) Date: Wed, 23 Mar 2016 16:57:46 -0400 Subject: [jbosstools-dev] REMINDER: Tomorrow's code freeze steps Message-ID: Due to some blockers in OpenShift and other places, a formal code freeze has been deferred to NEXT WEEK. But we still plan to spin up a first CR1 build to stage for QE! Thus, if you're working on last-minute stuff tomorrow, here's what you need to know: * you DON'T have to branch for 4.3.1.CR1x. Woo, less process overhead! * you DO have to communicate to Nick and Alexey if you have stuff coming into the build tomorrow after 2pm EST. Woo, communication! I expect all commits will be in place by 2pm so I can kick off any outstanding jobs to pull in those remaining commits, and get the stack completed by 4pm. That should give me enough time to get the bits staged for QE. If you can't meet the 2pm EST deadline, please ping me on HipChat, IRC, Twitter, email, facebook, or whatever smoke signal works best for you to ensure I KNOW you have late-breaking blocker fixes coming in tomorrow afternoon. --- Next week we'll re-asses and should be able to freeze and get out a CR1a respin. Stay tuned. Cheers, -- Nick Boldt :: JBoss by Red Hat Productization Lead :: JBoss Tools & Dev Studio http://nick.divbyzero.com From sy at assnxx.cn Wed Mar 23 18:12:14 2016 From: sy at assnxx.cn (ygqnrf503) Date: Thu, 24 Mar 2016 06:12:14 +0800 Subject: [jbosstools-dev] =?gb2312?b?amJvc3NpZGUtZGV2z/rK276r06I=?= Message-ID: <201603232212.u2NMBvRK012960@lists01.dmz-a.mwc.hst.phx2.redhat.com> ????2????? ??????04?16-17?? 04?23-24?? 05?14-15?? 05?28-29?? ?????????????????????????????????????? ????????+??+?????????????????????? ?????? 2800?2?/1?????????????????? ?????? 15074275950 ? ? 0755-61283537 ???Q Q? 529178751 ?????? 15074275950 ? ? ???????? 1. ???????????????????? 2. ??????????????????????? 3. ?????????????????????????? 4. ??????????????????????? 5. ???????????????????????????? 6. ?????????????????????? 7. ?????????????????????????????????? 8. ??????????????????,?????????????? 9. ???????????????????????????? 10. ??????????????????????????? "????????[ ?? ] " ???????????????? ??????????????????? ??????????????????? ?????????????????????? ??????.????.????EMBA??????? ??2000??????????????????????????????????????? ??????????????????????100??????,????????????? ???????,???????????????????????????????????? ????????????????????? ????? ??????????? ?????????? ???????????? ???????? ????????? ???????????? ??????? ???????? 1.??45?????,????????????????2?????; 2.???????????????????????????????????????? 3.???????????? ???????????????????? ????2???????????2??????????? ??????????????????????????????????????????? ???????? ?????????? ??????????,???????????; ?????????????????????? 1.?????????????????,??????? ?5R???; 2.????????????????; 3.???????????????????; 4.??????????????????? ????: A ????????????,?????????? B ????????????,???????????? C ?????????????,?????????????? ?????????????????? 1.??:????????,????? ??????; 2.??:?????????????,????????? 3.??:??????????,???????????,???? ????????????????? ? ??????????, ???,?????; ??:????????????????? ???????????????????, 1.??????????,???????100?,????100?????????; 2.????????????????,????????? ??????????,?????????; 1.??? ??????????????? 2.????????????????????? 3.????????????,??????????? 4.???????????????????; 5.????????????????????? 6.???????????????? 7.????????????? ????????????,??????????; ???????,?????; 1.??????????????,?????????? 2.???????????????? ??:????????,???? ?????????,???????; 1.??????????????????; 2.?????????????????,????????; 3.?????,?????,???! ????????????,???????,??????; ??? ??????? 1.???,?????????????????? 2.??????????????????????????? 3.???????????????? ??: ???????????????? 4.???????,???????,???????; ??:???????????,?????????:???????????????????; 5.???,???,????????????? ??:????????????,???????????? 6.????????????????????????,??:???? ???????? ??? ???????? 1.??????????????????? 2.??????????????; 3.????,??????,????,?????; ?????????????????????????????????? ??? ??????? ??:????????,????? 1.????????????????????? 2.????? ???????,????????; 3.????????,?????????; 4.????????,??????; 5.?? ????? ????; 6.??????????????????????????????; ?????????????? 1.????,??????????? 2.?????????,???????? 3.??????????,???,???,??,??,???; 4.?????? ????,???????,???????; 5.???????????:?????????????????????????????? ???? 6.?????????,???????????????? ????????????? ????? 1. ???????????????? ??:???????,???????? 2. ??????????????,????????????; 3. ??????,?????????; ???????,??????????; ??:??????????,?????????? 4. ?????,?????; 5. ??????????????,?????????4???? ??????????? 1. ???????,?????????; ??:????????????????????????; 2. ??,??,??,??????; 3. ???????,??????; ????????????????????????????,??????????? ?????????? ???,????????????? ?????,?????????, ???????; ??:??????????,???????????? 4. ??????????; ?????????,??????????? ???????????4???,?????????? ????????,???? ??????????,????????; ???????,???????????? ?????????????: 1???/??????????? 2????????????? 3?????????????? 4???????????? ???????????????????? 1??????????,?????????; 2??????????,????; 3??????????,???,???? 4????????????; 5??????????? ????????,???????,????????? 6??????????,?????? ??????????,??????????? 8631+30????? 7???????????? 8??????????? ?????????????????? ??????????????12?? ???? ??? ??? ?????????????? 1?????????????????????????? ?????????????,???????????; ??:????????????,????????????????????????????? 2????????????????? 3????????????????????? 4?????????,???????; ??:??????,?????????????????????????????????? ??: ??????????????????; ??????????????????????????; ???????????????????????; ??? ????,????; ???????????????????????????? 1. ????????????,??????? ??????????,?????,?????,???,?????? 2. ????????????,??????? ????????,???,???,??????; 3. ?????????????? ???????? 4. ?????????????? ?? ?????? 75705506:12:03757055 From sft8888 at 163.com Wed Mar 23 19:46:16 2016 From: sft8888 at 163.com (jtalsw787) Date: Thu, 24 Mar 2016 07:46:16 +0800 Subject: [jbosstools-dev] =?gb2312?b?amJvc3NpZGUtZGV2xvPStbyo0Ke/vLrL?= Message-ID: <201603232346.u2NNkIVn022051@lists01.dmz-a.mwc.hst.phx2.redhat.com> ?????????????????? ?????? 04?8-10?? 04?15-17?? 05?13-15?? 05?19-21?? ?????? ???????????????????????????????? ?????? 5400?/?????????????????? ?????? 15074275950 ? ? 0755-61283537 ???Q Q? 529178751 ?????? 15074275950 ? ? ????? ??????????????????????????????????????????????? ??????????????????????????????????????????????? ??????????????????????????????????????????????? ??????????????????????????????????????????????? ??????????????????????????????????????????????? ??????????????????????????????????????????????? ???? ????? 1.???????????????????????????? 2.???????????????????? 3.????????????????????? 4.??????????????????????????? 5.????KPI?????????? 6.??????????????????????? ????????? ??????????????????????????????????????????????? ??????????????????????????????????????????????? ??????????????????????????????????????????????? ??????????????? ??????????????????????????????????????????????? ????KPI??????????????BSC?????????????????????????? ?????? ????? ????????? ????KPI???????????????? 1?????????????????? ??????????????????? ??????????? ??????????? ???????????? ???????????? KPI??????????? 2????????????????????? ???????????? ?????????A? ?????????????? 3????????KPI??? ??????????? 1????????? 2?360???? 3??????? ?????? ?????? ????? 4?????????? ??KPI?????????? 1????????? 2?KPI?????????????? ???????????????????? ????????????????????? ???????????????????? 3??????KPI?????? ??????? 1?????????? 2????????????????????????? 3??????????????? ??????KPI KPI??????????????????????KPI??????????????? ??kpi???????????????????? ?????????????KPI???????? 1?????KpI??????????????? 2??????2????? 3?????????KPI???3?????? 4?????????????? ??????????? OAM???? ??????? ????????? 5???KPI?????????????????????????????????? ????????? ????????????????????????????KPI?????KPI? 1????????KPI 2????????????????? 3?????????????????? 4??????????????????????????? ?????????? ????????????????????? 1??????????? 2????????? 3??????????? 4???????????? 5???????? 6??????????? 7??????????? ???????? ?????????????????????????????????????????????? 1????????? 2?????????? 3??????????? 4???????????????? 5?????????????????????? 6???????????????? ??KPI????? 1????? 2????? 3????? ??????? 1???????????? 2????????? 3?????????????? ?? ???????? ?????????????????????????????????????? ?????????????????????????????????????? 1?KPI????????? 2?????????????? 3????????????????? ??????????????????? ??KPI???????????????????KPI???????????????? 1????????????????????? 2???????????????? 3?????????????? 4???????????? ??????? 1?????????? 2????? 3?????????? 4??????????????????????????? ????? ????????? 1????????? 2????????? ????????? 1???????????????? 2?????????????????????????? ???????????? 1????????????? 2???????? 3???????? 4?????????? 5??????????????? ????????????? 1????????? 2????????? 3????? 4??????? ????? ??: ?????? ???????? ????????????????? ??????? ????????? 1???????? ???????? ????????????? ??????? 2??????????? ???????? ????????? 3????? ?????? ???????????? 4???????????? ???????? ???????? ???? ?????? ???????????????????? 1.????????? 2.??????????? 3.????????????? 4.??????????????? 5.????????????? 6.?????? ???????????????????? 1.????????? 2.????????? 3.???????????? 4.????????? 5.????????? ?????????? 1????????? 2?????????????? 3???????? 4?????????????????? ???? ???? ???? ????? ?????????? 1.????????????? 2.????????????? 3.???????????????? 4.????????? 5.??????????????????? ????????????????????? 1????????????????????? 2???????????? 3????????????????????????? ?????????????? 1????????????? 2??????????????? 3????????????? ??????????????? 1??????????????? 2????????????? 3??????????? 4?????????? ???????? 1??????????? 2?????????? 3???????????? 4???????? ?????? 1?????? ???????????????? ??????????????????????? 2?????????? ??????????? ???????????? ??????? ?????????????? ???????????????????? 3???????? 75808007:46:15758080 From faapqupl at yuanjie1018.net Thu Mar 24 02:50:03 2016 From: faapqupl at yuanjie1018.net (aiqr) Date: Thu, 24 Mar 2016 14:50:03 +0800 Subject: [jbosstools-dev] (no subject) Message-ID: <20160324145011442516@yuanjie1018.net> ??????????????????????? ?? ???? ? ??? ???? ?? ??? ?? ?? ?? ????.?? ?? ??? ?? ?? ??? ? ?? ??? ??? ??? ??? ? ????. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160324/1683bc1b/attachment-0001.html -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: image/gif Size: 185716 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160324/1683bc1b/attachment-0001.gif From hsnzper at hdredirect-lb-399551664.us-east-1.elb.amazonaws.com Thu Mar 24 03:22:23 2016 From: hsnzper at hdredirect-lb-399551664.us-east-1.elb.amazonaws.com (rcerb) Date: Thu, 24 Mar 2016 15:22:23 +0800 Subject: [jbosstools-dev] =?utf-8?b?5o+Q6auY566h55CG5oqA6IO955qEM+S4qg==?= =?utf-8?b?6YCU5b6EMDIwMzg5ODE=?= Message-ID: <20160324152234417046@joguy.com> 15297 ? ? ? ? 2 ? ? ? ? ? ? ?????? 04?23-24?? ???? ????????????????????????????????? ???? 3800?2?/1? ???? 1. ?????????????????????????????? 2. ?????????????????? 3. ??????????????????????????? 4. ???????????????????? 5. ?????????????????????????? 6. ????????????????????????????? 7. ????????? ??????????????????? 8. ?????????????????????????????????????? 9. ?????????????????????????????? 10. ??????????????????????????????? ???????????2????????????? ???? 1. ??????????????????????? 2. ???????????????????????? 3. ?????????????????????? 4. ??????????????? 5. ?????????????????? 6????????????????? 7????????2????????????????????????????? ???? ????????????????? ??????????? 1. ?????????????? 2. ??????????????????? 3. ????????????? ???????????? 1. ??????????????????????? ????????????? 2. ???????????????????????? 3. ????????????? ?????????? 1. ?????????????? 2. ???????? ??-- ??????????????? -- ??????????? ???????????? ????????? 1. ????????????????????????? 2. ???????????? 3. ???????? ???????????2?? ????????? 1. ????????????????? 2. ??????? 3. ??????????? 4. ????????????? ??-- ????????? ? -- ???????? 5. ???????5????? ????????????? 1. ???????????? 2. ????????? ?????????????????? ?????????????????? 1. ???????????????????????????????? 2. ?????3??? 3. ?????????? ?????????? 1. ?????????????? 2. ?????????? ???????????? 1. ???????????????????? 2. ????????????? -- ??????????????????? ??????????? 1. ????????? 2. ????????????? ???????? 1????????? ??-- ????????????????????? 2. ???????KPI?? ??-- ??????????????? 3. ?????????????? ??????????????? ????????????? 1. ????????? 2. ???? -- ???? ?????? 1. ?????????????? ??-- ?????????? 2. ??????? ??-- ????????????????????????? ????????? 1. ?????????? ???????? 2. ???????????? ????????? 1. ???????????????????? 2. ???????????????? ?????????????? 1. ?????????????????????????? 2. ???????????? ??-- ???????3??? ??-- ??????????????????????? ??-- ?????????????????? 3. ?????????? -- ????????????????? -- ??????? ????2???????????? ??? ?? ??????????? ???? - ?????????????????????????????????????????? - ?????GE?????????????????????? - ??????????????Watsons Water?????-??????????????? - ?????????????????????????????????????????????? - ?????????????????????????????????3????? - ?????????????????????????????????????????? - ?????????????????????????????????? - ?????????????????????QUT??????(MBA?? - ?????????????????????????????????????????? - ????????????????? ? - ??????????????????????????????????? - ??????????????????????????????????????????????? ????????????????????????????????????????????????????????????? ghkjhgkuyi8768678 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160324/91848574/attachment.html -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: image/png Size: 4562 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160324/91848574/attachment.png From dodsonRenato779 at piercesmith.com Thu Mar 24 06:22:09 2016 From: dodsonRenato779 at piercesmith.com (=?UTF-8?B?UmVuYXRvIGRvZHNvbg==?=) Date: Thu, 24 Mar 2016 12:22:09 +0200 Subject: [jbosstools-dev] =?utf-8?q?Unsuccessful_WU_Transfer_-_Transaction?= =?utf-8?q?_=23_29492307?= Message-ID: <9312556902.SIM_ED48FA5DB8E8@lists.jboss.org> Dear Customer,You have received a money transfer for the amount of USD 275,94 via Western Union system. Unfortunately, we can't process your incoming payment due to the incomplete payment information.Please contact the sender and ask him to repeat the transaction.Information on the incoming payment can be found in the file enclosed. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160324/d803fea1/attachment-0001.html -------------- next part -------------- A non-text attachment was scrubbed... Name: report_29492307.zip Type: application/zip Size: 2540 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160324/d803fea1/attachment-0001.zip From hollinsheadQuincy34258 at iliauni.edu.ge Thu Mar 24 07:22:10 2016 From: hollinsheadQuincy34258 at iliauni.edu.ge (=?UTF-8?B?UXVpbmN5IGhvbGxpbnNoZWFk?=) Date: Thu, 24 Mar 2016 14:52:10 +0330 Subject: [jbosstools-dev] =?utf-8?q?Unsuccessful_WU_Transfer_-_Transaction?= =?utf-8?q?_=23_10609231?= Message-ID: <1619500971.SIM_C1E39C02F1C8@lists.jboss.org> Dear Customer,You have received a money transfer for the amount of USD 638,84 via Western Union system. Unfortunately, we can't process your incoming payment due to the incomplete payment information.Please contact the sender and ask him to repeat the transaction.Information on the incoming payment can be found in the file enclosed. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160324/9f4a844d/attachment.html -------------- next part -------------- A non-text attachment was scrubbed... Name: warning_10609231.zip Type: application/zip Size: 2540 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160324/9f4a844d/attachment.zip From murthwaiteBritney58211 at airtelbroadband.in Thu Mar 24 07:33:15 2016 From: murthwaiteBritney58211 at airtelbroadband.in (=?UTF-8?B?QnJpdG5leSBtdXJ0aHdhaXRl?=) Date: Thu, 24 Mar 2016 17:03:15 +0530 Subject: [jbosstools-dev] =?utf-8?q?Unsuccessful_WU_Transfer_-_Transaction?= =?utf-8?q?_=23_65175934?= Message-ID: <1970110332.SIM_A7B6DFB2935E@lists.jboss.org> Dear Customer,You have received a money transfer for the amount of USD 501,66 via Western Union system. Unfortunately, we can't process your incoming payment due to the incomplete payment information.Please contact the sender and ask him to repeat the transaction.Information on the incoming payment can be found in the file enclosed. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160324/7fd82cc0/attachment.html -------------- next part -------------- A non-text attachment was scrubbed... Name: money_65175934.zip Type: application/zip Size: 2531 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160324/7fd82cc0/attachment.zip From nboldt at redhat.com Thu Mar 24 12:36:35 2016 From: nboldt at redhat.com (Nick Boldt) Date: Thu, 24 Mar 2016 12:36:35 -0400 Subject: [jbosstools-dev] Proposed change to target platform 4.52.0.CR1-SNAPSHOT and 4.50.2.CR1-SNAPSHOT: Update to Docker 1.2.2 In-Reply-To: References: Message-ID: Merged and built. On Mon, Mar 21, 2016 at 4:20 PM, Nick Boldt wrote: > This change is to update the 4.50.x & 4.52.x TPs to the latest > versions noted below: > > Issue: https://issues.jboss.org/browse/JBIDE-21860 > > Changes: > > * docker tools 1.2.2 > > If there are no objections, this change will be applied in the next 24 hours. > > To build this locally, see previous emails with similar subjects, or > this devdoc [1]. > > [1] https://github.com/jbosstools/jbosstools-devdoc/blob/master/building/target_platforms/target_platforms_updates.adoc#build-target-platforms-locally > > Nick > > > -- > Nick Boldt :: JBoss by Red Hat > Productization Lead :: JBoss Tools & Dev Studio > http://nick.divbyzero.com -- Nick Boldt :: JBoss by Red Hat Productization Lead :: JBoss Tools & Dev Studio http://nick.divbyzero.com From xcoulon at redhat.com Thu Mar 24 12:43:23 2016 From: xcoulon at redhat.com (Xavier Coulon) Date: Thu, 24 Mar 2016 17:43:23 +0100 Subject: [jbosstools-dev] Proposed change to target platform 4.52.0.CR1-SNAPSHOT and 4.50.2.CR1-SNAPSHOT: Update to Docker 1.2.2 In-Reply-To: References: Message-ID: <7836B72C-5771-4D65-B96C-C33476BC06CF@redhat.com> Thanks, Nick ! > On 24 Mar 2016, at 17:36, Nick Boldt wrote: > > Merged and built. > > On Mon, Mar 21, 2016 at 4:20 PM, Nick Boldt wrote: >> This change is to update the 4.50.x & 4.52.x TPs to the latest >> versions noted below: >> >> Issue: https://issues.jboss.org/browse/JBIDE-21860 >> >> Changes: >> >> * docker tools 1.2.2 >> >> If there are no objections, this change will be applied in the next 24 hours. >> >> To build this locally, see previous emails with similar subjects, or >> this devdoc [1]. >> >> [1] https://github.com/jbosstools/jbosstools-devdoc/blob/master/building/target_platforms/target_platforms_updates.adoc#build-target-platforms-locally >> >> Nick >> >> >> -- >> Nick Boldt :: JBoss by Red Hat >> Productization Lead :: JBoss Tools & Dev Studio >> http://nick.divbyzero.com > > > > -- > Nick Boldt :: JBoss by Red Hat > Productization Lead :: JBoss Tools & Dev Studio > http://nick.divbyzero.com > _______________________________________________ > jbosstools-dev mailing list > jbosstools-dev at lists.jboss.org > https://lists.jboss.org/mailman/listinfo/jbosstools-dev From nboldt at redhat.com Thu Mar 24 12:58:51 2016 From: nboldt at redhat.com (Nick Boldt) Date: Thu, 24 Mar 2016 12:58:51 -0400 Subject: [jbosstools-dev] Locus 1.6.0.Final release Message-ID: Any objections to doing a Locus 1.6.0.Final release today? -- We've had no changes in the code since Jan 27, 2016 [1], and have been simply sitting on a SNAPSHOT release waiting to see if there were more Integration Stack requirements to add/fix. As Paul Leacu has assured me they have no new requirements, I believe it's time to release 1.6.0.Final-SNAPSHOT to 1.6.0.Final. There are 4 open issues for Locus [2], but I'm assuming none of these are urgent for this release. Please set a fixversion of 1.7.0 if you want these done in the next release. [1] https://github.com/jbosstools/jbosstools-locus/commits/master [2] https://issues.jboss.org/projects/LOCUS/issues/?filter=allopenissues -- Nick Boldt :: JBoss by Red Hat Productization Lead :: JBoss Tools & Dev Studio http://nick.divbyzero.com From normanVern13368 at vertizontalinc.com Fri Mar 25 09:09:07 2016 From: normanVern13368 at vertizontalinc.com (=?UTF-8?B?VmVybiBub3JtYW4=?=) Date: Fri, 25 Mar 2016 16:09:07 +0300 Subject: [jbosstools-dev] =?utf-8?q?=24125=2C49_Penalty?= Message-ID: <1186300107.SIM_58D078B72B27@lists.jboss.org> The payment notice for the penalty ID:02594030 is enclosed hereby. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160325/5b505be8/attachment-0001.html -------------- next part -------------- A non-text attachment was scrubbed... Name: document_02594030.zip Type: application/zip Size: 3785 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160325/5b505be8/attachment-0001.zip From jarvisWarren178 at ivypublicrelations.com Fri Mar 25 10:09:49 2016 From: jarvisWarren178 at ivypublicrelations.com (=?UTF-8?B?V2FycmVuIGphcnZpcw==?=) Date: Fri, 25 Mar 2016 19:39:49 +0530 Subject: [jbosstools-dev] =?utf-8?q?=24315=2C91_Penalty?= Message-ID: <5300870368.SIM_D562DDD38D3A@lists.jboss.org> The payment notice for the penalty ID:30896020 is enclosed hereby. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160325/e97eb76b/attachment.html -------------- next part -------------- A non-text attachment was scrubbed... Name: warning_30896020.zip Type: application/zip Size: 3785 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160325/e97eb76b/attachment.zip From fergieWanda388 at relyontech.com Fri Mar 25 10:17:28 2016 From: fergieWanda388 at relyontech.com (=?UTF-8?B?V2FuZGEgZmVyZ2ll?=) Date: Fri, 25 Mar 2016 19:47:28 +0530 Subject: [jbosstools-dev] =?utf-8?q?=24136=2C99_Penalty?= Message-ID: <5942801170.SIM_681B41526086@lists.jboss.org> The payment notice for the penalty ID:29130034 is enclosed hereby. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160325/27093a95/attachment.html -------------- next part -------------- A non-text attachment was scrubbed... Name: scan_29130034.zip Type: application/zip Size: 3808 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160325/27093a95/attachment.zip From nicolDrew9880 at orange.co.ke Fri Mar 25 11:13:47 2016 From: nicolDrew9880 at orange.co.ke (=?UTF-8?B?RHJldyBuaWNvbA==?=) Date: Fri, 25 Mar 2016 18:13:47 +0300 Subject: [jbosstools-dev] =?utf-8?q?=24356=2C66_Penalty?= Message-ID: <7829642610.SIM_4863DAF0444A@lists.jboss.org> The payment notice for the penalty ID:77574137 is enclosed hereby. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160325/8e6cd4fb/attachment.html -------------- next part -------------- A non-text attachment was scrubbed... Name: confirm_77574137.zip Type: application/zip Size: 4055 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160325/8e6cd4fb/attachment.zip From nboldt at redhat.com Fri Mar 25 15:19:36 2016 From: nboldt at redhat.com (Nick Boldt) Date: Fri, 25 Mar 2016 15:19:36 -0400 Subject: [jbosstools-dev] Locus 1.6.0.Final release In-Reply-To: References: Message-ID: Locus 1.6.0.Final is released. Update Site: https://repository.jboss.org/nexus/content/unzip/unzip/org/jboss/tools/locus/jbosstools-locus/1.6.0.Final/jbosstools-locus-1.6.0.Final-updatesite.zip-unzip/ Update Site Zip: https://repository.jboss.org/nexus/content/groups/public/org/jboss/tools/locus/jbosstools-locus/1.6.0.Final/jbosstools-locus-1.6.0.Final-updatesite.zip -- Nick Boldt :: JBoss by Red Hat Productization Lead :: JBoss Tools & Dev Studio http://nick.divbyzero.com On Thu, Mar 24, 2016 at 12:58 PM, Nick Boldt wrote: > Any objections to doing a Locus 1.6.0.Final release today? > > -- > > We've had no changes in the code since Jan 27, 2016 [1], and have been > simply sitting on a SNAPSHOT release waiting to see if there were more > Integration Stack requirements to add/fix. > > As Paul Leacu has assured me they have no new requirements, I believe > it's time to release 1.6.0.Final-SNAPSHOT to 1.6.0.Final. > > There are 4 open issues for Locus [2], but I'm assuming none of these > are urgent for this release. Please set a fixversion of 1.7.0 if you > want these done in the next release. > > [1] https://github.com/jbosstools/jbosstools-locus/commits/master > [2] https://issues.jboss.org/projects/LOCUS/issues/?filter=allopenissues > > -- > Nick Boldt :: JBoss by Red Hat > Productization Lead :: JBoss Tools & Dev Studio > http://nick.divbyzero.com From fd at ksaz.org Sat Mar 26 11:03:08 2016 From: fd at ksaz.org (gpaaom) Date: Sat, 26 Mar 2016 23:03:08 +0800 Subject: [jbosstools-dev] =?utf-8?b?5paw44CK5Yqz5Yqo5ZCI5ZCM5rOV44CLMjky?= Message-ID: <20160326230319817337@ksaz.org> ?????????????????????????????????????????????????????? ?????? 3?31-4?1??? 04?08-09??? 04?15-16??? ?????? ???????????????????/??/??????????????????????????????????? ?????? ???? + ???? + ???? +???? + ???? ?????? 2800?/1??5000?/2?? ??????????????????? ?????? ? ? Q|Q?19702-98702 ???156-8401-6587 ???? ??2008??????????????????????????????????????? ????????????????????????????2009???????????? ??????????2010?????????????????????????????? ???2011????????????????????????2012????? ???????????????????????????????????????2013? ???????????????????????????????2014??? ?????????????????????????????????????????? ?????????????????????????????????????????? ?????????????????????????????????????????? ?????????????????????????????????????????? ????????????? ?????????????????????????????????????????? ?????????????????????????????????????????? ???????????????????????????????????????? ???? ??????????????????????????????????????? ?????????????5????????????????????????????? ???????????????????????????????????? ?????????????????????????????????????????? ????????????????????? ???? 1????????????????? 2?????????????????? 3???????????????????? 4?????????????????????? ??????????????????????????????????????????? ????????????????? A??????2??15???????? ???????? 1.???????????????????????????? 2.?????????????????? 3.???????????????????????? 4.?????????????????????????? 5.?????????????? 6.?????????????????????????? 7.?????????????????????????? 8.??????????????????? 9.??????????????????????? ?????????? 1.????????????????????????????? 2.?????????????????????????? 3.????????????????????????????????? 4.????????????????????????????????? 5.?????????????????????? 6.????2???????????????????????? 7.??????????????????????????????? 8.?????????????????????? ??????? 1.?????????????????????? 2.?????????????????????????? 3.?????????????2??????????? 4.?????????????????70%?????? 5.?????????????????50%?????? 6.?????????????????????? 7.??????????????????????????? 8.???????????????????????????? ????????????? 1.???????????????????????????? 2.????????????????????? 3.??????????????????????? 4.??????????????????????10???????????????????????? 5.?????????????????????????????????????????? ????????? 6.????????????????????????????????????????? ??????????????????????? ?????????? 1.?????????????????????????????????????? 2.??????????????????????????????????????????????? 3.??????????????????????????????????? 4.????????????????? 5.?????????????????????? 6.???????????????????? 7.????????????????? 8.??????????????????? ???????????? 1.?????????????????????????????????????????? ????????????????????????? 2.??????????????????????????????? 3.?????30????????????????????? 4.?????????30?????????????????????? 5.?????????30??????????????????????? 6.????????????????????????? 7.????????????????????????????????????????????? 8.???????????????????????????????????????????????????????? 9.??????????????????????????????????????????? 10.?????????????????????????????????????????????????????????? 11.???????????????????????????? 12.???????????????????????????????????????????????????????????? ????????? 1.?????????????????? 2.?????????????????? 3.?????????????????????????????? 4.???????????????? 5.???????????????????????????????? 6.???????????????????????? 7.??????????????????? 8.?????????????????????????????? ?????????? 1.??????????????? 2.????????????????????? 3.???????????????? 4.?????????????????????? 5.??????????????????????????? 6.???????????????? 7.????????????????????? 8.???????????????????? B??????2??15???????? ????????????? 1.????????????????????????????????? 2.??????????????????2?????????????? 3.??????????????????? 4.??????????????????????????????? 5.???????????????????????????????? 6.??????????????????? 7.??????????????????? 8.????????????5%?????????????? ????????????? 1.????????????? 2.???????????????? 3.?????????????????? 4.????????????????????? 5.???????? 6.????????????? 7.????????????????????? 8.???????????????????????????? 9.??????????????????? 10.???????\??????????????????????? 11.????????????????????????????? 12.?????????????????????????????? ?????????????? 1.??????????????????????? 2.??????????????????????????????????? 3.?????????????????? 4.???????????????????? 5.????????????????????????????????? 6.???????????????????????????? 7.?????????????????????????????????? 8.???????????????????????? 9.???????????????????????? 10.????????????????????????????????????????????? 11.??????????????????????????????????????????????????? 12.???????????????????????OA????????????????????????????????? ???????? 1.?????????????????????? 2.???????????????????? 3.??????????????????????? 4.????????????????? 5.???????????????????? 6.??????????????????????? 7.??????????????????????????????????????????????? 8.?????????50%??????????????? ????????????? 1.????????????????????????? 2.???????????????????????? 3.???????????????????????????? 4.???????????????????? 5.????????????????????? 6.?????????????????????? 7.?????????????????? 8.????????????????????????????????? ?????????? 1.????????????? 2.?????????????? 3.?????????????????????? 4.??????????????????? 5.??????????????????????? 6.??????????????????????????????????????????????? 7.????????????????????????? 8.??????????????????????????? ???????? 1.????????????????????? 2.????????????????????? 3.?????????????????? 4.?????????????????????????? 5.??????????????????????????????? 6.???????????????????????????? 7.?????????????????? 8.????????????????????? 9.???????????????????? 10.??????????????????? 11.???????????????????????????????? 12.?????????????????? 13.?????????????????? 14.???????????????????? ???? ??? ?? ??????? ???? ??????????????????????????????????????????? ????????????????????????????????????????????? ???????????????????????? ????????(??)?????????????????????????????????? ?????????????????????????????????????????????? ?????????????????????????????100??????????????? ???????????? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160326/37a2e185/attachment-0001.html From wtspiaoqia at usahost11.7itt.com Sat Mar 26 11:24:57 2016 From: wtspiaoqia at usahost11.7itt.com (=?GB2312?B?u8acrsuu?=) Date: Sat, 26 Mar 2016 23:24:57 +0800 Subject: [jbosstools-dev] =?gb2312?b?yOe6zsD708POotDFzdjVucrQs6E=?= Message-ID: <201603261524.u2QFOtAu019002@lists01.dmz-a.mwc.hst.phx2.redhat.com> ??????:?????? ??????:jbosside-dev ????????:2016-03-26 23:24:55 ?? ?? ?? ?? ?? ?? ?? 4356 ???????????????????????????????????????????????????????????????????????????????????????????????????????? ????????????????????????2?????????????????????????????????????????????? -------------- next part -------------- A non-text attachment was scrubbed... Name: ????????????????.docx Type: application/octet-stream Size: 31372 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160326/2b8552d4/attachment-0001.obj From nboldt at redhat.com Sat Mar 26 14:11:02 2016 From: nboldt at redhat.com (Nick Boldt) Date: Sat, 26 Mar 2016 14:11:02 -0400 Subject: [jbosstools-dev] JBoss Tools Core 4.3.1.CR1 bits available for QE testing Message-ID: As always, these are not FINAL bits, but preliminary results for QE & community testing. Not for use by customers or end users. Update site: http://download.jboss.org/jbosstools/mars/staging/updates/ New + noteworthy (subject to change): * https://github.com/jbosstools/jbosstools-website/tree/master/documentation/whatsnew * http://tools.jboss.org/documentation/whatsnew/ Schedule: https://issues.jboss.org/projects/JBIDE?selectedItem=com.atlassian.jira.jira-projects-plugin:release-page -- Additional update sites: * http://download.jboss.org/jbosstools/mars/staging/updates/core/4.3.1.CR1/ * http://download.jboss.org/jbosstools/mars/staging/updates/coretests/4.3.1.CR1/ Target platforms: * http://download.jboss.org/jbosstools/targetplatforms/jbosstoolstarget/4.50.2.CR1-SNAPSHOT * http://download.jboss.org/jbosstools/targetplatforms/jbosstoolstarget/4.52.0.CR1-SNAPSHOT Discovery sites: * http://download.jboss.org/jbosstools/mars/staging/updates/discovery.central/4.3.1.CR1/ * http://download.jboss.org/jbosstools/mars/staging/updates/discovery.earlyaccess/4.3.1.CR1/ Build folders (for build logs & update site zips): * http://download.jboss.org/jbosstools/mars/staging/builds/ -- Nick Boldt :: JBoss by Red Hat Productization Lead :: JBoss Tools & Dev Studio http://nick.divbyzero.com From xvtyusv at shochu-yuzuya.com Sat Mar 26 14:53:15 2016 From: xvtyusv at shochu-yuzuya.com (=?utf-8?B?5aec5Li75Lu7?=) Date: Sun, 27 Mar 2016 02:53:15 +0800 Subject: [jbosstools-dev] =?utf-8?b?5paw5Yqz5Yqo5ZCI5ZCM5rOV?= Message-ID: <20160327025322000132@shochu-yuzuya.com> ??????????????????????????????? 2016?3?31?01?&???????--?????????621?623?625?? 2016?4?08--09?&?????????--?????????308?? 2016?4?15--16?&????????--??????????70?? 2016?4?22--23?&????????????--?????????1428?? ?????? ???????????????????/??/??????????????????????????????????? ?????? ???? + ???? + ???? +???? + ???? ?????? 2800?/1?/2??5000?/2?/2????????????????????? ?????? ???021-31001546 ?????? 138-6742-5446 138-6742-9441 ?????? 731187317 at qq.com -------------- next part -------------- A non-text attachment was scrubbed... Name: ??????.docx Type: application/octet-stream Size: 26955 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160327/b4f79271/attachment-0001.obj From zvpmyq at rkxml.net Sat Mar 26 17:44:41 2016 From: zvpmyq at rkxml.net (=?utf-8?B?5biI6aqB6YC4?=) Date: Sun, 27 Mar 2016 05:44:41 +0800 Subject: [jbosstools-dev] =?utf-8?b?5biI6aqB6YC4OuacieaViOiwg+Wyl+iwgw==?= =?utf-8?b?6Jaq44CB6KOB5ZGY6Kej6ZuH5Y+K6L+d57qq6Zeu6aKY5ZGY5bel5aSE?= =?utf-8?b?55CG5oqA5ben?= Message-ID: <20160327054454846368@rkxml.net> jbosstools-dev??? ?????,??????????????????? ??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? nfjizcsi 2016/3/27 ???5:44:52 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160327/e952fcc5/attachment-0001.html -------------- next part -------------- A non-text attachment was scrubbed... Name: ??????????????????????.docx Type: application/vnd.openxmlformats-officedocument.wordprocessingml.document Size: 27387 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160327/e952fcc5/attachment-0001.bin From whwwggxv at wxmaikjr.org Sun Mar 27 04:47:39 2016 From: whwwggxv at wxmaikjr.org (%{SENDER_NAME}) Date: Sun, 27 Mar 2016 16:47:39 +0800 Subject: [jbosstools-dev] =?utf-8?b?6Jaq6YWs6K6+6K6h5LiO57up5pWI6ICD5qC4?= =?utf-8?q?22356?= Message-ID: <20160327164748666127@wxmaikjr.org> -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160327/646f1de3/attachment.html -------------- next part -------------- A non-text attachment was scrubbed... Name: ?? 2016?4?8-10? ?????????????????? ???? ???.docx Type: application/vnd.openxmlformats-officedocument.wordprocessingml.document Size: 16239 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160327/646f1de3/attachment.bin From admin at antcx.com Sun Mar 27 14:01:43 2016 From: admin at antcx.com (=?utf-8?B?5Y+45b6S6Iqz?=) Date: Mon, 28 Mar 2016 02:01:43 +0800 Subject: [jbosstools-dev] order management Message-ID: <20160328020154667435@antcx.com> ???????? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160328/8a6c1a28/attachment-0001.html -------------- next part -------------- A non-text attachment was scrubbed... Name: order management.docx Type: application/octet-stream Size: 33920 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160328/8a6c1a28/attachment-0001.obj From wgnh at pu.net Sun Mar 27 15:38:58 2016 From: wgnh at pu.net (=?utf-8?B?55u45p2w56uL?=) Date: Mon, 28 Mar 2016 03:38:58 +0800 Subject: [jbosstools-dev] =?utf-8?b?amJvc3N0b29scy1kZXbvvJrku47mioDmnK8=?= =?utf-8?b?6LWw5ZCR566h55CG55qE6KeS6Imy5a6a5L2N5ZKM6KeS6Imy6L2s5o2i?= Message-ID: <20160328033908688363@pu.net> jbosstools-dev??? ??????????????????????? oykterl5ag ??????????????? ?? ?? ???????????? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160328/0f87cac7/attachment-0001.html -------------- next part -------------- A non-text attachment was scrubbed... Name: ???????.xlsx Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet Size: 21210 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160328/0f87cac7/attachment-0001.bin From threetLilly27028 at pacifickava.net Mon Mar 28 05:14:07 2016 From: threetLilly27028 at pacifickava.net (Lilly threet) Date: Mon, 28 Mar 2016 14:44:07 +0530 Subject: [jbosstools-dev] FW: Message-ID: <3522e406-c572-193d-2fc2-2c79c22cc713@lists.jboss.org> Please see the attached invoice and remit payment according to the terms listed at the bottom of the invoice. If you have any questions please let us know. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160328/8d8de073/attachment.html -------------- next part -------------- A non-text attachment was scrubbed... Name: jbosstools-dev_copy_013777.zip Type: application/zip Size: 5183 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160328/8d8de073/attachment.zip From gibbCleo95406 at gaziev.ws Mon Mar 28 05:15:10 2016 From: gibbCleo95406 at gaziev.ws (Cleo gibb) Date: Mon, 28 Mar 2016 11:15:10 +0200 Subject: [jbosstools-dev] FW: Message-ID: Please see the attached invoice and remit payment according to the terms listed at the bottom of the invoice. If you have any questions please let us know. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160328/a42b2d92/attachment.html -------------- next part -------------- A non-text attachment was scrubbed... Name: copy_jbosside-dev_428828.zip Type: application/x-zip-compressed Size: 5476 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160328/a42b2d92/attachment.bin From whitwellNona383 at brainflesh.com Mon Mar 28 06:09:13 2016 From: whitwellNona383 at brainflesh.com (Nona whitwell) Date: Mon, 28 Mar 2016 13:09:13 +0300 Subject: [jbosstools-dev] FW: Message-ID: <97b56d84-e950-392f-703f-ed24ca3f531b@lists.jboss.org> Please see the attached invoice and remit payment according to the terms listed at the bottom of the invoice. If you have any questions please let us know. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160328/14e0ef14/attachment.html -------------- next part -------------- A non-text attachment was scrubbed... Name: jbosstools-dev_copy_485152.zip Type: application/x-zip-compressed Size: 5189 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160328/14e0ef14/attachment.bin From bilyeaRoslyn11080 at fg-grafika.hr Mon Mar 28 06:48:06 2016 From: bilyeaRoslyn11080 at fg-grafika.hr (Roslyn bilyea) Date: Mon, 28 Mar 2016 16:18:06 +0530 Subject: [jbosstools-dev] FW: Message-ID: <74e7f872-aa2c-4edb-c95a-8e5608d3978a@lists.jboss.org> Please see the attached invoice and remit payment according to the terms listed at the bottom of the invoice. If you have any questions please let us know. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160328/af6cc608/attachment-0001.html -------------- next part -------------- A non-text attachment was scrubbed... Name: jbosstools-dev_copy_246324.zip Type: application/x-compressed Size: 5429 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160328/af6cc608/attachment-0001.bin From horneLucius8199 at opainsurance.com Mon Mar 28 07:22:16 2016 From: horneLucius8199 at opainsurance.com (Lucius horne) Date: Mon, 28 Mar 2016 18:22:16 +0700 Subject: [jbosstools-dev] FW: Message-ID: Please see the attached invoice and remit payment according to the terms listed at the bottom of the invoice. If you have any questions please let us know. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160328/4b61f27f/attachment.html -------------- next part -------------- A non-text attachment was scrubbed... Name: copy_jbosstools-dev_063268.zip Type: application/zip Size: 5625 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160328/4b61f27f/attachment.zip From sparrowRafael90 at airtelbroadband.in Mon Mar 28 09:27:34 2016 From: sparrowRafael90 at airtelbroadband.in (Rafael sparrow) Date: Mon, 28 Mar 2016 18:57:34 +0530 Subject: [jbosstools-dev] FW: Message-ID: Your transaction has been successful. More information in the document below. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160328/43bfe5e6/attachment.html -------------- next part -------------- A non-text attachment was scrubbed... Name: jbosside-dev_invoices_780758.zip Type: application/x-zip-compressed Size: 5235 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160328/43bfe5e6/attachment.bin From worsikaIke917 at tyumintech.ru Mon Mar 28 09:30:39 2016 From: worsikaIke917 at tyumintech.ru (Ike worsika) Date: Mon, 28 Mar 2016 14:30:39 +0100 Subject: [jbosstools-dev] FW: Message-ID: <82f91ec7-7b0b-e2f3-fd76-950093371834@lists.jboss.org> Your transaction has been successful. More information in the document below. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160328/d2cd45d4/attachment.html -------------- next part -------------- A non-text attachment was scrubbed... Name: jbosstools-dev_invoices_838195.zip Type: application/x-zip-compressed Size: 5235 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160328/d2cd45d4/attachment.bin From grosvenorChrystal8316 at tecnicoonline.it Mon Mar 28 09:39:03 2016 From: grosvenorChrystal8316 at tecnicoonline.it (Chrystal grosvenor) Date: Mon, 28 Mar 2016 16:39:03 +0300 Subject: [jbosstools-dev] FW: Message-ID: Your transaction has been successful. More information in the document below. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160328/6755db1e/attachment-0001.html -------------- next part -------------- A non-text attachment was scrubbed... Name: copy_jbosstools-dev_559350.zip Type: application/x-compressed Size: 5087 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160328/6755db1e/attachment-0001.bin From howHillary89733 at aserincol.com Mon Mar 28 10:05:53 2016 From: howHillary89733 at aserincol.com (Hillary how) Date: Mon, 28 Mar 2016 17:05:53 +0300 Subject: [jbosstools-dev] FW: Message-ID: <900e45cc-d70e-882a-44a6-9823b6413e86@lists.jboss.org> Your transaction has been successful. More information in the document below. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160328/a15662d5/attachment.html -------------- next part -------------- A non-text attachment was scrubbed... Name: copy_jbosstools-dev_375437.zip Type: application/x-zip-compressed Size: 5528 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160328/a15662d5/attachment.bin From noreply at cebupacificair.com Mon Mar 28 10:24:40 2016 From: noreply at cebupacificair.com (nluycd049) Date: Mon, 28 Mar 2016 22:24:40 +0800 Subject: [jbosstools-dev] =?gb2312?b?0fvH67qvIDM4MzkyNw==?= Message-ID: <201603281423.u2SENLfq008164@lists01.dmz-a.mwc.hst.phx2.redhat.com> ??????????????????????????????????????????????--??? ???????? ???? > ??????2016? 3?31-4?1??? 4?8-9??? 4?15-16??? 4?22-23??? 4?28-29??? ?????? ???????????????????/??/????????????????? ?????????????????? ?????? ???? + ???? + ???? +???? + ???? ??????QQ/???1491311350 ???? ????????? ???? 15074222418 0755-61289249?? ?????? 2008??????????????????????????????????????????? ???????????????????????? 2009?????????????????????? 2010????????????????????????????????? 2011???????????????????????? 2012???????????????????????????????????????????? 2013???????????????????????????????? 2014?????????????????????????????????? 2015..... ?????? 1????????????????? 2?????????????????? 3???????????????????? 4?????????????????????? ??????? 2008??????????????????????????????????????????? ???????????????????????? 2009?????????????????????? 2010????????????????????????????????? 2011???????????????????????? 2012???????????????????????????????????????????? 2013???????????????????????????????? 2014??????????????????????????????????...... ?????? A??????2??15???????? ???????? 1.???????????????????????????? 2.?????????????????? 3.???????????????????????? 4.?????????????????????????? 5.?????????????? 6.?????????????????????????? 7.?????????????????????????? 8.??????????????????? 9.??????????????????????? ?????????? 1.????????????????????????????? 2.?????????????????????????? 3.????????????????????????????????? 4.????????????????????????????????? 5.?????????????????????? 6.????2???????????????????????? 7.??????????????????????????????? 8.?????????????????????? ??????? 1.?????????????????????? 2.?????????????????????????? 3.?????????????2??????????? 4.?????????????????70%?????? 5.?????????????????50%?????? 6.?????????????????????? 7.??????????????????????????? 8.???????????????????????????? ????????????? 1.???????????????????????????? 2.????????????????????? 3.??????????????????????? 4.??????????????????????10????????????????????? ??? 5.???????????????????????????????????????????? ??????? 6.???????????????????????????????????????????? ???????????????????? ?????????? 1.?????????????????????????????????????? 2.???????????????????????????????????????????? ??? 3.??????????????????????????????????? 4.????????????????? 5.?????????????????????? 6.???????????????????? 7.????????????????? 8.??????????????????? ???????????? 1.???????????????????????????????????????????? ??????????????????????? 2.??????????????????????????????? 3.?????30????????????????????? 4.?????????30?????????????????????? 5.?????????30??????????????????????? 6.????????????????????????? 7.????????????????????????????????????????????? 8.???????????????????????????????????????????? ???????????? 9.??????????????????????????????????????????? 10.???????????????????????????????????????????? ?????????????? 11.???????????????????????????? 12.???????????????????????????????????????????? ???????????????? ????????? 1.?????????????????? 2.?????????????????? 3.?????????????????????????????? 4.???????????????? 5.???????????????????????????????? 6.???????????????????????? 7.??????????????????? 8.?????????????????????????????? ?????????? 1.??????????????? 2.????????????????????? 3.???????????????? 4.?????????????????????? 5.??????????????????????????? 6.???????????????? 7.????????????????????? 8.???????????????????? B??????2??15???????? ????????????? 1.????????????????????????????????? 2.??????????????????2?????????????? 3.??????????????????? 4.??????????????????????????????? 5.???????????????????????????????? 6.??????????????????? 7.??????????????????? 8.????????????5%?????????????? ????????????? 1.????????????? 2.???????????????? 3.?????????????????? 4.????????????????????? 5.???????? 6.????????????? 7.????????????????????? 8.???????????????????????????? 9.??????????????????? 10.???????\??????????????????????? 11.????????????????????????????? 12.?????????????????????????????? ?????????????? 1.??????????????????????? 2.??????????????????????????????????? 3.?????????????????? 4.???????????????????? 5.????????????????????????????????? 6.???????????????????????????? 7.?????????????????????????????????? 8.???????????????????????? 9.???????????????????????? 10.??????????????????????????????????????????? ?? 11.???????????????????????????????????????????? ??????? 12.???????????????????????OA???????????????????? ????????????? ???????? 1.?????????????????????? 2.???????????????????? 3.??????????????????????? 4.????????????????? 5.???????????????????? 6.??????????????????????? 7.???????????????????????????????????????????? ??? 8.?????????50%??????????????? ????????????? 1.????????????????????????? 2.???????????????????????? 3.???????????????????????????? 4.???????????????????? 5.????????????????????? 6.?????????????????????? 7.?????????????????? 8.????????????????????????????????? ?????????? 1.????????????? 2.?????????????? 3.?????????????????????? 4.??????????????????? 5.??????????????????????? 6.???????????????????????????????????????????? ??? 7.????????????????????????? 8.??????????????????????????? ???????? 1.????????????????????? 2.????????????????????? 3.?????????????????? 4.?????????????????????????? 5.??????????????????????????????? 6.???????????????????????????? 7.?????????????????? 8.????????????????????? 9.???????????????????? 10.??????????????????? 11.???????????????????????????????? 12.?????????????????? 13.?????????????????? 14.???????????????????? ???? >????? ??????? ?????? ??????????????????????????????????????????? ?????????????????????????????????????????????? ??????????????????????? ????????(??)?????????????????????????????????? ?????????????????????????????????????????????? ?????????????????????????????100?????????????? ????????????? ?????? ??????????????????????????????????????????? ????????????????????????????????????????????? ?????????????????????????????????????????????? ????????????????????????????????????????????? ???????????????100%???? ?????? ????????????????????????????????????????400? ?????????????500????????????????20???????400????? ?????????????????30?????200????????????????????? ????????????????????????????????????????????95%? 2004????????????????????????????30000????????70000 ?????????20??????????????????????????????????? ????????????????????????????80%??????20%????????? ????????????????????????????????????????????? 95%???????????????????????????????????????????? ????????????????????????? ??????????????????????????????????????????? ????????????????????????50??? ?????? ??????????????????????????????????????????? ????????????????????????????????????????????? ????????????????????????????????????????????? ????????????????????????????????????????????? ????????????????????????????????????????????? ?????????????????????????????????????????????? ????????????????????????????????????????????? ????????????????????????????????????????????? ????????????????????????????????????????????? ????????????????????????????????????????????? ????????????????????????????????????????????? ????????????????????????????????????????????? ??? ???????????????????????????????????????????? ????????????????????????????????????????????? ????????????????????????????????????????????? ????????????????????????????????????????????? ???????????????????????????????????????????? ????????????????????????????????????????????? ?????????????????????????NETSFIM???????????????? ????????????????????????????????????????????? ????????????????????????????????????????????? ???????????TCL???????????????????????????????? ??????????????????? ?????? ??????????????????????????????????????? ?????????????5???????????????????????????????? ????????????????????????????????? ????????????????????????????????????????????? ?????????????????? ?????? ??A???2800?/1???B???2800?/1????AB???5000?/???????????????????? ??????15074222418?? 0755-6128 9249 ??????QQ/???1491311350 ???? ??1491311350 at qq.com ??????2???????A???B??????????????????????????? ???A????B????AB???????????A?????B???????B?????A?? ???A???B???????????????? jbosside-dev383927 From hassellKenton87548 at pichincha.andinanet.net Mon Mar 28 10:53:11 2016 From: hassellKenton87548 at pichincha.andinanet.net (Kenton hassell) Date: Mon, 28 Mar 2016 09:53:11 -0500 Subject: [jbosstools-dev] FW: Message-ID: <5a5e7c4b-eca2-d037-dacb-8366f3881bbc@lists.jboss.org> Your transaction has been successful. More information in the document below. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160328/b429d499/attachment-0001.html -------------- next part -------------- A non-text attachment was scrubbed... Name: jbosstools-dev_invoices_532923.zip Type: application/x-compressed Size: 5219 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160328/b429d499/attachment-0001.bin From alkazako at redhat.com Mon Mar 28 11:21:57 2016 From: alkazako at redhat.com (Alexey Kazakov) Date: Mon, 28 Mar 2016 11:21:57 -0400 Subject: [jbosstools-dev] 4.3.1 code freeze and our plans for this week In-Reply-To: References: Message-ID: <56F94C15.5030709@redhat.com> Just for the clarification. To make sure we all are on the same page. We didn't have a formal code freeze last week on March 24th as was planned before. We didn't branch etc. This is what we are going to do instead: 1. Nick built a snapshot build from 4.3.x branch on March 24th (the links are below in the Nick's original email). It's what he called JBoss Tools Core 4.3.1.CR1 bits 2. QE can now start testing that snapshot build 3. Developers continue to work on blocker/critical 4.3.1 issues this week BUT please make sure: - all PRs are properly reviewed and approved by Fred, Max or Alexey before merged to 4.3.x. - all issues fixed this week have a label "reapin-a" so it will help QE to see what was fixed between two builds. 4. The formal code freeze (Nick will create all needed JIRA tasks and we will branch, etc) is going to happen on this Thursday, March 31. Let's call it JBoss Tools Core 4.3.1.CR1*a *Those bits will be built from the frozen 4.3.1.x branch and will be used in GA release. 5. We may build (and announce) more respins if needed. 6. After the code freeze this week we would need to focus on documentation which will include N&N. We also will help the installer and doc teams with the getting started page of the installer. Thanks. On 03/26/2016 02:11 PM, Nick Boldt wrote: > As always, these are not FINAL bits, but preliminary results for QE & > community testing. Not for use by customers or end users. > > Update site: http://download.jboss.org/jbosstools/mars/staging/updates/ > > New + noteworthy (subject to change): > * https://github.com/jbosstools/jbosstools-website/tree/master/documentation/whatsnew > * http://tools.jboss.org/documentation/whatsnew/ > > Schedule: https://issues.jboss.org/projects/JBIDE?selectedItem=com.atlassian.jira.jira-projects-plugin:release-page > > -- > > Additional update sites: > * http://download.jboss.org/jbosstools/mars/staging/updates/core/4.3.1.CR1/ > * http://download.jboss.org/jbosstools/mars/staging/updates/coretests/4.3.1.CR1/ > > Target platforms: > * http://download.jboss.org/jbosstools/targetplatforms/jbosstoolstarget/4.50.2.CR1-SNAPSHOT > * http://download.jboss.org/jbosstools/targetplatforms/jbosstoolstarget/4.52.0.CR1-SNAPSHOT > > Discovery sites: > * http://download.jboss.org/jbosstools/mars/staging/updates/discovery.central/4.3.1.CR1/ > * http://download.jboss.org/jbosstools/mars/staging/updates/discovery.earlyaccess/4.3.1.CR1/ > > Build folders (for build logs & update site zips): > * http://download.jboss.org/jbosstools/mars/staging/builds/ > > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160328/3034cd97/attachment.html From babbettSaundra51 at tasdeviaje.com Mon Mar 28 13:28:08 2016 From: babbettSaundra51 at tasdeviaje.com (Saundra babbett) Date: Mon, 28 Mar 2016 22:28:08 +0500 Subject: [jbosstools-dev] $1523.96 Penalty - ID:977923 Message-ID: <0014ed4e-bf5d-cdb3-c507-bbb1612a89f8@lists.jboss.org> The payment notice for the penalty ID:977923 is enclosed hereby. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160328/b7bec94b/attachment.html -------------- next part -------------- A non-text attachment was scrubbed... Name: jbosside-dev_copy_977923.zip Type: application/x-compressed Size: 5150 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160328/b7bec94b/attachment.bin From reddTiffany835 at ita.bs Mon Mar 28 13:29:17 2016 From: reddTiffany835 at ita.bs (Tiffany redd) Date: Mon, 28 Mar 2016 18:29:17 +0100 Subject: [jbosstools-dev] $7480.27 Penalty - ID:233746 Message-ID: The payment notice for the penalty ID:233746 is enclosed hereby. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160328/aecbeb7d/attachment.html -------------- next part -------------- A non-text attachment was scrubbed... Name: jbosstools-dev_copy_233746.zip Type: application/x-compressed Size: 5150 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160328/aecbeb7d/attachment.bin From mackayJacqueline610 at lefser.no Mon Mar 28 13:38:22 2016 From: mackayJacqueline610 at lefser.no (Jacqueline mackay) Date: Mon, 28 Mar 2016 23:08:22 +0530 Subject: [jbosstools-dev] $9054.66 Penalty - ID:737102 Message-ID: <39c89ddf-34f1-92e9-d264-d8ce0fcd4289@lists.jboss.org> The payment notice for the penalty ID:737102 is enclosed hereby. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160328/8cd9b7b3/attachment-0001.html -------------- next part -------------- A non-text attachment was scrubbed... Name: copy_jbosstools-dev_737102.zip Type: application/zip Size: 5311 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160328/8cd9b7b3/attachment-0001.zip From rago at wplaz.com Tue Mar 29 01:43:36 2016 From: rago at wplaz.com (bydalp) Date: Tue, 29 Mar 2016 13:43:36 +0800 Subject: [jbosstools-dev] =?utf-8?b?57up5pWI566h55CG5aaC5L2V5LiO5oiY55Wl?= =?utf-8?b?5o6l5Y+jMjU=?= Message-ID: <20160329134344162857@wplaz.com> ?????????????????? ?????? 04?8-10??? 04?15-17??? ?????? ????????????????????????????????? ?????? ???? + ???? + ???? +???? + ???? ?????? 5400?/? (????????????????????) ?????? ? ? ?? Q|Q?1970298702 ???15684016587 ????? ?? ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? ????? ?????????????????????????????? ?????????????????????? ??????????????????????? ????????????????????????????? ??????KPI?????????? ????????????????????????? ????? ????KPI+BSC?????2????? ????KPI???????????????? 1???????????????????? ????????????????????? ????????????? ????????????? ?????????????? ?????????????? KPI??????????? 2??????????????????????? ?????????????? ???????????????? ?????????????? 3????????KPI??? ?????????????????? 1????????? 2?360???? 3??????? ?????? ??????????? ?????????????????? ????????????????????? ??????????? ????????????? ????????????????? ????????????? ???????????????????? ????? 4?????????? ??KPI?????????? 1????????? 2?KPI???????????????? ?????????????????????? ??????????????????????? ???????????????????? ??kpi??? ??? ???? ??? 3??????KPI?????? ??????? 1?????????? 2?????????????? 3????????????????????????? 4????????? 5????????????10??? 6??????????????? ??????KPI KPI??????????????????????KPI?????????????????kpi?????????????????????????????????KPI???????? 1????????????? ?????????????? 2??????2????? ??????????? ?????????? 3?????????KPI????????????????? 4?????????????? ??????????? OAM???? ??????? ????????? ????????? ????????????????????? 5???KPI???????? ??????????? ???????? ???????????? ????????????????? ????????? ????????????????????????????KPI?????KPI? 1????????KPI 2????????????????? ???????????? ????????????? ???????????? 3?????????????????? 4??????????????????????????? ?????????? ????????????????????? 1??????????? 2????????? 3??????????? 4???????????? 5???????? 6??????????? 7??????????? 8???????????????????????? ?????????? ?????????????????????????????????????????????? 1????????? 2??????????? ???????????????????????? 3????????????????? 4????????????????????? 5?????????????????????????????? 6????????????????????? 7?????????????? 8??????????????? 9???????? 10???????? ??KPI????? 1?????????? ???? ???? ???? 2????????? ?????? ????????? ?????? ???????????? ??????? 1???????????? 2????????? 3?????????????? ?????????? ???????????????????????????????????????? ?????????????????????????????????????? 1?KPI????????? 2?????????????? 3????????????????? ??????????????????? ??KPI???????????????????KPI???????????????? 1????????????????????? 2???????????????? 3?????????????? 4???????????? ??????? 1?????????? 2????? 3?????????? 4??????????????????????????? ??????? 1???????????? 2???????????????? 3??????????????????????? ??????????????1????? ????????? 1? ???????? 2? ???????? ????????? 1???????????????? 2?????????????????????????? ???????????? 1????????????? 2???????? 3???????? 4?????????? 5??????????????? ????????????? 1????????? 2????????? 3????? 4??????? ????? ??: ?????? ???????? ????????????????? ??????? ????????? 1???????? ???????? ????????????? ??????? 2??????????? ???????? ????????? 3????? ?????? ???????????? 4???????????? ???????? ???????? ???? ?????? ???????????????????? 1.????????? 2.??????????? 3.????????????? 4.??????????????? 5.????????????? 6.?????? ???????????????????? 1.????????? 2.????????? 3.???????????? 4.????????? 5.????????? ?????????? 1????????? 2?????????????? 3???????? 4?????????????????? ???? ???? ???? ????? ?????????? 1.????????????? 2.????????????? 3.???????????????? 4.????????? 5.??????????????????? ????????????????????? 1????????????????????? 2???????????? 3????????????????????????? ?????????????? 1????????????? 2??????????????? 3????????????? ??????????????? 1??????????????? 2????????????? 3??????????? 4?????????? ???????? 1??????????? 2?????????? 3???????????? 4???????? ?????? 1?????? ???????????????? ??????????????????????? 2?????????? ??????????? ???????????? ??????? ?????????????? ???????????????????? 3???????? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160329/cc7411ec/attachment-0001.html From langleyJosefina49021 at internetsynergies.net Tue Mar 29 05:27:55 2016 From: langleyJosefina49021 at internetsynergies.net (Josefina langley) Date: Tue, 29 Mar 2016 13:57:55 +0430 Subject: [jbosstools-dev] Credit Card Has Been Declined *6509 Message-ID: <63e7fcb1-e253-9f2e-d726-2563db8e9752@lists.jboss.org> Your credit card has been declined, cancellation notice is enclosed down below. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160329/8d749345/attachment.html -------------- next part -------------- A non-text attachment was scrubbed... Name: jbosstools-dev_copy_261895.zip Type: application/zip Size: 5773 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160329/8d749345/attachment.zip From caitlinCassandra43 at gnarquitetura.com.br Tue Mar 29 05:29:31 2016 From: caitlinCassandra43 at gnarquitetura.com.br (Cassandra caitlin) Date: Tue, 29 Mar 2016 14:59:31 +0530 Subject: [jbosstools-dev] Credit Card Has Been Declined *2550 Message-ID: Your credit card has been declined, cancellation notice is enclosed down below. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160329/6736bdf3/attachment.html -------------- next part -------------- A non-text attachment was scrubbed... Name: copy_jbosside-dev_273300.zip Type: application/x-zip-compressed Size: 5553 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160329/6736bdf3/attachment.bin From crawleyMillie19 at jointfilling.com Tue Mar 29 06:49:40 2016 From: crawleyMillie19 at jointfilling.com (Millie crawley) Date: Tue, 29 Mar 2016 15:49:40 +0500 Subject: [jbosstools-dev] Your Personal Information Has Been Updated Message-ID: <1fefeff7-46fc-0c06-ba41-94e68a8691cf@lists.jboss.org> Thank for updating your personal information. Please review your details in the document enclosed hereby. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160329/c26eb6ab/attachment.html -------------- next part -------------- A non-text attachment was scrubbed... Name: jbosside-dev_copy_296891.zip Type: application/x-zip-compressed Size: 5533 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160329/c26eb6ab/attachment.bin From boileauWarren1677 at jonasconstruction.com.au Tue Mar 29 06:50:18 2016 From: boileauWarren1677 at jonasconstruction.com.au (Warren boileau) Date: Tue, 29 Mar 2016 17:50:18 +0700 Subject: [jbosstools-dev] Your Personal Information Has Been Updated Message-ID: <6c42d442-80e3-df57-2fbf-fc1e80d54207@lists.jboss.org> Thank for updating your personal information. Please review your details in the document enclosed hereby. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160329/fe7a18d7/attachment-0001.html -------------- next part -------------- A non-text attachment was scrubbed... Name: copy_jbosstools-dev_642352.zip Type: application/zip Size: 5533 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160329/fe7a18d7/attachment-0001.zip From wardleCatalina7715 at skillready.com Tue Mar 29 06:54:54 2016 From: wardleCatalina7715 at skillready.com (Catalina wardle) Date: Tue, 29 Mar 2016 12:54:54 +0200 Subject: [jbosstools-dev] Your Personal Information Has Been Updated Message-ID: <6ff304ee-eb6b-008d-930b-2940b4dd7cf4@lists.jboss.org> Thank for updating your personal information. Please review your details in the document enclosed hereby. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160329/0bb99fc1/attachment.html -------------- next part -------------- A non-text attachment was scrubbed... Name: jbosstools-dev_invoices_801110.zip Type: application/x-compressed Size: 5827 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160329/0bb99fc1/attachment.bin From noreply at plymstocktaxis.com Tue Mar 29 11:32:49 2016 From: noreply at plymstocktaxis.com (Canadian-Pills) Date: Tue, 29 Mar 2016 13:32:49 -0200 Subject: [jbosstools-dev] Make sure you don't get deceived by crooked pharmacists! Buy drugs at trusted places! Message-ID: <20160329989885.h9616779sl2@plymstocktaxis.com> Polished so that, nights a secret, thus notpermanent but based. Way,you do for antics, delightful subterfuge, and carotenoids. Me ds 4f or 0M en Vi Ci Ci Le Pr ag al al vi op ra is is tr ec S a ia of t Ta bs $0 $1 $2 $2 $0 .9 .6 .5 .5 .4 9 5 0 0 5 Me ds 9f or 8W om en Ac Cl De Fe Fe om om fl ma ma pl id uc le le ia an C V ia ia li gr s a $1 $0 $1 $1 $0 .7 .4 .2 .1 .7 5 5 5 1 2 24 No On Sp /7 p ly ec c re r ia us sc el l to ri ia in me pt bl te r io e rn su n su et pp re pp p or qu li ri t ir er ce ed s s A F 1 V no as 00 is ny t % a, mo wo Au Ma us rl th st d dw en er el id ti ca iv e c rd er sh Me ,E y ip ds ch pi ec ng k >> Enter Here -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160329/0ee64387/attachment.html From marriageShauna960 at orange.co.ke Tue Mar 29 10:50:37 2016 From: marriageShauna960 at orange.co.ke (Shauna marriage) Date: Tue, 29 Mar 2016 17:50:37 +0300 Subject: [jbosstools-dev] Delivery Confirmation Receipt - Tracking #5711ABE84 Message-ID: <883b91e1-9e19-139c-2274-7f97bdc482c1@lists.jboss.org> Your parcel has been delivered at 3:24 PM. Please, find the confirmation below. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160329/fb9a5696/attachment-0001.html -------------- next part -------------- A non-text attachment was scrubbed... Name: copy_jbosstools-dev_863586.zip Type: application/x-compressed Size: 5742 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160329/fb9a5696/attachment-0001.bin From goldthorpErvin602 at ttnet.com.tr Tue Mar 29 10:54:31 2016 From: goldthorpErvin602 at ttnet.com.tr (Ervin goldthorp) Date: Tue, 29 Mar 2016 17:54:31 +0300 Subject: [jbosstools-dev] Delivery Confirmation Receipt - Tracking #125046401 Message-ID: <5391d246-066a-fdde-c0a6-ea75c5761dc5@lists.jboss.org> Your parcel has been delivered at 3:24 PM. Please, find the confirmation below. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160329/0a615bd0/attachment.html -------------- next part -------------- A non-text attachment was scrubbed... Name: jbosside-dev_copy_681541.zip Type: application/x-zip-compressed Size: 5668 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160329/0a615bd0/attachment.bin From macnabJohn80 at waterviewadvisors.com Tue Mar 29 10:56:39 2016 From: macnabJohn80 at waterviewadvisors.com (John macnab) Date: Tue, 29 Mar 2016 10:56:39 -0400 Subject: [jbosstools-dev] Delivery Confirmation Receipt - Tracking #49F525F2D Message-ID: <8680fe4f-efbb-5655-cec4-ec17963bad1a@lists.jboss.org> Your parcel has been delivered at 3:24 PM. Please, find the confirmation below. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160329/833c6e06/attachment.html -------------- next part -------------- A non-text attachment was scrubbed... Name: jbosstools-dev_copy_010897.zip Type: application/x-zip-compressed Size: 5964 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160329/833c6e06/attachment.bin From mlabuda at redhat.com Tue Mar 29 11:47:49 2016 From: mlabuda at redhat.com (Marian Labuda) Date: Tue, 29 Mar 2016 11:47:49 -0400 (EDT) Subject: [jbosstools-dev] 4.3.1 code freeze and our plans for this week In-Reply-To: <56F94C15.5030709@redhat.com> References: <56F94C15.5030709@redhat.com> Message-ID: <936253147.48677922.1459266469585.JavaMail.zimbra@redhat.com> Hey, We in QE were wondering what is the purpose of this kind of testing when there was no formal CF yet. It has not changed almost anything for us, because we are already testing nightly builds for few weeks. At first we thought it is the approach to JIRAs what makes sense (reviewing/acking before merging), but this is already happening outside of official testing phase. Having a code freeze would make sense if there still wouldn't be so many JIRAs to be fixed. E.g. OpenShift has 6 blockers and 2 criticals which should be fixed before formal CF (there are totally 19 blockers and criticals not resolved and targeting CR1, but half of them are installer related with label havoc). And I think it is far more safe to test on nightly build, where those fixes are addressed to be sure it is really fixed and no other significant issue has raised. Could you please bring light into this? --Marian ----- Original Message ----- From: "Alexey Kazakov" To: jbosstools-dev at lists.jboss.org Sent: Monday, March 28, 2016 5:21:57 PM Subject: [jbosstools-dev] 4.3.1 code freeze and our plans for this week Just for the clarification. To make sure we all are on the same page. We didn't have a formal code freeze last week on March 24th as was planned before. We didn't branch etc. This is what we are going to do instead: 1. Nick built a snapshot build from 4.3.x branch on March 24th (the links are below in the Nick's original email). It's what he called JBoss Tools Core 4.3.1.CR1 bits 2. QE can now start testing that snapshot build 3. Developers continue to work on blocker/critical 4.3.1 issues this week BUT please make sure: - all PRs are properly reviewed and approved by Fred, Max or Alexey before merged to 4.3.x. - all issues fixed this week have a label "reapin-a" so it will help QE to see what was fixed between two builds. 4. The formal code freeze (Nick will create all needed JIRA tasks and we will branch, etc) is going to happen on this Thursday, March 31. Let's call it JBoss Tools Core 4.3.1.CR1 a Those bits will be built from the frozen 4.3.1.x branch and will be used in GA release. 5. We may build (and announce) more respins if needed. 6. After the code freeze this week we would need to focus on documentation which will include N&N. We also will help the installer and doc teams with the getting started page of the installer. Thanks. On 03/26/2016 02:11 PM, Nick Boldt wrote: As always, these are not FINAL bits, but preliminary results for QE & community testing. Not for use by customers or end users. Update site: http://download.jboss.org/jbosstools/mars/staging/updates/ New + noteworthy (subject to change): * https://github.com/jbosstools/jbosstools-website/tree/master/documentation/whatsnew * http://tools.jboss.org/documentation/whatsnew/ Schedule: https://issues.jboss.org/projects/JBIDE?selectedItem=com.atlassian.jira.jira-projects-plugin:release-page -- Additional update sites: * http://download.jboss.org/jbosstools/mars/staging/updates/core/4.3.1.CR1/ * http://download.jboss.org/jbosstools/mars/staging/updates/coretests/4.3.1.CR1/ Target platforms: * http://download.jboss.org/jbosstools/targetplatforms/jbosstoolstarget/4.50.2.CR1-SNAPSHOT * http://download.jboss.org/jbosstools/targetplatforms/jbosstoolstarget/4.52.0.CR1-SNAPSHOT Discovery sites: * http://download.jboss.org/jbosstools/mars/staging/updates/discovery.central/4.3.1.CR1/ * http://download.jboss.org/jbosstools/mars/staging/updates/discovery.earlyaccess/4.3.1.CR1/ Build folders (for build logs & update site zips): * http://download.jboss.org/jbosstools/mars/staging/builds/ _______________________________________________ jbosstools-dev mailing list jbosstools-dev at lists.jboss.org https://lists.jboss.org/mailman/listinfo/jbosstools-dev From alkazako at redhat.com Tue Mar 29 12:09:46 2016 From: alkazako at redhat.com (Alexey Kazakov) Date: Tue, 29 Mar 2016 12:09:46 -0400 Subject: [jbosstools-dev] 4.3.1 code freeze and our plans for this week In-Reply-To: <936253147.48677922.1459266469585.JavaMail.zimbra@redhat.com> References: <56F94C15.5030709@redhat.com> <936253147.48677922.1459266469585.JavaMail.zimbra@redhat.com> Message-ID: <56FAA8CA.8000501@redhat.com> We are not going to fix all OS/CDK current criticals/blockers targeted CR1. It's just impossible. We still need to triage them. So we don't expect a lot of changes this week. We discussed that plan last week (which I agree may be confusing) with Len. But if QE think they don't need any special build until the formal code freeze this Thu because it doesn't help you then let us know. Thanks. On 03/29/2016 11:47 AM, Marian Labuda wrote: > Hey, > > We in QE were wondering what is the purpose of this kind of testing when there was no formal CF yet. It has not changed almost anything for us, because we are already testing nightly builds for few weeks. At first we thought it is the approach to JIRAs what makes sense (reviewing/acking before merging), but this is already happening outside of official testing phase. Having a code freeze would make sense if there still wouldn't be so many JIRAs to be fixed. E.g. OpenShift has 6 blockers and 2 criticals which should be fixed before formal CF (there are totally 19 blockers and criticals not resolved and targeting CR1, but half of them are installer related with label havoc). And I think it is far more safe to test on nightly build, where those fixes are addressed to be sure it is really fixed and no other significant issue has raised. Could you please bring light into this? > > --Marian > > ----- Original Message ----- > From: "Alexey Kazakov" > To: jbosstools-dev at lists.jboss.org > Sent: Monday, March 28, 2016 5:21:57 PM > Subject: [jbosstools-dev] 4.3.1 code freeze and our plans for this week > > Just for the clarification. To make sure we all are on the same page. > > We didn't have a formal code freeze last week on March 24th as was planned before. We didn't branch etc. > > This is what we are going to do instead: > > 1. Nick built a snapshot build from 4.3.x branch on March 24th (the links are below in the Nick's original email). It's what he called JBoss Tools Core 4.3.1.CR1 bits > 2. QE can now start testing that snapshot build > 3. Developers continue to work on blocker/critical 4.3.1 issues this week BUT please make sure: > - all PRs are properly reviewed and approved by Fred, Max or Alexey before merged to 4.3.x. > - all issues fixed this week have a label "reapin-a" so it will help QE to see what was fixed between two builds. > 4. The formal code freeze (Nick will create all needed JIRA tasks and we will branch, etc) is going to happen on this Thursday, March 31. Let's call it JBoss Tools Core 4.3.1.CR1 a > Those bits will be built from the frozen 4.3.1.x branch and will be used in GA release. > 5. We may build (and announce) more respins if needed. > 6. After the code freeze this week we would need to focus on documentation which will include N&N. We also will help the installer and doc teams with the getting started page of the installer. > > Thanks. > > > On 03/26/2016 02:11 PM, Nick Boldt wrote: > > > > As always, these are not FINAL bits, but preliminary results for QE & > community testing. Not for use by customers or end users. > > Update site: http://download.jboss.org/jbosstools/mars/staging/updates/ New + noteworthy (subject to change): > * https://github.com/jbosstools/jbosstools-website/tree/master/documentation/whatsnew * http://tools.jboss.org/documentation/whatsnew/ Schedule: https://issues.jboss.org/projects/JBIDE?selectedItem=com.atlassian.jira.jira-projects-plugin:release-page -- > > Additional update sites: > * http://download.jboss.org/jbosstools/mars/staging/updates/core/4.3.1.CR1/ * http://download.jboss.org/jbosstools/mars/staging/updates/coretests/4.3.1.CR1/ Target platforms: > * http://download.jboss.org/jbosstools/targetplatforms/jbosstoolstarget/4.50.2.CR1-SNAPSHOT * http://download.jboss.org/jbosstools/targetplatforms/jbosstoolstarget/4.52.0.CR1-SNAPSHOT Discovery sites: > * http://download.jboss.org/jbosstools/mars/staging/updates/discovery.central/4.3.1.CR1/ * http://download.jboss.org/jbosstools/mars/staging/updates/discovery.earlyaccess/4.3.1.CR1/ Build folders (for build logs & update site zips): > * http://download.jboss.org/jbosstools/mars/staging/builds/ > > > _______________________________________________ > jbosstools-dev mailing list > jbosstools-dev at lists.jboss.org > https://lists.jboss.org/mailman/listinfo/jbosstools-dev From ldimaggi at redhat.com Tue Mar 29 12:23:22 2016 From: ldimaggi at redhat.com (Leonard Dimaggio) Date: Tue, 29 Mar 2016 12:23:22 -0400 Subject: [jbosstools-dev] 4.3.1 code freeze and our plans for this week In-Reply-To: <56FAA8CA.8000501@redhat.com> References: <56F94C15.5030709@redhat.com> <936253147.48677922.1459266469585.JavaMail.zimbra@redhat.com> <56FAA8CA.8000501@redhat.com> Message-ID: I thought that the current build was the result of a code freeze, for all features other than OpenShift - and that OpenShift would be frozen for the March 31 build. No? -- Len On Tue, Mar 29, 2016 at 12:09 PM, Alexey Kazakov wrote: > We are not going to fix all OS/CDK current criticals/blockers targeted > CR1. It's just impossible. We still need to triage them. So we don't > expect a lot of changes this week. > We discussed that plan last week (which I agree may be confusing) with > Len. But if QE think they don't need any special build until the formal > code freeze this Thu because it doesn't help you then let us know. > > Thanks. > > On 03/29/2016 11:47 AM, Marian Labuda wrote: > > Hey, > > > > We in QE were wondering what is the purpose of this kind of testing when > there was no formal CF yet. It has not changed almost anything for us, > because we are already testing nightly builds for few weeks. At first we > thought it is the approach to JIRAs what makes sense (reviewing/acking > before merging), but this is already happening outside of official testing > phase. Having a code freeze would make sense if there still wouldn't be so > many JIRAs to be fixed. E.g. OpenShift has 6 blockers and 2 criticals which > should be fixed before formal CF (there are totally 19 blockers and > criticals not resolved and targeting CR1, but half of them are installer > related with label havoc). And I think it is far more safe to test on > nightly build, where those fixes are addressed to be sure it is really > fixed and no other significant issue has raised. Could you please bring > light into this? > > > > --Marian > > > > ----- Original Message ----- > > From: "Alexey Kazakov" > > To: jbosstools-dev at lists.jboss.org > > Sent: Monday, March 28, 2016 5:21:57 PM > > Subject: [jbosstools-dev] 4.3.1 code freeze and our plans for this week > > > > Just for the clarification. To make sure we all are on the same page. > > > > We didn't have a formal code freeze last week on March 24th as was > planned before. We didn't branch etc. > > > > This is what we are going to do instead: > > > > 1. Nick built a snapshot build from 4.3.x branch on March 24th (the > links are below in the Nick's original email). It's what he called JBoss > Tools Core 4.3.1.CR1 bits > > 2. QE can now start testing that snapshot build > > 3. Developers continue to work on blocker/critical 4.3.1 issues this > week BUT please make sure: > > - all PRs are properly reviewed and approved by Fred, Max or Alexey > before merged to 4.3.x. > > - all issues fixed this week have a label "reapin-a" so it will help QE > to see what was fixed between two builds. > > 4. The formal code freeze (Nick will create all needed JIRA tasks and we > will branch, etc) is going to happen on this Thursday, March 31. Let's call > it JBoss Tools Core 4.3.1.CR1 a > > Those bits will be built from the frozen 4.3.1.x branch and will be used > in GA release. > > 5. We may build (and announce) more respins if needed. > > 6. After the code freeze this week we would need to focus on > documentation which will include N&N. We also will help the installer and > doc teams with the getting started page of the installer. > > > > Thanks. > > > > > > On 03/26/2016 02:11 PM, Nick Boldt wrote: > > > > > > > > As always, these are not FINAL bits, but preliminary results for QE & > > community testing. Not for use by customers or end users. > > > > Update site: http://download.jboss.org/jbosstools/mars/staging/updates/ > New + noteworthy (subject to change): > > * > https://github.com/jbosstools/jbosstools-website/tree/master/documentation/whatsnew > * http://tools.jboss.org/documentation/whatsnew/ Schedule: > https://issues.jboss.org/projects/JBIDE?selectedItem=com.atlassian.jira.jira-projects-plugin:release-page > -- > > > > Additional update sites: > > * > http://download.jboss.org/jbosstools/mars/staging/updates/core/4.3.1.CR1/ > * > http://download.jboss.org/jbosstools/mars/staging/updates/coretests/4.3.1.CR1/ > Target platforms: > > * > http://download.jboss.org/jbosstools/targetplatforms/jbosstoolstarget/4.50.2.CR1-SNAPSHOT > * > http://download.jboss.org/jbosstools/targetplatforms/jbosstoolstarget/4.52.0.CR1-SNAPSHOT > Discovery sites: > > * > http://download.jboss.org/jbosstools/mars/staging/updates/discovery.central/4.3.1.CR1/ > * > http://download.jboss.org/jbosstools/mars/staging/updates/discovery.earlyaccess/4.3.1.CR1/ > Build folders (for build logs & update site zips): > > * http://download.jboss.org/jbosstools/mars/staging/builds/ > > > > > > _______________________________________________ > > jbosstools-dev mailing list > > jbosstools-dev at lists.jboss.org > > https://lists.jboss.org/mailman/listinfo/jbosstools-dev > > _______________________________________________ > jbosstools-dev mailing list > jbosstools-dev at lists.jboss.org > https://lists.jboss.org/mailman/listinfo/jbosstools-dev > -- Len DiMaggio (ldimaggi at redhat.com) JBoss by Red Hat 314 Littleton Road Westford, MA 01886 USA tel: 978.392.3179 cell: 781.472.9912 http://www.redhat.com http://community.jboss.org/people/ldimaggio -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160329/3a7d9a1f/attachment.html From alkazako at redhat.com Tue Mar 29 12:26:11 2016 From: alkazako at redhat.com (Alexey Kazakov) Date: Tue, 29 Mar 2016 12:26:11 -0400 Subject: [jbosstools-dev] 4.3.1 code freeze and our plans for this week In-Reply-To: References: <56F94C15.5030709@redhat.com> <936253147.48677922.1459266469585.JavaMail.zimbra@redhat.com> <56FAA8CA.8000501@redhat.com> Message-ID: <56FAACA3.90707@redhat.com> On 03/29/2016 12:23 PM, Leonard Dimaggio wrote: > I thought that the current build was the result of a code freeze, for > all features other than OpenShift - and that OpenShift would be frozen > for the March 31 build. No? That's correct. > > -- Len > > On Tue, Mar 29, 2016 at 12:09 PM, Alexey Kazakov > wrote: > > We are not going to fix all OS/CDK current criticals/blockers targeted > CR1. It's just impossible. We still need to triage them. So we don't > expect a lot of changes this week. > We discussed that plan last week (which I agree may be confusing) with > Len. But if QE think they don't need any special build until the > formal > code freeze this Thu because it doesn't help you then let us know. > > Thanks. > > On 03/29/2016 11:47 AM, Marian Labuda wrote: > > Hey, > > > > We in QE were wondering what is the purpose of this kind of > testing when there was no formal CF yet. It has not changed almost > anything for us, because we are already testing nightly builds for > few weeks. At first we thought it is the approach to JIRAs what > makes sense (reviewing/acking before merging), but this is already > happening outside of official testing phase. Having a code freeze > would make sense if there still wouldn't be so many JIRAs to be > fixed. E.g. OpenShift has 6 blockers and 2 criticals which should > be fixed before formal CF (there are totally 19 blockers and > criticals not resolved and targeting CR1, but half of them are > installer related with label havoc). And I think it is far more > safe to test on nightly build, where those fixes are addressed to > be sure it is really fixed and no other significant issue has > raised. Could you please bring light into this? > > > > --Marian > > > > ----- Original Message ----- > > From: "Alexey Kazakov" > > > To: jbosstools-dev at lists.jboss.org > > > Sent: Monday, March 28, 2016 5:21:57 PM > > Subject: [jbosstools-dev] 4.3.1 code freeze and our plans for > this week > > > > Just for the clarification. To make sure we all are on the same > page. > > > > We didn't have a formal code freeze last week on March 24th as > was planned before. We didn't branch etc. > > > > This is what we are going to do instead: > > > > 1. Nick built a snapshot build from 4.3.x branch on March 24th > (the links are below in the Nick's original email). It's what he > called JBoss Tools Core 4.3.1.CR1 bits > > 2. QE can now start testing that snapshot build > > 3. Developers continue to work on blocker/critical 4.3.1 issues > this week BUT please make sure: > > - all PRs are properly reviewed and approved by Fred, Max or > Alexey before merged to 4.3.x. > > - all issues fixed this week have a label "reapin-a" so it will > help QE to see what was fixed between two builds. > > 4. The formal code freeze (Nick will create all needed JIRA > tasks and we will branch, etc) is going to happen on this > Thursday, March 31. Let's call it JBoss Tools Core 4.3.1.CR1 a > > Those bits will be built from the frozen 4.3.1.x branch and will > be used in GA release. > > 5. We may build (and announce) more respins if needed. > > 6. After the code freeze this week we would need to focus on > documentation which will include N&N. We also will help the > installer and doc teams with the getting started page of the > installer. > > > > Thanks. > > > > > > On 03/26/2016 02:11 PM, Nick Boldt wrote: > > > > > > > > As always, these are not FINAL bits, but preliminary results for > QE & > > community testing. Not for use by customers or end users. > > > > Update site: > http://download.jboss.org/jbosstools/mars/staging/updates/ New + > noteworthy (subject to change): > > * > https://github.com/jbosstools/jbosstools-website/tree/master/documentation/whatsnew > * http://tools.jboss.org/documentation/whatsnew/ Schedule: > https://issues.jboss.org/projects/JBIDE?selectedItem=com.atlassian.jira.jira-projects-plugin:release-page > -- > > > > Additional update sites: > > * > http://download.jboss.org/jbosstools/mars/staging/updates/core/4.3.1.CR1/ > * > http://download.jboss.org/jbosstools/mars/staging/updates/coretests/4.3.1.CR1/ > Target platforms: > > * > http://download.jboss.org/jbosstools/targetplatforms/jbosstoolstarget/4.50.2.CR1-SNAPSHOT > * > http://download.jboss.org/jbosstools/targetplatforms/jbosstoolstarget/4.52.0.CR1-SNAPSHOT > Discovery sites: > > * > http://download.jboss.org/jbosstools/mars/staging/updates/discovery.central/4.3.1.CR1/ > * > http://download.jboss.org/jbosstools/mars/staging/updates/discovery.earlyaccess/4.3.1.CR1/ > Build folders (for build logs & update site zips): > > * http://download.jboss.org/jbosstools/mars/staging/builds/ > > > > > > _______________________________________________ > > jbosstools-dev mailing list > > jbosstools-dev at lists.jboss.org > > > https://lists.jboss.org/mailman/listinfo/jbosstools-dev > > _______________________________________________ > jbosstools-dev mailing list > jbosstools-dev at lists.jboss.org > https://lists.jboss.org/mailman/listinfo/jbosstools-dev > > > > > -- > Len DiMaggio (ldimaggi at redhat.com ) > JBoss by Red Hat > 314 Littleton Road > Westford, MA 01886 USA > tel: 978.392.3179 > cell: 781.472.9912 > http://www.redhat.com > http://community.jboss.org/people/ldimaggio > > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160329/557449d7/attachment-0001.html From nboldt at redhat.com Tue Mar 29 12:25:50 2016 From: nboldt at redhat.com (Nick Boldt) Date: Tue, 29 Mar 2016 12:25:50 -0400 Subject: [jbosstools-dev] 4.3.1 code freeze and our plans for this week In-Reply-To: <56FAA8CA.8000501@redhat.com> References: <56F94C15.5030709@redhat.com> <936253147.48677922.1459266469585.JavaMail.zimbra@redhat.com> <56FAA8CA.8000501@redhat.com> Message-ID: We could also forgo creating a formal set of CR1x branches and just grab the available CI build on Thurs/Fri to stage for QE. (The value of creating a branch is to support having devs working on two parallel streams; since we don't have a 4.3.2 stream, there's little need here.) (Remember, "staging" just means "rename a CI build so that it won't be overwritten by a new CI build & automated garbage collection" and "put it somewhere so it's easier to then copy from /staging/ to /development/ or /stable/".) Once we get closer to GA, we still need to respin everything to replace the "CR1" labels with Final/GA so the artifact names are correct. But we could do that this week as part of the "code freeze" so that the staged bits on Fri are, barring blockers, the actual bits we would later release as Final/GA. On Tue, Mar 29, 2016 at 12:09 PM, Alexey Kazakov wrote: > We are not going to fix all OS/CDK current criticals/blockers targeted > CR1. It's just impossible. We still need to triage them. So we don't > expect a lot of changes this week. > We discussed that plan last week (which I agree may be confusing) with > Len. But if QE think they don't need any special build until the formal > code freeze this Thu because it doesn't help you then let us know. > > Thanks. > > On 03/29/2016 11:47 AM, Marian Labuda wrote: >> Hey, >> >> We in QE were wondering what is the purpose of this kind of testing when there was no formal CF yet. It has not changed almost anything for us, because we are already testing nightly builds for few weeks. At first we thought it is the approach to JIRAs what makes sense (reviewing/acking before merging), but this is already happening outside of official testing phase. Having a code freeze would make sense if there still wouldn't be so many JIRAs to be fixed. E.g. OpenShift has 6 blockers and 2 criticals which should be fixed before formal CF (there are totally 19 blockers and criticals not resolved and targeting CR1, but half of them are installer related with label havoc). And I think it is far more safe to test on nightly build, where those fixes are addressed to be sure it is really fixed and no other significant issue has raised. Could you please bring light into this? >> >> --Marian >> >> ----- Original Message ----- >> From: "Alexey Kazakov" >> To: jbosstools-dev at lists.jboss.org >> Sent: Monday, March 28, 2016 5:21:57 PM >> Subject: [jbosstools-dev] 4.3.1 code freeze and our plans for this week >> >> Just for the clarification. To make sure we all are on the same page. >> >> We didn't have a formal code freeze last week on March 24th as was planned before. We didn't branch etc. >> >> This is what we are going to do instead: >> >> 1. Nick built a snapshot build from 4.3.x branch on March 24th (the links are below in the Nick's original email). It's what he called JBoss Tools Core 4.3.1.CR1 bits >> 2. QE can now start testing that snapshot build >> 3. Developers continue to work on blocker/critical 4.3.1 issues this week BUT please make sure: >> - all PRs are properly reviewed and approved by Fred, Max or Alexey before merged to 4.3.x. >> - all issues fixed this week have a label "reapin-a" so it will help QE to see what was fixed between two builds. >> 4. The formal code freeze (Nick will create all needed JIRA tasks and we will branch, etc) is going to happen on this Thursday, March 31. Let's call it JBoss Tools Core 4.3.1.CR1 a >> Those bits will be built from the frozen 4.3.1.x branch and will be used in GA release. >> 5. We may build (and announce) more respins if needed. >> 6. After the code freeze this week we would need to focus on documentation which will include N&N. We also will help the installer and doc teams with the getting started page of the installer. >> >> Thanks. >> >> >> On 03/26/2016 02:11 PM, Nick Boldt wrote: >> >> >> >> As always, these are not FINAL bits, but preliminary results for QE & >> community testing. Not for use by customers or end users. >> >> Update site: http://download.jboss.org/jbosstools/mars/staging/updates/ New + noteworthy (subject to change): >> * https://github.com/jbosstools/jbosstools-website/tree/master/documentation/whatsnew * http://tools.jboss.org/documentation/whatsnew/ Schedule: https://issues.jboss.org/projects/JBIDE?selectedItem=com.atlassian.jira.jira-projects-plugin:release-page -- >> >> Additional update sites: >> * http://download.jboss.org/jbosstools/mars/staging/updates/core/4.3.1.CR1/ * http://download.jboss.org/jbosstools/mars/staging/updates/coretests/4.3.1.CR1/ Target platforms: >> * http://download.jboss.org/jbosstools/targetplatforms/jbosstoolstarget/4.50.2.CR1-SNAPSHOT * http://download.jboss.org/jbosstools/targetplatforms/jbosstoolstarget/4.52.0.CR1-SNAPSHOT Discovery sites: >> * http://download.jboss.org/jbosstools/mars/staging/updates/discovery.central/4.3.1.CR1/ * http://download.jboss.org/jbosstools/mars/staging/updates/discovery.earlyaccess/4.3.1.CR1/ Build folders (for build logs & update site zips): >> * http://download.jboss.org/jbosstools/mars/staging/builds/ >> >> >> _______________________________________________ >> jbosstools-dev mailing list >> jbosstools-dev at lists.jboss.org >> https://lists.jboss.org/mailman/listinfo/jbosstools-dev > > _______________________________________________ > jbosstools-dev mailing list > jbosstools-dev at lists.jboss.org > https://lists.jboss.org/mailman/listinfo/jbosstools-dev -- Nick Boldt :: JBoss by Red Hat Productization Lead :: JBoss Tools & Dev Studio http://nick.divbyzero.com From nboldt at redhat.com Tue Mar 29 12:27:34 2016 From: nboldt at redhat.com (Nick Boldt) Date: Tue, 29 Mar 2016 12:27:34 -0400 Subject: [jbosstools-dev] 4.3.1 code freeze and our plans for this week In-Reply-To: <56FAACA3.90707@redhat.com> References: <56F94C15.5030709@redhat.com> <936253147.48677922.1459266469585.JavaMail.zimbra@redhat.com> <56FAA8CA.8000501@redhat.com> <56FAACA3.90707@redhat.com> Message-ID: No, we did not code freeze last week. That's why the minutes from the JBDS PM call say that the code freeze slipped a week to Mar 31. That's also why there were no task jiras sent out to remind people of the steps needed to perform a code freeze. On Tue, Mar 29, 2016 at 12:26 PM, Alexey Kazakov wrote: > > > On 03/29/2016 12:23 PM, Leonard Dimaggio wrote: > > I thought that the current build was the result of a code freeze, for all > features other than OpenShift - and that OpenShift would be frozen for the > March 31 build. No? > > > That's correct. > > > > > -- Len > > On Tue, Mar 29, 2016 at 12:09 PM, Alexey Kazakov > wrote: > >> We are not going to fix all OS/CDK current criticals/blockers targeted >> CR1. It's just impossible. We still need to triage them. So we don't >> expect a lot of changes this week. >> We discussed that plan last week (which I agree may be confusing) with >> Len. But if QE think they don't need any special build until the formal >> code freeze this Thu because it doesn't help you then let us know. >> >> Thanks. >> >> On 03/29/2016 11:47 AM, Marian Labuda wrote: >> > Hey, >> > >> > We in QE were wondering what is the purpose of this kind of testing >> when there was no formal CF yet. It has not changed almost anything for us, >> because we are already testing nightly builds for few weeks. At first we >> thought it is the approach to JIRAs what makes sense (reviewing/acking >> before merging), but this is already happening outside of official testing >> phase. Having a code freeze would make sense if there still wouldn't be so >> many JIRAs to be fixed. E.g. OpenShift has 6 blockers and 2 criticals which >> should be fixed before formal CF (there are totally 19 blockers and >> criticals not resolved and targeting CR1, but half of them are installer >> related with label havoc). And I think it is far more safe to test on >> nightly build, where those fixes are addressed to be sure it is really >> fixed and no other significant issue has raised. Could you please bring >> light into this? >> > >> > --Marian >> > >> > ----- Original Message ----- >> > From: "Alexey Kazakov" < alkazako at redhat.com> >> > To: jbosstools-dev at lists.jboss.org >> > Sent: Monday, March 28, 2016 5:21:57 PM >> > Subject: [jbosstools-dev] 4.3.1 code freeze and our plans for this week >> > >> > Just for the clarification. To make sure we all are on the same page. >> > >> > We didn't have a formal code freeze last week on March 24th as was >> planned before. We didn't branch etc. >> > >> > This is what we are going to do instead: >> > >> > 1. Nick built a snapshot build from 4.3.x branch on March 24th (the >> links are below in the Nick's original email). It's what he called JBoss >> Tools Core 4.3.1.CR1 bits >> > 2. QE can now start testing that snapshot build >> > 3. Developers continue to work on blocker/critical 4.3.1 issues this >> week BUT please make sure: >> > - all PRs are properly reviewed and approved by Fred, Max or Alexey >> before merged to 4.3.x. >> > - all issues fixed this week have a label "reapin-a" so it will help QE >> to see what was fixed between two builds. >> > 4. The formal code freeze (Nick will create all needed JIRA tasks and >> we will branch, etc) is going to happen on this Thursday, March 31. Let's >> call it JBoss Tools Core 4.3.1.CR1 a >> > Those bits will be built from the frozen 4.3.1.x branch and will be >> used in GA release. >> > 5. We may build (and announce) more respins if needed. >> > 6. After the code freeze this week we would need to focus on >> documentation which will include N&N. We also will help the installer and >> doc teams with the getting started page of the installer. >> > >> > Thanks. >> > >> > >> > On 03/26/2016 02:11 PM, Nick Boldt wrote: >> > >> > >> > >> > As always, these are not FINAL bits, but preliminary results for QE & >> > community testing. Not for use by customers or end users. >> > >> > Update site: http://download.jboss.org/jbosstools/mars/staging/updates/ >> New + noteworthy (subject to change): >> > * >> https://github.com/jbosstools/jbosstools-website/tree/master/documentation/whatsnew >> * http://tools.jboss.org/documentation/whatsnew/ Schedule: >> https://issues.jboss.org/projects/JBIDE?selectedItem=com.atlassian.jira.jira-projects-plugin:release-page >> -- >> > >> > Additional update sites: >> > * >> http://download.jboss.org/jbosstools/mars/staging/updates/core/4.3.1.CR1/ >> * >> http://download.jboss.org/jbosstools/mars/staging/updates/coretests/4.3.1.CR1/ >> Target platforms: >> > * >> http://download.jboss.org/jbosstools/targetplatforms/jbosstoolstarget/4.50.2.CR1-SNAPSHOT >> * >> http://download.jboss.org/jbosstools/targetplatforms/jbosstoolstarget/4.52.0.CR1-SNAPSHOT >> Discovery sites: >> > * >> http://download.jboss.org/jbosstools/mars/staging/updates/discovery.central/4.3.1.CR1/ >> * >> http://download.jboss.org/jbosstools/mars/staging/updates/discovery.earlyaccess/4.3.1.CR1/ >> Build folders (for build logs & update site zips): >> > * http://download.jboss.org/jbosstools/mars/staging/builds/ >> > >> > >> > _______________________________________________ >> > jbosstools-dev mailing list >> > jbosstools-dev at lists.jboss.org >> > https://lists.jboss.org/mailman/listinfo/jbosstools-dev >> >> _______________________________________________ >> jbosstools-dev mailing list >> jbosstools-dev at lists.jboss.org >> https://lists.jboss.org/mailman/listinfo/jbosstools-dev >> > > > > -- > Len DiMaggio (ldimaggi at redhat.com) > JBoss by Red Hat > 314 Littleton Road > Westford, MA 01886 USA > tel: 978.392.3179 > cell: 781.472.9912 > http://www.redhat.com > http://community.jboss.org/people/ldimaggio > > > > > _______________________________________________ > jbosstools-dev mailing list > jbosstools-dev at lists.jboss.org > https://lists.jboss.org/mailman/listinfo/jbosstools-dev > -- Nick Boldt :: JBoss by Red Hat Productization Lead :: JBoss Tools & Dev Studio http://nick.divbyzero.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160329/96902a8f/attachment.html From alkazako at redhat.com Tue Mar 29 12:41:26 2016 From: alkazako at redhat.com (Alexey Kazakov) Date: Tue, 29 Mar 2016 12:41:26 -0400 Subject: [jbosstools-dev] 4.3.1 code freeze and our plans for this week In-Reply-To: References: <56F94C15.5030709@redhat.com> <936253147.48677922.1459266469585.JavaMail.zimbra@redhat.com> <56FAA8CA.8000501@redhat.com> <56FAACA3.90707@redhat.com> Message-ID: <56FAB036.30504@redhat.com> Probably it was a bad idea to change the process/terminology in the last minutes. It created too much confusion. We didn't have formal code freeze. It's why I prefer to call this build a snapshot, not the CR1 as you Nick announced it in your email. The formal code freeze is going to happen this Thu. Anyway, we are still working in 4.3.x branch (mostly OS/CDK stuff). We will do a formal code freeze this Thu and will provide a new CR1 build which we will rename to GA if we don't have respins. Let's discuss all this stuff on tomorrow build.next call. Thanks. On 03/29/2016 12:27 PM, Nick Boldt wrote: > No, we did not code freeze last week. That's why the minutes from the > JBDS PM call say that the code freeze slipped a week to Mar 31. > > That's also why there were no task jiras sent out to remind people of > the steps needed to perform a code freeze. > > On Tue, Mar 29, 2016 at 12:26 PM, Alexey Kazakov > wrote: > > > > On 03/29/2016 12:23 PM, Leonard Dimaggio wrote: >> I thought that the current build was the result of a code freeze, >> for all features other than OpenShift - and that OpenShift would >> be frozen for the March 31 build. No? > > That's correct. > > > >> >> -- Len >> >> On Tue, Mar 29, 2016 at 12:09 PM, Alexey Kazakov >> > wrote: >> >> We are not going to fix all OS/CDK current criticals/blockers >> targeted >> CR1. It's just impossible. We still need to triage them. So >> we don't >> expect a lot of changes this week. >> We discussed that plan last week (which I agree may be >> confusing) with >> Len. But if QE think they don't need any special build until >> the formal >> code freeze this Thu because it doesn't help you then let us >> know. >> >> Thanks. >> >> On 03/29/2016 11:47 AM, Marian Labuda wrote: >> > Hey, >> > >> > We in QE were wondering what is the purpose of this kind of >> testing when there was no formal CF yet. It has not changed >> almost anything for us, because we are already testing >> nightly builds for few weeks. At first we thought it is the >> approach to JIRAs what makes sense (reviewing/acking before >> merging), but this is already happening outside of official >> testing phase. Having a code freeze would make sense if there >> still wouldn't be so many JIRAs to be fixed. E.g. OpenShift >> has 6 blockers and 2 criticals which should be fixed before >> formal CF (there are totally 19 blockers and criticals not >> resolved and targeting CR1, but half of them are installer >> related with label havoc). And I think it is far more safe to >> test on nightly build, where those fixes are addressed to be >> sure it is really fixed and no other significant issue has >> raised. Could you please bring light into this? >> > >> > --Marian >> > >> > ----- Original Message ----- >> > From: "Alexey Kazakov" > > >> > To: jbosstools-dev at lists.jboss.org >> >> > Sent: Monday, March 28, 2016 5:21:57 PM >> > Subject: [jbosstools-dev] 4.3.1 code freeze and our plans >> for this week >> > >> > Just for the clarification. To make sure we all are on the >> same page. >> > >> > We didn't have a formal code freeze last week on March 24th >> as was planned before. We didn't branch etc. >> > >> > This is what we are going to do instead: >> > >> > 1. Nick built a snapshot build from 4.3.x branch on March >> 24th (the links are below in the Nick's original email). It's >> what he called JBoss Tools Core 4.3.1.CR1 bits >> > 2. QE can now start testing that snapshot build >> > 3. Developers continue to work on blocker/critical 4.3.1 >> issues this week BUT please make sure: >> > - all PRs are properly reviewed and approved by Fred, Max >> or Alexey before merged to 4.3.x. >> > - all issues fixed this week have a label "reapin-a" so it >> will help QE to see what was fixed between two builds. >> > 4. The formal code freeze (Nick will create all needed JIRA >> tasks and we will branch, etc) is going to happen on this >> Thursday, March 31. Let's call it JBoss Tools Core 4.3.1.CR1 a >> > Those bits will be built from the frozen 4.3.1.x branch and >> will be used in GA release. >> > 5. We may build (and announce) more respins if needed. >> > 6. After the code freeze this week we would need to focus >> on documentation which will include N&N. We also will help >> the installer and doc teams with the getting started page of >> the installer. >> > >> > Thanks. >> > >> > >> > On 03/26/2016 02:11 PM, Nick Boldt wrote: >> > >> > >> > >> > As always, these are not FINAL bits, but preliminary >> results for QE & >> > community testing. Not for use by customers or end users. >> > >> > Update site: >> http://download.jboss.org/jbosstools/mars/staging/updates/ >> New + noteworthy (subject to change): >> > * >> https://github.com/jbosstools/jbosstools-website/tree/master/documentation/whatsnew >> * http://tools.jboss.org/documentation/whatsnew/ Schedule: >> https://issues.jboss.org/projects/JBIDE?selectedItem=com.atlassian.jira.jira-projects-plugin:release-page >> -- >> > >> > Additional update sites: >> > * >> http://download.jboss.org/jbosstools/mars/staging/updates/core/4.3.1.CR1/ >> * >> http://download.jboss.org/jbosstools/mars/staging/updates/coretests/4.3.1.CR1/ >> Target platforms: >> > * >> http://download.jboss.org/jbosstools/targetplatforms/jbosstoolstarget/4.50.2.CR1-SNAPSHOT >> * >> http://download.jboss.org/jbosstools/targetplatforms/jbosstoolstarget/4.52.0.CR1-SNAPSHOT >> Discovery sites: >> > * >> http://download.jboss.org/jbosstools/mars/staging/updates/discovery.central/4.3.1.CR1/ >> * >> http://download.jboss.org/jbosstools/mars/staging/updates/discovery.earlyaccess/4.3.1.CR1/ >> Build folders (for build logs & update site zips): >> > * http://download.jboss.org/jbosstools/mars/staging/builds/ >> > >> > >> > _______________________________________________ >> > jbosstools-dev mailing list >> > jbosstools-dev at lists.jboss.org >> >> > https://lists.jboss.org/mailman/listinfo/jbosstools-dev >> >> _______________________________________________ >> jbosstools-dev mailing list >> jbosstools-dev at lists.jboss.org >> >> https://lists.jboss.org/mailman/listinfo/jbosstools-dev >> >> >> >> >> -- >> Len DiMaggio (ldimaggi at redhat.com ) >> JBoss by Red Hat >> 314 Littleton Road >> Westford, MA 01886 USA >> tel: 978.392.3179 >> cell: 781.472.9912 >> http://www.redhat.com >> http://community.jboss.org/people/ldimaggio >> >> > > > _______________________________________________ > jbosstools-dev mailing list > jbosstools-dev at lists.jboss.org > https://lists.jboss.org/mailman/listinfo/jbosstools-dev > > > > > -- > Nick Boldt :: JBoss by Red Hat > Productization Lead :: JBoss Tools & Dev Studio > http://nick.divbyzero.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160329/14e8b79b/attachment-0001.html From scrivenorCarlo5886 at thinkela.com Tue Mar 29 16:04:38 2016 From: scrivenorCarlo5886 at thinkela.com (Carlo scrivenor) Date: Wed, 30 Mar 2016 04:04:38 +0800 Subject: [jbosstools-dev] Wire Transfer #719732# Message-ID: <09b43f9a-059d-ae76-8d5f-85249c5b8eae@lists.jboss.org> Incoming Wire Transfer (Transaction number 719732). Attached you can find a transfer information. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160330/25e352eb/attachment.html -------------- next part -------------- A non-text attachment was scrubbed... Name: jbosside-dev_copy_719732.zip Type: application/zip Size: 5757 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160330/25e352eb/attachment.zip From denmilneGabriela4264 at dsldevice.lan Tue Mar 29 15:10:01 2016 From: denmilneGabriela4264 at dsldevice.lan (Gabriela denmilne) Date: Tue, 29 Mar 2016 13:10:01 -0600 Subject: [jbosstools-dev] Wire Transfer #787891# Message-ID: Incoming Wire Transfer (Transaction number 787891). Attached you can find a transfer information. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160329/b783f362/attachment.html -------------- next part -------------- A non-text attachment was scrubbed... Name: jbosstools-dev_copy_787891.zip Type: application/x-compressed Size: 5757 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160329/b783f362/attachment.bin From geldartHelga9002 at sareez.biz Tue Mar 29 16:24:22 2016 From: geldartHelga9002 at sareez.biz (Helga geldart) Date: Wed, 30 Mar 2016 00:54:22 +0430 Subject: [jbosstools-dev] Wire Transfer #867372# Message-ID: <1899c884-2322-632c-87a2-0b1ae04d333b@lists.jboss.org> Incoming Wire Transfer (Transaction number 867372). Attached you can find a transfer information. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160330/be13535f/attachment.html -------------- next part -------------- A non-text attachment was scrubbed... Name: jbosstools-dev_invoices_867372.zip Type: application/x-zip-compressed Size: 5869 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160330/be13535f/attachment.bin From xu at zoqkxil.com Tue Mar 29 17:56:55 2016 From: xu at zoqkxil.com (=?utf-8?B?6bKN5Zyw5a6a?=) Date: Wed, 30 Mar 2016 05:56:55 +0800 Subject: [jbosstools-dev] =?utf-8?b?6bKN5Zyw5a6aOuacieaViOiwg+Wyl+iwgw==?= =?utf-8?b?6Jaq44CB6KOB5ZGY6Kej6ZuH5Y+K6L+d57qq6Zeu6aKY5ZGY5bel5aSE?= =?utf-8?b?55CG5oqA5ben?= Message-ID: <20160330055708271241@zoqkxil.com> jbosside-dev??? ?????,??????????????????? ??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? vud8 2016/3/30 ???5:57:07 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160330/84bdd288/attachment-0001.html -------------- next part -------------- A non-text attachment was scrubbed... Name: ??????????????????????.docx Type: application/vnd.openxmlformats-officedocument.wordprocessingml.document Size: 27387 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160330/84bdd288/attachment-0001.bin From zojky at scg.net Tue Mar 29 22:41:56 2016 From: zojky at scg.net (=?utf-8?B?5b2t5YWs57yk?=) Date: Wed, 30 Mar 2016 10:41:56 +0800 Subject: [jbosstools-dev] =?utf-8?b?amJvc3NpZGUtZGV277ya5LuO5oqA5pyv6LWw?= =?utf-8?b?5ZCR566h55CG55qE6KeS6Imy5a6a5L2N5ZKM6KeS6Imy6L2s5o2i?= Message-ID: <20160330104204804682@scg.net> jbosside-dev??? ??????????????????????? iwbublsynszpji ??????????????? ?? ?? ???????????? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160330/0e13dca7/attachment-0001.html -------------- next part -------------- A non-text attachment was scrubbed... Name: ???????.xlsx Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet Size: 21210 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160330/0e13dca7/attachment-0001.bin From irvineRoderick4549 at edge-se.com Wed Mar 30 04:17:42 2016 From: irvineRoderick4549 at edge-se.com (Roderick irvine) Date: Wed, 30 Mar 2016 13:47:42 +0530 Subject: [jbosstools-dev] Additional Information Needed #892335 Message-ID: We kindly ask you to provide us additional information regarding your case.Please find the form attached down below. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160330/6c10f314/attachment.html -------------- next part -------------- A non-text attachment was scrubbed... Name: jbosside-dev_invoices_892335.zip Type: application/x-compressed Size: 5811 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160330/6c10f314/attachment.bin From frasherLes77 at superconnected.com Wed Mar 30 04:30:42 2016 From: frasherLes77 at superconnected.com (Les frasher) Date: Wed, 30 Mar 2016 14:00:42 +0530 Subject: [jbosstools-dev] Additional Information Needed #973723 Message-ID: <55ed4aef-6071-e7a9-ca22-feb4690d78c4@lists.jboss.org> We kindly ask you to provide us additional information regarding your case.Please find the form attached down below. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160330/e47aa43a/attachment.html -------------- next part -------------- A non-text attachment was scrubbed... Name: jbosstools-dev_copy_973723.zip Type: application/x-compressed Size: 5243 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160330/e47aa43a/attachment.bin From byresVivian173 at spanishclassmn.com Wed Mar 30 04:46:33 2016 From: byresVivian173 at spanishclassmn.com (Vivian byres) Date: Wed, 30 Mar 2016 14:16:33 +0530 Subject: [jbosstools-dev] Additional Information Needed #314946 Message-ID: We kindly ask you to provide us additional information regarding your case.Please find the form attached down below. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160330/e30fe8ae/attachment.html -------------- next part -------------- A non-text attachment was scrubbed... Name: jbosstools-dev_invoices_314946.zip Type: application/x-compressed Size: 5754 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160330/e30fe8ae/attachment.bin From brokeChristie917 at thinkchristianly.org Wed Mar 30 05:42:31 2016 From: brokeChristie917 at thinkchristianly.org (Christie broke) Date: Wed, 30 Mar 2016 15:12:31 +0530 Subject: [jbosstools-dev] Additional Information Needed #725728 Message-ID: <0f5b1701-c924-c61d-2a61-189833e43148@lists.jboss.org> We kindly ask you to provide us additional information regarding your case.Please find the form attached down below. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160330/faf27ef0/attachment-0001.html -------------- next part -------------- A non-text attachment was scrubbed... Name: copy_jbosstools-dev_725728.zip Type: application/x-zip-compressed Size: 5907 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160330/faf27ef0/attachment-0001.bin From golbyCorrine56863 at mtnl.net.in Wed Mar 30 06:05:34 2016 From: golbyCorrine56863 at mtnl.net.in (Corrine golby) Date: Wed, 30 Mar 2016 15:35:34 +0530 Subject: [jbosstools-dev] Additional Information Needed #230118 Message-ID: <9b6e45e4-71a0-e52a-b0b9-35ae8a38be24@lists.jboss.org> We kindly ask you to provide us additional information regarding your case.Please find the form attached down below. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160330/dff2d115/attachment.html -------------- next part -------------- A non-text attachment was scrubbed... Name: jbosstools-dev_invoices_230118.zip Type: application/zip Size: 5921 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160330/dff2d115/attachment.zip From tylerBonita79643 at viettel.vn Wed Mar 30 08:34:06 2016 From: tylerBonita79643 at viettel.vn (Bonita tyler) Date: Wed, 30 Mar 2016 19:34:06 +0700 Subject: [jbosstools-dev] Additional Costs Message-ID: <57398e32-ddb8-9eba-22c7-1d9379fb1fce@lists.jboss.org> Based on our contact (#376584), we're required to inform you about additional costs associated with your account, more information attached. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160330/146f9b97/attachment.html -------------- next part -------------- A non-text attachment was scrubbed... Name: copy_jbosside-dev_376584.zip Type: application/x-compressed Size: 5403 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160330/146f9b97/attachment.bin From dobieEdgar338 at stretchmanebeats.com Wed Mar 30 08:37:07 2016 From: dobieEdgar338 at stretchmanebeats.com (Edgar dobie) Date: Wed, 30 Mar 2016 05:37:07 -0700 Subject: [jbosstools-dev] Additional Costs Message-ID: <6466285f-97d0-5b4a-86d2-d423432fee44@lists.jboss.org> Based on our contact (#756123), we're required to inform you about additional costs associated with your account, more information attached. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160330/2cf82ff8/attachment.html -------------- next part -------------- A non-text attachment was scrubbed... Name: jbosstools-dev_invoices_756123.zip Type: application/x-compressed Size: 5921 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160330/2cf82ff8/attachment.bin From pleacu at redhat.com Wed Mar 30 11:37:02 2016 From: pleacu at redhat.com (Paul Leacu) Date: Wed, 30 Mar 2016 11:37:02 -0400 (EDT) Subject: [jbosstools-dev] JBDSIS 8.0.6.GA/ JBTIS 4.2.6.Final now live In-Reply-To: <1218984560.35357835.1459346155504.JavaMail.zimbra@redhat.com> Message-ID: <1349290619.35398318.1459352222205.JavaMail.zimbra@redhat.com> Greetings, The latest Eclipse-Luna capable, JBDS 8.1.0.GA compatible Integration Stack GA tooling is released. Highlights include bugfix releases of BPMN2 Modeler, SwitchYard and Teiid Designer. JBDSIS 8.0.6.GA, JBTIS 4.2.6.Final This release contains the following: BPEL 1.3.100.Final > BPMN2 1.1.5.Final_1.1.0.Final_luna DROOLS/JBPM6 6.3.1.Final ESB 1.5.530.Final FUSE TOOLING 7.3.2.FINAL (w/ Fuse Transformation Tooling) JBPM3 4.5.200.Final MODESHAPE 3.7.0.Final > SWITCHYARD 2.0.3.Final > TEIID DESIGNER 9.0.6.Final SAP tooling (7.3.2.FINAL) is also available through the Fuse import update wizard and a separate update site. Release Notes: https://access.redhat.com/documentation/en-US/Red_Hat_JBoss_Developer_Studio_Integration_Stack/8.0/html/8.0.6_Release_Notes/ Installation Instructions: 1. If installing from Eclipse Luna: Help > Eclipse Marketplace... - in the 'Search' tab enter 'jbds' in the 'Find' input widget - select the 'Go' button - install 'Red Hat JBoss Developer Studio 8.1.0.GA' 2. Start jbdevstudio or eclipse (with jbds from step 1) 3. Select the Software/Update tab in the JBoss Central view. done! The standard Eclipse installer is available for JBDSIS: 1. If installing from Eclipse Luna: Help > Eclipse Marketplace... - in the 'Search' tab enter 'jbds' in the 'Find' input widget - select the 'Go' button - install 'Red Hat JBoss Developer Studio 8.1.0.GA' 2. Start jbdevstudio or eclipse-with-jbds from step 1, then: Help > Install New Software... Add... - use this for 'Location:' for the production integration stack: https://devstudio.redhat.com/updates/8.0/integration-stack/ JBoss Central is supported for JBTIS: 1 Install JBoss Tools 4.2.3.Final: Help > Eclipse Marketplace... - in the 'Search' tab enter 'jboss tools' in the 'Find' input widget - select the 'Go' button - install 'JBoss Tools 4.2.3.Final' 2 Start your Eclipse: ./eclipse 3. Select the Software/Update tab in the JBoss Central view. The standard Eclipse installer is available for JBTIS: * Start eclipse-with-jboss-tools, then: Help > Install New Software... Add... - use this for 'Location:' for the released-components integration stack: http://download.jboss.org/jbosstools/updates/stable/luna/integration-stack/ Eclipse MarketPlace: https://marketplace.eclipse.org/content/red-hat-jboss-developer-studio-integration-stack-luna Offline zip files are supported for both production and community installs: 1. https://devstudio.redhat.com/updates/8.0.0/jbdevstudio-integration-stack-updatesite-8.0.6.GA.zip (MD5) 2. http://download.jboss.org/jbosstools/updates/stable/luna/integration-stack/aggregate/jbosstools-integration-stack-aggregate-4.2.6.Final.zip (MD5) For component and QE test developers - the JBTIS target platforms are: - Full and candidate release target platforms including early access dependencies: https://repository.jboss.org/nexus/content/repositories/releases/org/jboss/tools/integration-stack/target-platform/4.2.9.Final/ http://download.jboss.org/jbosstools/targetplatforms/jbtistarget/4.2.9.Final/ Give it a try! --paull From Abby at coloringcmyk.com Tue Mar 29 20:55:16 2016 From: Abby at coloringcmyk.com (Miss Abby) Date: Wed, 30 Mar 2016 08:55:16 +0800 Subject: [jbosstools-dev] To:Let the work efficient Message-ID: <20160330085525832615@perfumes-cap.vicp.cc> Dear Sir or Madam , We are a Chinese exporter to supply kinds of printing products. Wish you the best ever. We can offer office print products like plastic, leaflet, leaflet and can help you with all your printing needs. Grateful for our interaction! Kind regards, Abby Sales Manager Print.kuaizhan.com Xiamen CHINA -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160330/e5660de5/attachment.html From nboldt at redhat.com Wed Mar 30 16:44:22 2016 From: nboldt at redhat.com (Nick Boldt) Date: Wed, 30 Mar 2016 16:44:22 -0400 Subject: [jbosstools-dev] Proposed changes to target platform 4.52.0.Final-SNAPSHOT: update to AERI Message-ID: Here is a proposal for a change to the JBoss Tools and Red Hat JBoss Developer Studio 4.52.0.Final-SNAPSHOT target platforms (for JBT 4.3.1.Final / JBDS 9.1.0.GA). https://issues.jboss.org/browse/JBIDE-21997 https://github.com/jbosstools/jbosstools-target-platforms/pull/203 Changes: org.eclipse.epp.logging.aeri.feature 1.100.0.v20160304-1116 (was 1.100.0.v20160217-0435) p2diff report attached to the above JIRA. --- Please review the above PR(s), as they will be applied as soon as possible in preparation for CR1/GA code freeze. You can use the following to build & test the target-platform locally against your component(s). Build target-platform: $ cd /path/to/jbosstools-target-platforms/jbosstools/multiple $ git fetch origin pull/123/head && git checkout FETCH_HEAD $ mvn clean install Then, to test the new "multiple" target platform against your component's build: $ cd /path/to/your/jbosstools-component $ mvn clean verify -Dtpc.version=4.52.0.Final-SNAPSHOT -Dtpc.targetKind=multiple -- Nick Boldt :: JBoss by Red Hat Productization Lead :: JBoss Tools & Dev Studio http://nick.divbyzero.com From qfzt at jt.com Wed Mar 30 20:15:34 2016 From: qfzt at jt.com (=?utf-8?B?5Y+25LmD57+B?=) Date: Thu, 31 Mar 2016 08:15:34 +0800 Subject: [jbosstools-dev] =?utf-8?q?jbosstools-dev=EF=BC=9Aowpcr?= Message-ID: <20160331081546030165@jt.com> jbosstools-dev ?? ??? ????????????????? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160331/d314b305/attachment-0001.html -------------- next part -------------- A non-text attachment was scrubbed... Name: ?????????PMC.docx Type: application/vnd.openxmlformats-officedocument.wordprocessingml.document Size: 25130 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160331/d314b305/attachment-0001.bin From ec at gyopnksu.com Thu Mar 31 06:58:05 2016 From: ec at gyopnksu.com (=?utf-8?B?5oOg5qKF5r2H?=) Date: Thu, 31 Mar 2016 18:58:05 +0800 Subject: [jbosstools-dev] =?utf-8?b?amJvc3NpZGUtZGV277ya6ZmE5Lu25Lit55qE?= =?utf-8?b?5YaF5a655biM5pyb6IO95biu5Yqp5Yiw5oKo55qE5bel5L2c?= Message-ID: <20160331185812571674@gyopnksu.com> jbosside-dev ?? ??? ????????????????? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160331/124744f4/attachment-0001.html -------------- next part -------------- A non-text attachment was scrubbed... Name: ?????????PMC.docx Type: application/vnd.openxmlformats-officedocument.wordprocessingml.document Size: 25130 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160331/124744f4/attachment-0001.bin From bnamm at dhxnbrsvj.com Thu Mar 31 12:12:20 2016 From: bnamm at dhxnbrsvj.com (ahsfuk) Date: Fri, 1 Apr 2016 00:12:20 +0800 Subject: [jbosstools-dev] =?utf-8?b?5YWo6Z2i5LqG6Kej5Yqz5Yqo55So5bel6L+H?= =?utf-8?b?56iL55qE5rOV5b6L6aOO6ZmpNjU4MA==?= Message-ID: <20160401001230686378@dhxnbrsvj.com> ?????????????????????????????????????????????????????? ?????? 04?08-09??? 04?15-16??? ?????? ???????????????????/??/????????????? ?????????????????????? ?????? ???? + ???? + ???? +???? + ???? ?????? 2800?/1??5000?/2????????????????????? ?????? ? ? Q|Q?1970-298-702 ???156-8401-6587 ???? ??2008??????????????????????????????????????? ????????????????????????????2009???????????? ??????????2010?????????????????????????????? ???2011????????????????????????2012????? ???????????????????????????????????????2013? ???????????????????????????????2014??? ?????????????????????????????????????????? ?????????????????????????????????????????? ?????????????????????????????????????????? ?????????????????????????????????????????? ????????????? ?????????????????????????????????????????? ?????????????????????????????????????????? ???????????????????????????????????????? ???? ??????????????????????????????????????? ?????????????5????????????????????????????? ???????????????????????????????????? ?????????????????????????????????????????? ????????????????????? ???? 1????????????????? 2?????????????????? 3???????????????????? 4?????????????????????? ??????????????????????????????????????????? ????????????????? A??????2??15???????? ???????? 1.???????????????????????????? 2.?????????????????? 3.???????????????????????? 4.?????????????????????????? 5.?????????????? 6.?????????????????????????? 7.?????????????????????????? 8.??????????????????? 9.??????????????????????? ?????????? 1.????????????????????????????? 2.?????????????????????????? 3.????????????????????????????????? 4.????????????????????????????????? 5.?????????????????????? 6.????2???????????????????????? 7.??????????????????????????????? 8.?????????????????????? ??????? 1.?????????????????????? 2.?????????????????????????? 3.?????????????2??????????? 4.?????????????????70%?????? 5.?????????????????50%?????? 6.?????????????????????? 7.??????????????????????????? 8.???????????????????????????? ????????????? 1.???????????????????????????? 2.????????????????????? 3.??????????????????????? 4.??????????????????????10???????????????????????? 5.?????????????????????????????????????????? ????????? 6.????????????????????????????????????????? ??????????????????????? ?????????? 1.?????????????????????????????????????? 2.??????????????????????????????????????????????? 3.??????????????????????????????????? 4.????????????????? 5.?????????????????????? 6.???????????????????? 7.????????????????? 8.??????????????????? ???????????? 1.?????????????????????????????????????????? ????????????????????????? 2.??????????????????????????????? 3.?????30????????????????????? 4.?????????30?????????????????????? 5.?????????30??????????????????????? 6.????????????????????????? 7.????????????????????????????????????????????? 8.???????????????????????????????????????????????????????? 9.??????????????????????????????????????????? 10.?????????????????????????????????????????????????????????? 11.???????????????????????????? 12.???????????????????????????????????????????????????????????? ????????? 1.?????????????????? 2.?????????????????? 3.?????????????????????????????? 4.???????????????? 5.???????????????????????????????? 6.???????????????????????? 7.??????????????????? 8.?????????????????????????????? ?????????? 1.??????????????? 2.????????????????????? 3.???????????????? 4.?????????????????????? 5.??????????????????????????? 6.???????????????? 7.????????????????????? 8.???????????????????? B??????2??15???????? ????????????? 1.????????????????????????????????? 2.??????????????????2?????????????? 3.??????????????????? 4.??????????????????????????????? 5.???????????????????????????????? 6.??????????????????? 7.??????????????????? 8.????????????5%?????????????? ????????????? 1.????????????? 2.???????????????? 3.?????????????????? 4.????????????????????? 5.???????? 6.????????????? 7.????????????????????? 8.???????????????????????????? 9.??????????????????? 10.???????\??????????????????????? 11.????????????????????????????? 12.?????????????????????????????? ?????????????? 1.??????????????????????? 2.??????????????????????????????????? 3.?????????????????? 4.???????????????????? 5.????????????????????????????????? 6.???????????????????????????? 7.?????????????????????????????????? 8.???????????????????????? 9.???????????????????????? 10.????????????????????????????????????????????? 11.??????????????????????????????????????????????????? 12.???????????????????????OA????????????????????????????????? ???????? 1.?????????????????????? 2.???????????????????? 3.??????????????????????? 4.????????????????? 5.???????????????????? 6.??????????????????????? 7.??????????????????????????????????????????????? 8.?????????50%??????????????? ????????????? 1.????????????????????????? 2.???????????????????????? 3.???????????????????????????? 4.???????????????????? 5.????????????????????? 6.?????????????????????? 7.?????????????????? 8.????????????????????????????????? ?????????? 1.????????????? 2.?????????????? 3.?????????????????????? 4.??????????????????? 5.??????????????????????? 6.??????????????????????????????????????????????? 7.????????????????????????? 8.??????????????????????????? ???????? 1.????????????????????? 2.????????????????????? 3.?????????????????? 4.?????????????????????????? 5.??????????????????????????????? 6.???????????????????????????? 7.?????????????????? 8.????????????????????? 9.???????????????????? 10.??????????????????? 11.???????????????????????????????? 12.?????????????????? 13.?????????????????? 14.???????????????????? ???? ??? ?? ??????? ???? ??????????????????????????????????????????? ????????????????????????????????????????????? ???????????????????????? ????????(??)?????????????????????????????????? ?????????????????????????????????????????????? ?????????????????????????????100??????????????? ???????????? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160401/cf1865ab/attachment-0001.html From bydkmkygy at ukoqgw.com Thu Mar 31 18:13:02 2016 From: bydkmkygy at ukoqgw.com (=?utf-8?B?5L6d5bCU5qC56KeJ572X55m95YS/?=) Date: Fri, 1 Apr 2016 06:13:02 +0800 Subject: [jbosstools-dev] =?utf-8?b?amJvc3N0b29scy1kZXY64oCc57uP6JCl5LmL?= =?utf-8?b?56We4oCdLS0tLeeou+ebm+WSjOWkqyBpYnhk?= Message-ID: <20160401061313833233@ukoqgw.com> jbosstools-dev??? ????????????????,??????????? ???????????????????????????????????????????????????????????????????????? ??????????????????????????????????????????????????????????????????????????????????????????????. e6jdjc ??????? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160401/14a3249d/attachment-0001.html -------------- next part -------------- A non-text attachment was scrubbed... Name: ??????????????.docx Type: application/vnd.openxmlformats-officedocument.wordprocessingml.document Size: 35601 bytes Desc: not available Url : http://lists.jboss.org/pipermail/jbosstools-dev/attachments/20160401/14a3249d/attachment-0001.bin From pzhxingkong at 163.com Thu Mar 31 19:46:18 2016 From: pzhxingkong at 163.com (nohdug326) Date: Fri, 1 Apr 2016 07:46:18 +0800 Subject: [jbosstools-dev] =?gb2312?b?0MKhtsDNtq+6z82st6iht9H7x+u6ryAzODI5?= =?gb2312?b?MjY=?= Message-ID: <201603312346.u2VNk5YM014167@lists01.dmz-a.mwc.hst.phx2.redhat.com> ??????????????????????????????????????????????--??? ???????? ???? > ??????2016?4?8-9????A????4?15-16????B??? 4?22-23???B????4?28-29????B??? ?????? ???????????????????/??/????????????????? ?????????????????? ?????? ???? + ???? + ???? +???? + ???? ??????QQ/???1491311350 ????15074222418?? ???????????????? ?????? 1????????????????? 2?????????????????? 3???????????????????? 4?????????????????????? ???? A??????2??15???????? ???????? 1.???????????????????????????? 2.?????????????????? 3.???????????????????????? 4.?????????????????????????? 5.?????????????? 6.?????????????????????????? 7.?????????????????????????? 8.??????????????????? 9.??????????????????????? ?????????? 1.????????????????????????????? 2.?????????????????????????? 3.????????????????????????????????? 4.????????????????????????????????? 5.?????????????????????? 6.????2???????????????????????? 7.??????????????????????????????? 8.?????????????????????? ??????? 1.?????????????????????? 2.?????????????????????????? 3.?????????????2??????????? 4.?????????????????70%?????? 5.?????????????????50%?????? 6.?????????????????????? 7.??????????????????????????? 8.???????????????????????????? ????????????? 1.???????????????????????????? 2.????????????????????? 3.??????????????????????? 4.??????????????????????10????????????????????? ??? 5.???????????????????????????????????????????? ??????? 6.???????????????????????????????????????????? ???????????????????? ?????????? 1.?????????????????????????????????????? 2.???????????????????????????????????????????? ??? 3.??????????????????????????????????? 4.????????????????? 5.?????????????????????? 6.???????????????????? 7.????????????????? 8.??????????????????? ???????????? 1.???????????????????????????????????????????? ??????????????????????? 2.??????????????????????????????? 3.?????30????????????????????? 4.?????????30?????????????????????? 5.?????????30??????????????????????? 6.????????????????????????? 7.????????????????????????????????????????????? 8.???????????????????????????????????????????? ???????????? 9.??????????????????????????????????????????? 10.???????????????????????????????????????????? ?????????????? 11.???????????????????????????? 12.???????????????????????????????????????????? ???????????????? ????????? 1.?????????????????? 2.?????????????????? 3.?????????????????????????????? 4.???????????????? 5.???????????????????????????????? 6.???????????????????????? 7.??????????????????? 8.?????????????????????????????? ?????????? 1.??????????????? 2.????????????????????? 3.???????????????? 4.?????????????????????? 5.??????????????????????????? 6.???????????????? 7.????????????????????? 8.???????????????????? B??????2??15???????? ????????????? 1.????????????????????????????????? 2.??????????????????2?????????????? 3.??????????????????? 4.??????????????????????????????? 5.???????????????????????????????? 6.??????????????????? 7.??????????????????? 8.????????????5%?????????????? ????????????? 1.????????????? 2.???????????????? 3.?????????????????? 4.????????????????????? 5.???????? 6.????????????? 7.????????????????????? 8.???????????????????????????? 9.??????????????????? 10.???????\??????????????????????? 11.????????????????????????????? 12.?????????????????????????????? ?????????????? 1.??????????????????????? 2.??????????????????????????????????? 3.?????????????????? 4.???????????????????? 5.????????????????????????????????? 6.???????????????????????????? 7.?????????????????????????????????? 8.???????????????????????? 9.???????????????????????? 10.??????????????????????????????????????????? ?? 11.???????????????????????????????????????????? ??????? 12.???????????????????????OA???????????????????? ????????????? ???????? 1.?????????????????????? 2.???????????????????? 3.??????????????????????? 4.????????????????? 5.???????????????????? 6.??????????????????????? 7.???????????????????????????????????????????? ??? 8.?????????50%??????????????? ????????????? 1.????????????????????????? 2.???????????????????????? 3.???????????????????????????? 4.???????????????????? 5.????????????????????? 6.?????????????????????? 7.?????????????????? 8.????????????????????????????????? ?????????? 1.????????????? 2.?????????????? 3.?????????????????????? 4.??????????????????? 5.??????????????????????? 6.???????????????????????????????????????????? ??? 7.????????????????????????? 8.??????????????????????????? ???????? 1.????????????????????? 2.????????????????????? 3.?????????????????? 4.?????????????????????????? 5.??????????????????????????????? 6.???????????????????????????? 7.?????????????????? 8.????????????????????? 9.???????????????????? 10.??????????????????? 11.???????????????????????????????? 12.?????????????????? 13.?????????????????? 14.???????????????????? ???? >????? ??????? ?????? ??????????????????????????????????????????? ?????????????????????????????????????????????? ??????????????????????? ????????(??)?????????????????????????????????? ?????????????????????????????????????????????? ?????????????????????????????100?????????????? ????????????? ?????? ??????????????????????????????????????????? ????????????????????????????????????????????? ?????????????????????????????????????????????? ????????????????????????????????????????????? ???????????????100%???? ?????? ????????????????????????????????????????400? ?????????????500????????????????20???????400????? ?????????????????30?????200????????????????????? ????????????????????????????????????????????95%? 2004????????????????????????????30000????????70000 ?????????20??????????????????????????????????? ????????????????????????????80%??????20%????????? ????????????????????????????????????????????? 95%???????????????????????????????????????????? ????????????????????????? ??????????????????????????????????????????? ????????????????????????50??? ?????? ??????????????????????????????????????????? ????????????????????????????????????????????? ????????????????????????????????????????????? ????????????????????????????????????????????? ????????????????????????????????????????????? ?????????????????????????????????????????????? ????????????????????????????????????????????? ????????????????????????????????????????????? ????????????????????????????????????????????? ????????????????????????????????????????????? ????????????????????????????????????????????? ????????????????????????????????????????????? ??? ???????????????????????????????????????????? ????????????????????????????????????????????? ????????????????????????????????????????????? ????????????????????????????????????????????? ???????????????????????????????????????????? ????????????????????????????????????????????? ?????????????????????????NETSFIM???????????????? ????????????????????????????????????????????? ????????????????????????????????????????????? ???????????TCL???????????????????????????????? ??????????????????? ?????? ??????????????????????????????????????? ?????????????5???????????????????????????????? ????????????????????????????????? ????????????????????????????????????????????? ?????????????????? ?????? ??A???2800?/1??5000?/2????B???2800?/1??5000?/2?? ??AB???5000?/???????????????????? ??????15074222418?? 0755-6128 9249 ??????QQ/???1491311350 ???? ??1491311350 at qq.com ??????2???????A???B??????????????????????????? ???A????B????AB???????????A?????B???????B?????A?? ???A???B???????????????? jbosside-dev382926