peez80
peez80

Reputation: 1643

IntelliJ: Automatic creation of ear artifact from gradle project

I'm having a gradle project with the following structure:

Root project 'project-gradle'
 +--- Project 'ejb'
 +--- Project 'ear'
 \--- Project 'war'

The build is working perfectly on command line, I'm using the ear plugin and it is built correctly.

Unfortunately when I import the project to IntelliJ (or open it with the gradle-created intelliJ files), the only available artifact is war. But I need the ear. Any way to get this without manually defining the ear-Artifact inside IntelliJ?

Upvotes: 5

Views: 1163

Answers (1)

Denis Borovikov
Denis Borovikov

Reputation: 747

Seems automatic artifact configuration is not implemented yet in IDEA

Upvotes: 3

Related Questions