Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 706
peez80 Avatar asked Oct 20 '22 13:10

peez80


1 Answers

Seems automatic artifact configuration is not implemented yet in IDEA

like image 116
Denis Borovikov Avatar answered Oct 22 '22 04:10

Denis Borovikov