Re: Project structure in IntelliJ

2016-03-01 Thread Rogelio Flores
I don't put my module file or ui.xml files outside of main/java, but I do 
have gss, and other resources (images, icons, etc) in main/resources. I do 
see a visual warning on ui.xml or other files that include these resources, 
but it works fine. I have main/resources configured as a "Resource Folder" 
in my Project Structure and I think that's all you need.

On Tuesday, March 1, 2016 at 5:00:39 AM UTC-7, Benjamin Tillman wrote:
>
> No worries, that will be my next stop. I just thought another GWT / 
> IntelliJ user might have already figured this out.
>
> Cheers,
> Ben.
>
> On Tuesday, 1 March 2016 21:44:16 UTC+11, Thomas Broyer wrote:
>>
>> You may want to contact JetBrains' support directly: 
>> https://www.jetbrains.com/support/
>> (hey, you paid for their product after all!)
>>
>> On Monday, February 29, 2016 at 7:21:44 PM UTC+1, Benjamin Tillman wrote:
>>>
>>> Maybe I'm just missing something, but I can't find a way to stray from 
>>> IntelliJ's suggested package structure for GWT apps (see this link 
>>> ).
>>>
>>> For example, if I have an application organised using a standard Maven 
>>> directory layout, I'd like to place my module file (module.gwt.xml) in the 
>>> src/main/resources/com/example/ folder, but this breaks IntelliJ's GWT 
>>> build (the GWT compiler simply reports back it can't find module.gwt.xml on 
>>> the classpath). Including src/main/resources/ as a content root in 
>>> IntelliJ's project structure window doesn't seem to make any difference 
>>> either.
>>>
>>> It's the same deal for my GSS files, but in this case it's even more 
>>> annoying because as soon as my GSS files are outside of src/main/java then 
>>> I lose some IDE support for those files too.
>>>
>>> I can build with Maven or Gradle no problems, but I'm wondering if it's 
>>> possible to get IntelliJ to do the same. Mostly for the IDE support, but 
>>> just in general would be great.
>>>
>>> Cheers,
>>> Ben.
>>>
>>

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: Project structure in IntelliJ

2016-03-01 Thread Benjamin Tillman
No worries, that will be my next stop. I just thought another GWT / 
IntelliJ user might have already figured this out.

Cheers,
Ben.

On Tuesday, 1 March 2016 21:44:16 UTC+11, Thomas Broyer wrote:
>
> You may want to contact JetBrains' support directly: 
> https://www.jetbrains.com/support/
> (hey, you paid for their product after all!)
>
> On Monday, February 29, 2016 at 7:21:44 PM UTC+1, Benjamin Tillman wrote:
>>
>> Maybe I'm just missing something, but I can't find a way to stray from 
>> IntelliJ's suggested package structure for GWT apps (see this link 
>> ).
>>
>> For example, if I have an application organised using a standard Maven 
>> directory layout, I'd like to place my module file (module.gwt.xml) in the 
>> src/main/resources/com/example/ folder, but this breaks IntelliJ's GWT 
>> build (the GWT compiler simply reports back it can't find module.gwt.xml on 
>> the classpath). Including src/main/resources/ as a content root in 
>> IntelliJ's project structure window doesn't seem to make any difference 
>> either.
>>
>> It's the same deal for my GSS files, but in this case it's even more 
>> annoying because as soon as my GSS files are outside of src/main/java then 
>> I lose some IDE support for those files too.
>>
>> I can build with Maven or Gradle no problems, but I'm wondering if it's 
>> possible to get IntelliJ to do the same. Mostly for the IDE support, but 
>> just in general would be great.
>>
>> Cheers,
>> Ben.
>>
>

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: Project structure in IntelliJ

2016-03-01 Thread Thomas Broyer
You may want to contact JetBrains' support 
directly: https://www.jetbrains.com/support/
(hey, you paid for their product after all!)

On Monday, February 29, 2016 at 7:21:44 PM UTC+1, Benjamin Tillman wrote:
>
> Maybe I'm just missing something, but I can't find a way to stray from 
> IntelliJ's suggested package structure for GWT apps (see this link 
> ).
>
> For example, if I have an application organised using a standard Maven 
> directory layout, I'd like to place my module file (module.gwt.xml) in the 
> src/main/resources/com/example/ folder, but this breaks IntelliJ's GWT 
> build (the GWT compiler simply reports back it can't find module.gwt.xml on 
> the classpath). Including src/main/resources/ as a content root in 
> IntelliJ's project structure window doesn't seem to make any difference 
> either.
>
> It's the same deal for my GSS files, but in this case it's even more 
> annoying because as soon as my GSS files are outside of src/main/java then 
> I lose some IDE support for those files too.
>
> I can build with Maven or Gradle no problems, but I'm wondering if it's 
> possible to get IntelliJ to do the same. Mostly for the IDE support, but 
> just in general would be great.
>
> Cheers,
> Ben.
>

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Project structure in IntelliJ

2016-02-29 Thread Benjamin Tillman
Maybe I'm just missing something, but I can't find a way to stray from 
IntelliJ's suggested package structure for GWT apps (see this link 
).

For example, if I have an application organised using a standard Maven 
directory layout, I'd like to place my module file (module.gwt.xml) in the 
src/main/resources/com/example/ folder, but this breaks IntelliJ's GWT 
build (the GWT compiler simply reports back it can't find module.gwt.xml on 
the classpath). Including src/main/resources/ as a content root in 
IntelliJ's project structure window doesn't seem to make any difference 
either.

It's the same deal for my GSS files, but in this case it's even more 
annoying because as soon as my GSS files are outside of src/main/java then 
I lose some IDE support for those files too.

I can build with Maven or Gradle no problems, but I'm wondering if it's 
possible to get IntelliJ to do the same. Mostly for the IDE support, but 
just in general would be great.

Cheers,
Ben.

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.