History | Log In     View a printable version of the current page.  
Issue Details (XML | Word | Printable)

Key: IDEADEV-26536
Type: Usability Problem Usability Problem
Status: Resolved Resolved
Resolution: Fixed
Priority: Normal Normal
Assignee: Anton Makeev
Reporter: Geoffrey De Smet
Votes: 1
Watchers: 2
Operations

If you were logged in you would be able to see more operations.
IDEA: Development

Maven ear module synchronization doesn't allow global jars and doesn't respect bundleFileName and includeInApplicationXml

Created: 02 May 08 22:23   Updated: Monday 18:06
Component/s: Maven Integration
Fix Version/s: Diana 8375, Selena Next EAP

Original Estimate: Unknown Remaining Estimate: Unknown Time Spent: Unknown

Build: 7,757
Fixed in build: 8,366


 Description  « Hide
My ear pom.xml contains this configuration:

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-ear-plugin</artifactId>
<configuration>
<modules>
<!-- Internal dependencies -->
<jarModule>
<groupId>org.drools.solver.examples</groupId>
<artifactId>examination-domain</artifactId>
<bundleFileName>examination-domain.jar</bundleFileName>
<includeInApplicationXml>true</includeInApplicationXml>
</jarModule>
<ejbModule>
<groupId>org.drools.solver.examples</groupId>
<artifactId>examination-business</artifactId>
<bundleFileName>examination-business.jar</bundleFileName>
</ejbModule>
<webModule>
<groupId>org.drools.solver.examples</groupId>
<artifactId>examination-web</artifactId>
<bundleFileName>examination-web.jar</bundleFileName>
<contextRoot>/messor-web</contextRoot>
</webModule>

<!-- Global libs -->
<jarModule>
<groupId>org.jboss.seam</groupId>
<artifactId>jboss-seam</artifactId>
<bundleFileName>jboss-seam.jar</bundleFileName>
<includeInApplicationXml>true</includeInApplicationXml>
</jarModule>
<jarModule>
<groupId>org.jboss.el</groupId>
<artifactId>jboss-el</artifactId>
<bundleFileName>jboss-el.jar</bundleFileName>
<includeInApplicationXml>true</includeInApplicationXml>
</jarModule>
</modules>
</configuration>
</plugin>
</plugins>
</build>

Everytime I use the maven synchronization feature, IntelliJ ignores the above configuration and overwrites working iml's with not working iml's.



 All   Comments   Work Log   Change History      Sort Order:
There are no comments yet on this issue.