Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where does Grails/IntelliJ IDEA store .class files?

I just can't seem to find the .class files for my Groovy source code in IntelliJ IDEA Grails projekt. I've created a grails app "qotd" and a plugin "selenium" which is kind of a grails app itself, as you might know. So just to keep things tidy here's a screenshot of my Grails View: Grails View

As you can see I have source code for both Java and Groovy. Both share the same package "de.it2m.testcases". Could this be a problem? Anyway, now I need to know where the .class files are stored. I've compiled both the "qotd" app and its "selenium" plugin using the "grails run-app" command without errors, so I'm sure there must be the .class files somewhere. I already found the class file for the "SeGridTest.java" class in:

...IntelliJ workspace\qotd\out\production\selenium-inplacePlugin\de\it2m\testcases

Unfortunately the "SeleniumTest.class" is missing in this directory (as I would have expected it there). I was browsing the ".grails" directory as well but without any success. Where could the SeleniumTest.class hide...?

Note: I'm working on Windows 8.1 Pro, IntelliJ ultimate 13.1.4 and Grails 2.3.8

like image 296
Erando Avatar asked Oct 21 '14 08:10

Erando


1 Answers

@Tinku Saini Thanks for your help! The .class files get into the "target" directory

like image 98
Erando Avatar answered Oct 20 '22 20:10

Erando