SDM incremental recompiles in non-servlet projects?

2015-02-02 Thread Ali Akhtar
I'd like to use GWT with SDM in a project that doesn't use servlets, instead its using the vert.x framework, with IntelliJ. Currently, I have two run configurations in IntelliJ. The first one starts the vert.x web framework which listens on port 80, and on http://localhost , it sends my host.h

Re: SDM incremental recompiles in non-servlet projects?

2015-02-02 Thread Ali Akhtar
> localhost:1978 Sorry, that should've been: localhost:9876 On Monday, February 2, 2015 at 6:30:40 PM UTC+5, Ali Akhtar wrote: > > I'd like to use GWT with SDM in a project that doesn't use servlets, > instead its using the vert.x framework, with IntelliJ. > > Currently, I have two run configur

Re: SDM incremental recompiles in non-servlet projects?

2015-02-02 Thread Ali Akhtar
Replacing the link to ModuleName.nocache.js with: http://127.0.0.1:9876/recompile-requester/ModuleName";> in dev mode, triggers a recompile, and works perfectly. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from thi

Re: SDM incremental recompiles in non-servlet projects?

2015-02-02 Thread Thomas Broyer
Anything that can serve files from the file-system can be used with SDM: just pass "-launcherDir path/to/some/directory" to the CodeServer and it will output a *.nocache.js in there that triggers a recompile on page load. On Monday, February 2, 2015 at 2:30:40 PM UTC+1, Ali Akhtar wrote: > > I'

Re: SDM incremental recompiles in non-servlet projects?

2015-02-03 Thread Ali Akhtar
When I specify -launcherDir gives an 'unknown argument' error . I'm passing it as a devMode parameter in my IntelliJ Run configuration. When I use -workDir , that works, however in my specified dir I see com.foo.myProject, and inside I see compile-1, which then contains war/moduleName , which in r

Re: SDM incremental recompiles in non-servlet projects?

2015-02-04 Thread Thomas Broyer
-launcherDir is an argument of CodeServer. If using DevMode, then use -war instead. On Wednesday, February 4, 2015 at 1:03:27 AM UTC+1, Ali Akhtar wrote: > > When I specify -launcherDir gives an 'unknown argument' error . I'm > passing it as a devMode parameter in my IntelliJ Run configuration.

Re: SDM incremental recompiles in non-servlet projects?

2015-02-04 Thread David
It would be nice if we could trigger de code-server using a URL parameter like we did before with devmode. Our app is using jboss fuse (using osgi bundles to deploy apps) and there I don't see how I could handle running a bundle from some folder iso a jar. We use bnd to generate the required manif