From forge-users at lists.jboss.org Sun Mar 1 02:48:53 2015 From: forge-users at lists.jboss.org (forge-users at lists.jboss.org) Date: Sun, 01 Mar 2015 02:48:53 EST Subject: [forge-users] Need explanation for forge addon folder structure In-Reply-To: <188264559.241425043076203.JavaMail.jive@jive-app01.app.mwc.hst.phx2.redhat.com> Message-ID: <1233219684.251425196163285.JavaMail.jive@jive-app01.app.mwc.hst.phx2.redhat.com> Thank you for clarifying.I always had this doubt!! Posted by forums Original post: https://developer.jboss.org/message/920234#920234 From forge-users at lists.jboss.org Sun Mar 1 11:50:03 2015 From: forge-users at lists.jboss.org (forge-users at lists.jboss.org) Date: Sun, 01 Mar 2015 11:50:03 EST Subject: [forge-users] Problem creating test for a new addon I'm developing Message-ID: <836994300.301425228633902.JavaMail.jive@jive-app01.app.mwc.hst.phx2.redhat.com> I'm creating a forge addon and following the below folder structure of having seperate addon, impl, tests and api folders. I wrote my Facet implementation in Impl. I'm able to successfully execute the addon. However, I want to create some unit tests to test my addon. I haven't even come to stage of writing tests to my addon. I have followed http://forge.jboss.org/document/test-your-addonhttp://forge.jboss.org/document/test-your-addon and created a sample test. This is what is there in my test @RunWith(Arquillian.class) public class FirstTest { @Deployment ?? @Dependencies({ @AddonDependency(name = "org.codehaus.griffon.forge:griffon-forge-addon", version = "1.0.0-SNAPSHOT") }) public static ForgeArchive getDeployment() { ForgeArchive archive = ShrinkWrap.create(ForgeArchive.class) ????????????????????????????????????????????????????????? .addBeansXML() ????????????????????????????????????????????????????????? .addAsAddonDependencies(AddonDependencyEntry.create("org.codehaus.griffon.forge:griffon-forge-addon", "1.0.0-SNAPSHOT") ); ?????? return archive; ?? } @Test ?? public void testSomething() throws Exception { Assert.fail("Not implemented"); ?? } } When I'm trying to run this test I'm getting the following error. h5. testSomething(org.codehaus.griffon.forge.FirstTest): Test runner could not locate test class [org.codehaus.griffon.forge.FirstTest] in any deployed Addon. Can anyone tell me what is the process to be followed when writing tests for our addons if we follow the structure addon, api, impl and tests? Do we have to install the addon to test it? Isn't there any way to test the addon without first installing? Is it possible to test a Facet directly without running through Forge? Posted by forums Original post: https://developer.jboss.org/message/920242#920242 From ggastald at redhat.com Sun Mar 1 13:55:36 2015 From: ggastald at redhat.com (George Gastaldi) Date: Sun, 1 Mar 2015 13:55:36 -0500 (EST) Subject: [forge-users] Problem creating test for a new addon I'm developing In-Reply-To: <836994300.301425228633902.JavaMail.jive@jive-app01.app.mwc.hst.phx2.redhat.com> References: <836994300.301425228633902.JavaMail.jive@jive-app01.app.mwc.hst.phx2.redhat.com> Message-ID: Your test is missing the container. Make sure to add @AddonDependency(name="org.jboss.forge.furnace.container:cdi") to your @Deployment method. > Em 01/03/2015, ?s 13:51, forge-users at lists.jboss.org escreveu: > > I'm creating a forge addon and following the below folder structure of having seperate addon, impl, tests and api folders. I wrote my Facet implementation in Impl. I'm able to successfully execute the addon. However, I want to create some unit tests to test my addon. I haven't even come to stage of writing tests to my addon. I have followed http://forge.jboss.org/document/test-your-addonhttp://forge.jboss.org/document/test-your-addon and created a sample test. This is what is there in my test > @RunWith(Arquillian.class) > public class FirstTest { > @Deployment > @Dependencies({ > @AddonDependency(name = "org.codehaus.griffon.forge:griffon-forge-addon", version = "1.0.0-SNAPSHOT") }) > public static ForgeArchive getDeployment() { > ForgeArchive archive = ShrinkWrap.create(ForgeArchive.class) > .addBeansXML() > .addAsAddonDependencies(AddonDependencyEntry.create("org.codehaus.griffon.forge:griffon-forge-addon", "1.0.0-SNAPSHOT") ); > return archive; > } > > @Test > public void testSomething() throws Exception { > Assert.fail("Not implemented"); > } > } > > When I'm trying to run this test I'm getting the following error. > > h5. testSomething(org.codehaus.griffon.forge.FirstTest): Test runner could not locate test class [org.codehaus.griffon.forge.FirstTest] in any deployed Addon. > > Can anyone tell me what is the process to be followed when writing tests for our addons if we follow the structure addon, api, impl and tests? Do we have to install the addon to test it? Isn't there any way to test the addon without first installing? Is it possible to test a Facet directly without running through Forge? > > Posted by forums > Original post: https://developer.jboss.org/message/920242#920242 > > _______________________________________________ > forge-users mailing list > forge-users at lists.jboss.org > https://lists.jboss.org/mailman/listinfo/forge-users From forge-users at lists.jboss.org Sun Mar 1 17:15:51 2015 From: forge-users at lists.jboss.org (forge-users at lists.jboss.org) Date: Sun, 01 Mar 2015 17:15:51 EST Subject: [forge-users] Build in error w. 2.13.0 , not with 2.14 Message-ID: <1382423442.311425248181178.JavaMail.jive@jive-app01.app.mwc.hst.phx2.redhat.com> Hello, I built an addon that does not build in JBDStudio (Forge 2.13.0) but builds and executes in a shell (Forge 2.14.0) In the error log view, I have org.jboss.forge.addon.projects.building.BuildException: Build failed. ??? at org.jboss.forge.addon.maven.projects.MavenProjectBuilder.build(MavenProjectBuilder.java:102) ??? at org.jboss.forge.addon.maven.projects.MavenProjectBuilder.build(MavenProjectBuilder.java:65) ??? at org.jboss.forge.addon.manager.impl.ui.AddonBuildAndInstallCommand.execute(AddonBuildAndInstallCommand.java:79) ??? at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ??? at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) ??? at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ??? at java.lang.reflect.Method.invoke(Method.java:606) ??? at org.jboss.forge.furnace.proxy.ClassLoaderInterceptor$1.call(ClassLoaderInterceptor.java:87) ??? at org.jboss.forge.furnace.util.ClassLoaders.executeIn(ClassLoaders.java:42) ??? at org.jboss.forge.furnace.proxy.ClassLoaderInterceptor.invoke(ClassLoaderInterceptor.java:103) ??? at org.jboss.forge.addon.manager.impl.ui.AddonBuildAndInstallCommand_$$_javassist_7abc5e8c-92e5-47ca-a679-97a07b1658b8.execute(AddonBuildAndInstallCommand_$$_javassist_7abc5e8c-92e5-47ca-a679-97a07b1658b8.java) ??? at org.jboss.forge.addon.ui.impl.controller.SingleCommandControllerImpl.execute(SingleCommandControllerImpl.java:90) ??? at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ??? at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) ??? at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ??? at java.lang.reflect.Method.invoke(Method.java:606) ??? at org.jboss.forge.furnace.proxy.ClassLoaderAdapterCallback$2.call(ClassLoaderAdapterCallback.java:123) ??? at org.jboss.forge.furnace.util.ClassLoaders.executeIn(ClassLoaders.java:42) ??? at org.jboss.forge.furnace.proxy.ClassLoaderAdapterCallback.invoke(ClassLoaderAdapterCallback.java:96) ??? at org.jboss.forge.addon.ui.controller.CommandController_$$_javassist_01609478-df41-492a-94e1-0faecf751e0a.execute(CommandController_$$_javassist_01609478-df41-492a-94e1-0faecf751e0a.java) ??? at org.jboss.tools.forge.ui.internal.ext.wizards.ForgeWizard$1.run(ForgeWizard.java:113) ??? at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:122) Which is of little help. Is there another place to look at ? My ~/.forge folder only contains the addons folder. I want to test how it behaves before to release it (? wadael/MetaForgeWizard ? GitHub (https://github.com/wadael/MetaForgeWizard) ) https://github.com/wadael/MetaForgeWizard Thank you Jerome Posted by forums Original post: https://developer.jboss.org/message/920248#920248 From forge-users at lists.jboss.org Mon Mar 2 04:26:49 2015 From: forge-users at lists.jboss.org (forge-users at lists.jboss.org) Date: Mon, 02 Mar 2015 04:26:49 EST Subject: [forge-users] Problem creating test for a new addon I'm In-Reply-To: Message-ID: <696634071.321425288439390.JavaMail.jive@jive-app01.app.mwc.hst.phx2.redhat.com> developing MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Hi Goerge, I kept it and it still doesn't seem to work. Following is the exception I g= ot when I executed maven install command on my tests sub-project. testSomething (org.codehaus.griffon.forge.FirstTest)=C2=A0 Time elapsed: 0.= 058 sec=C2=A0 <<< ERROR! java.lang.IllegalStateException: Test runner could not locate test class [o= rg.codehaus.griffon.forge.FirstTest] in any deployed Addon. =C2=A0=C2=A0=C2=A0 at org.jboss.forge.arquillian.ForgeTestMethodExecutor.in= voke(ForgeTestMethodExecutor.java:234) =C2=A0=C2=A0=C2=A0 at org.jboss.arquillian.container.test.impl.execution.Re= moteTestExecuter.execute(RemoteTestExecuter.java:109) Following is my getDeployment method now.=20 =C2=A0=C2=A0=C2=A0 @Deployment =C2=A0=C2=A0=C2=A0 @Dependencies({ =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 @AddonDe= pendency(name =3D "org.codehaus.griffon.forge:griffon-forge-addon"), =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 @AddonDe= pendency(name=3D"org.jboss.forge.furnace.container:cdi") =C2=A0=C2=A0=C2=A0 }) =C2=A0=C2=A0=C2=A0 public static ForgeArchive getDeployment() { =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 ForgeArchive archive =3D ShrinkW= rap.create(ForgeArchive.class) =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2= =A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0= =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2= =A0=C2=A0 .addBeansXML() =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2= =A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0= =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2= =A0=C2=A0 .addAsAddonDependencies( =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2= =A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0= =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 AddonDependencyEntry.create("org.codeh= aus.griffon.forge:griffon-forge-addon"), =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2= =A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0= =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 AddonDependencyEntry.create("org.jboss= .forge.furnace.container:cdi") ); =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 return archive; =C2=A0=C2=A0=C2=A0 } Thanks Buddha Posted by forums Original post: https://developer.jboss.org/message/920265#920265 From forge-users at lists.jboss.org Tue Mar 3 04:09:14 2015 From: forge-users at lists.jboss.org (forge-users at lists.jboss.org) Date: Tue, 03 Mar 2015 04:09:14 EST Subject: [forge-users] How to give gradle addon dependency Message-ID: <1845795957.401425373793390.JavaMail.jive@jive-app01.app.mwc.hst.phx2.redhat.com> *Hi,* *I want to add Gradle dependency through code like this* GradleModelBuilder builder = GradleModelBuilder.create(); model.addTask(GradleTaskBuilder.create() . setName("newTask") . setDependendsOn(GradleTaskBuilder.create(). setName("otherTask")) .setCode("println 'Hello!'")); But i know for that i have to add dependency in my forge addon pom.xml something like below one ? org.jboss.forge.addon ? gradle ? forge-addon ? ${version} what could be the possible version for this!! Or is this way of doing is wrong? Please give me suggestion for how to give forge gradle dependency Posted by forums Original post: https://developer.jboss.org/message/920365#920365 From forge-users at lists.jboss.org Tue Mar 3 04:18:44 2015 From: forge-users at lists.jboss.org (forge-users at lists.jboss.org) Date: Tue, 03 Mar 2015 04:18:44 EST Subject: [forge-users] How to give gradle addon dependency In-Reply-To: <1845795957.401425373793390.JavaMail.jive@jive-app01.app.mwc.hst.phx2.redhat.com> Message-ID: <715654971.411425374354098.JavaMail.jive@jive-app01.app.mwc.hst.phx2.redhat.com> Hi All, ????????? I have found the solution by this link http://mvnrepository.com/artifact/org.jboss.forge.addon/gradle (http://developer.jboss.org/) So i will proceed by this one. Thank you {emoticon:class=jive_macro jive_emote|src=https://static.jboss.org/developer/6.0.3.60ddddd/images/emoticons/happy.png|__jive_emoticon_name=happy} Posted by forums Original post: https://developer.jboss.org/message/920367#920367 From forge-users at lists.jboss.org Tue Mar 3 06:23:49 2015 From: forge-users at lists.jboss.org (forge-users at lists.jboss.org) Date: Tue, 03 Mar 2015 06:23:49 EST Subject: [forge-users] How does Forge support Gradle Message-ID: <1315297503.421425381859209.JavaMail.jive@jive-app01.app.mwc.hst.phx2.redhat.com> I tried giving Gradle dependency in my forge-addon parent pom.xml as ? org.jboss.forge.addon ? gradle ? forge-addon ? 2.5.0.Final ? and i have written some code in this forge addon to do some functionality.And say i have registered "my-forge-command" in the addon Now my intention is when a user creates maven/gradle project and then when he gives (cntrl+Alt+4- in IntelliJ) my registered forge command "my-forge-command" should be visible .But only in case of Maven project the command is visible? but not Gradle project.Is this expected? Or am i missing some thing.There is no error in log.And i don't think there is any fault with my code.Because this is working for Maven projects.I Assume that i am missing some configuration for Gradle to be supported. Please Help! Posted by forums Original post: https://developer.jboss.org/message/920381#920381 From antonio.mailing at gmail.com Wed Mar 4 06:34:05 2015 From: antonio.mailing at gmail.com (Antonio Goncalves) Date: Wed, 4 Mar 2015 12:34:05 +0100 Subject: [forge-users] Who wants to review a tutorial on "Creating and testing a command that creates Java code" ? Message-ID: Hi all, We are working on a set of tutorials on "How to create and test a new command" so new comers can contribute better in an easier way. There are a few JIRAs here about this topic : https://issues.jboss.org/browse/FORGE-2231 This first tutorial is very basic but it allows answering a few bunch of questions, and show "reasonably easy" code : https://issues.jboss.org/browse/FORGE-2232 The tutorial is for now in a Google Doc document and we will need a couple of external eyes to review it : https://docs.google.com/document/d/11Y-zcl2-fp-Kxdq1wq8gM37_AUeWX6SQiYV65d7H5es/edit?usp=sharing Anybody interested ? We would give you write access to the document so you can change it, annotate it and question it. Thanks -- Antonio Goncalves Software architect and Java Champion Web site | Twitter | LinkedIn | Paris JUG | Devoxx France -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/forge-users/attachments/20150304/aec1baee/attachment-0001.html From forge-users at lists.jboss.org Wed Mar 4 08:51:49 2015 From: forge-users at lists.jboss.org (forge-users at lists.jboss.org) Date: Wed, 04 Mar 2015 08:51:49 EST Subject: [forge-users] Who wants to review a tutorial on "Creating and In-Reply-To: Message-ID: <1764465842.541425477139791.JavaMail.jive@jive-app01.app.mwc.hst.phx2.redhat.com> testing a command that creates Java code" ? MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit If I can help Posted by forums Original post: https://developer.jboss.org/message/920524#920524 From forge-users at lists.jboss.org Wed Mar 4 08:57:58 2015 From: forge-users at lists.jboss.org (forge-users at lists.jboss.org) Date: Wed, 04 Mar 2015 08:57:58 EST Subject: [forge-users] Announcement : new addon : MetaForgeWizard Message-ID: <64153932.551425477508212.JavaMail.jive@jive-app01.app.mwc.hst.phx2.redhat.com> MetaForgeWizard is an addon that will save you time when creating a wizard-style addon. Take a look at?? wadael/MetaForgeWizard ? GitHub (https://github.com/wadael/MetaForgeWizard) Thanks for your feedback. J?r?me Posted by forums Original post: https://developer.jboss.org/message/920529#920529 From forge-users at lists.jboss.org Wed Mar 4 20:53:42 2015 From: forge-users at lists.jboss.org (forge-users at lists.jboss.org) Date: Wed, 04 Mar 2015 20:53:42 EST Subject: [forge-users] Who wants to review a tutorial on "Creating and In-Reply-To: Message-ID: <869493950.571425520452071.JavaMail.jive@jive-app01.app.mwc.hst.phx2.redhat.com> testing a command that creates Java code" ? MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit I would be interested as well. Please give me access to add comments. Posted by forums Original post: https://developer.jboss.org/message/920626#920626 From forge-users at lists.jboss.org Thu Mar 5 03:25:53 2015 From: forge-users at lists.jboss.org (forge-users at lists.jboss.org) Date: Thu, 05 Mar 2015 03:25:53 EST Subject: [forge-users] Who wants to review a tutorial on "Creating and In-Reply-To: Message-ID: <283890205.581425543983136.JavaMail.jive@jive-app01.app.mwc.hst.phx2.redhat.com> testing a command that creates Java code" ? MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit looks good. the test cases uses this line - {quote:class=jive_text_macro jive_macro_quote} ShrinkWrap.create(AddonArchive.class) {quote} I wasn't sure where to import it from. Should it be this? {quote:class=jive_text_macro jive_macro_quote} ShrinkWrap.create(ForgeArchive.class) {quote} Posted by forums Original post: https://developer.jboss.org/message/920648#920648 From antonio.mailing at gmail.com Thu Mar 5 07:14:55 2015 From: antonio.mailing at gmail.com (Antonio Goncalves) Date: Thu, 5 Mar 2015 13:14:55 +0100 Subject: [forge-users] Who wants to review a tutorial on "Creating and testing a command that creates Java code" ? In-Reply-To: References: Message-ID: Give me your email adresses so I can add them to the Google Doc Antonio 2015-03-04 12:34 GMT+01:00 Antonio Goncalves : > Hi all, > > We are working on a set of tutorials on "How to create and test a new > command" so new comers can contribute better in an easier way. There are a > few JIRAs here about this topic : > > https://issues.jboss.org/browse/FORGE-2231 > > This first tutorial is very basic but it allows answering a few bunch of > questions, and show "reasonably easy" code : > > https://issues.jboss.org/browse/FORGE-2232 > > The tutorial is for now in a Google Doc document and we will need a couple > of external eyes to review it : > > > https://docs.google.com/document/d/11Y-zcl2-fp-Kxdq1wq8gM37_AUeWX6SQiYV65d7H5es/edit?usp=sharing > > > Anybody interested ? We would give you write access to the document so you > can change it, annotate it and question it. > > Thanks > > -- > Antonio Goncalves > Software architect and Java Champion > > Web site | Twitter > | LinkedIn > | Paris JUG > | Devoxx France > -- Antonio Goncalves Software architect and Java Champion Web site | Twitter | LinkedIn | Paris JUG | Devoxx France -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/forge-users/attachments/20150305/cebbeb3a/attachment.html From forge-users at lists.jboss.org Fri Mar 6 04:21:05 2015 From: forge-users at lists.jboss.org (forge-users at lists.jboss.org) Date: Fri, 06 Mar 2015 04:21:05 EST Subject: [forge-users] Who wants to review a tutorial on "Creating and In-Reply-To: Message-ID: <1154664122.621425633695135.JavaMail.jive@jive-app01.app.mwc.hst.phx2.redhat.com> testing a command that creates Java code" ? MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Consider me in. manimanasamylavarapu at gmail.com (mailto:manimanasamylavarapu at gmail.com) Posted by forums Original post: https://developer.jboss.org/message/920746#920746 From forge-users at lists.jboss.org Fri Mar 6 04:29:19 2015 From: forge-users at lists.jboss.org (forge-users at lists.jboss.org) Date: Fri, 06 Mar 2015 04:29:19 EST Subject: [forge-users] Who wants to review a tutorial on "Creating and In-Reply-To: Message-ID: <1138218491.631425634189906.JavaMail.jive@jive-app01.app.mwc.hst.phx2.redhat.com> testing a command that creates Java code" ? MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit jyothiprasadb at gmail.com (mailto:jyothiprasadb at gmail.com) Posted by forums Original post: https://developer.jboss.org/message/920748#920748 From forge-users at lists.jboss.org Fri Mar 6 14:44:11 2015 From: forge-users at lists.jboss.org (forge-users at lists.jboss.org) Date: Fri, 06 Mar 2015 14:44:11 EST Subject: [forge-users] Who wants to review a tutorial on "Creating and In-Reply-To: Message-ID: <14135095.771425671081500.JavaMail.jive@jive-app01.app.mwc.hst.phx2.redhat.com> testing a command that creates Java code" ? MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit I'd be interested in trying the tutorial from the perspective of someone who has never used Forge and who had to look it up to find out what it does. I do teach EE so I will understand what it trying to do {emoticon:class=jive_macro_emoticon jive_macro jive_emote|src=https://static.jboss.org/developer/6.0.3.60ddddd/images/emoticons/wink.png|__jive_emoticon_name=wink} Posted by forums Original post: https://developer.jboss.org/message/920822#920822 From antonio.mailing at gmail.com Sat Mar 7 09:33:18 2015 From: antonio.mailing at gmail.com (Antonio Goncalves) Date: Sat, 7 Mar 2015 15:33:18 +0100 Subject: [forge-users] Who wants to review a tutorial on "Creating and In-Reply-To: <14135095.771425671081500.JavaMail.jive@jive-app01.app.mwc.hst.phx2.redhat.com> References: <14135095.771425671081500.JavaMail.jive@jive-app01.app.mwc.hst.phx2.redhat.com> Message-ID: Sure, give me your email address and I'll add it to the Google Doc Antonio 2015-03-06 20:44 GMT+01:00 : > testing a command that creates Java code" ? > MIME-Version: 1.0 > Content-Type: text/plain; charset=UTF-8 > Content-Transfer-Encoding: 7bit > > I'd be interested in trying the tutorial from the perspective of someone > who has never used Forge and who had to look it up to find out what it > does. I do teach EE so I will understand what it trying to do > {emoticon:class=jive_macro_emoticon jive_macro jive_emote|src= > https://static.jboss.org/developer/6.0.3.60ddddd/images/emoticons/wink.png|__jive_emoticon_name=wink > } > > Posted by forums > Original post: https://developer.jboss.org/message/920822#920822 > _______________________________________________ > forge-users mailing list > forge-users at lists.jboss.org > https://lists.jboss.org/mailman/listinfo/forge-users > -- Antonio Goncalves Software architect and Java Champion Web site | Twitter | LinkedIn | Paris JUG | Devoxx France -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/forge-users/attachments/20150307/45a983ed/attachment.html From lincolnbaxter at gmail.com Tue Mar 10 10:20:22 2015 From: lincolnbaxter at gmail.com (Lincoln Baxter, III) Date: Tue, 10 Mar 2015 10:20:22 -0400 Subject: [forge-users] Announcement : new addon : MetaForgeWizard In-Reply-To: <64153932.551425477508212.JavaMail.jive@jive-app01.app.mwc.hst.phx2.redhat.com> References: <64153932.551425477508212.JavaMail.jive@jive-app01.app.mwc.hst.phx2.redhat.com> Message-ID: Haha! That is awesome! Very cool. Would you want to create a short video tutorial that shows how to use your Addon and put it on YouTube? We could post it in our news section. Cheers! ~Lincoln On Wed, Mar 4, 2015 at 8:57 AM, wrote: > MetaForgeWizard is an addon that will save you time when creating a > wizard-style addon. > > Take a look at wadael/MetaForgeWizard ? GitHub ( > https://github.com/wadael/MetaForgeWizard) > > Thanks for your feedback. > > > J?r?me > > Posted by forums > Original post: https://developer.jboss.org/message/920529#920529 > > _______________________________________________ > forge-users mailing list > forge-users at lists.jboss.org > https://lists.jboss.org/mailman/listinfo/forge-users -- Lincoln Baxter, III http://ocpsoft.org "Simpler is better." -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/forge-users/attachments/20150310/989b3119/attachment.html From lincolnbaxter at gmail.com Tue Mar 10 10:20:39 2015 From: lincolnbaxter at gmail.com (Lincoln Baxter, III) Date: Tue, 10 Mar 2015 10:20:39 -0400 Subject: [forge-users] Announcement : new addon : MetaForgeWizard In-Reply-To: References: <64153932.551425477508212.JavaMail.jive@jive-app01.app.mwc.hst.phx2.redhat.com> Message-ID: Also, I don't know why I just got this email today. Sorry for the late reply! On Tue, Mar 10, 2015 at 10:20 AM, Lincoln Baxter, III < lincolnbaxter at gmail.com> wrote: > Haha! That is awesome! > > Very cool. Would you want to create a short video tutorial that shows how > to use your Addon and put it on YouTube? We could post it in our news > section. > > Cheers! > ~Lincoln > > On Wed, Mar 4, 2015 at 8:57 AM, wrote: > >> MetaForgeWizard is an addon that will save you time when creating a >> wizard-style addon. >> >> Take a look at wadael/MetaForgeWizard ? GitHub ( >> https://github.com/wadael/MetaForgeWizard) >> >> Thanks for your feedback. >> >> >> J?r?me >> >> Posted by forums >> Original post: https://developer.jboss.org/message/920529#920529 >> >> _______________________________________________ >> forge-users mailing list >> forge-users at lists.jboss.org >> https://lists.jboss.org/mailman/listinfo/forge-users > > > > > -- > Lincoln Baxter, III > http://ocpsoft.org > "Simpler is better." > -- Lincoln Baxter, III http://ocpsoft.org "Simpler is better." -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/forge-users/attachments/20150310/4bc2c992/attachment-0001.html From antonio.mailing at gmail.com Fri Mar 13 13:55:10 2015 From: antonio.mailing at gmail.com (Antonio Goncalves) Date: Fri, 13 Mar 2015 18:55:10 +0100 Subject: [forge-users] Who wants to review a tutorial on "Creating and testing a command that creates Java code" ? In-Reply-To: References: Message-ID: Hi all, The doc has been reviewed by some of you (Thanks guys !!!). We will need to start its publication, so if some of you want to have a read through, there are a few days left. Antonio 2015-03-04 12:34 GMT+01:00 Antonio Goncalves : > Hi all, > > We are working on a set of tutorials on "How to create and test a new > command" so new comers can contribute better in an easier way. There are a > few JIRAs here about this topic : > > https://issues.jboss.org/browse/FORGE-2231 > > This first tutorial is very basic but it allows answering a few bunch of > questions, and show "reasonably easy" code : > > https://issues.jboss.org/browse/FORGE-2232 > > The tutorial is for now in a Google Doc document and we will need a couple > of external eyes to review it : > > > https://docs.google.com/document/d/11Y-zcl2-fp-Kxdq1wq8gM37_AUeWX6SQiYV65d7H5es/edit?usp=sharing > > > Anybody interested ? We would give you write access to the document so you > can change it, annotate it and question it. > > Thanks > > -- > Antonio Goncalves > Software architect and Java Champion > > Web site | Twitter > | LinkedIn > | Paris JUG > | Devoxx France > -- Antonio Goncalves Software architect and Java Champion Web site | Twitter | LinkedIn | Paris JUG | Devoxx France -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/forge-users/attachments/20150313/0cb6fb1e/attachment.html