]
CDW Engine updated JBDS-3290:
-----------------------------
CDW pm_ack: ?
CDW release: ?
Target Release: 8.0.3.GA
Support for auto generating jboss-deployment-structure based on JBoss
Modules selected in a project
---------------------------------------------------------------------------------------------------
Key: JBDS-3290
URL:
https://issues.jboss.org/browse/JBDS-3290
Project: Developer Studio (JBoss Developer Studio)
Issue Type: Feature Request
Components: integration, runtime
Affects Versions: 8.0.0.GA
Reporter: Mustafa Musaji
If you have a POM for a project that defines the following
{code}
<project>
...
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.jboss.bom</groupId>
<artifactId>eap6-supported-artifacts</artifactId>
<version>6.3.1.GA</version>
<scope>import</scope>
<type>pom</type>
</dependency>
</dependencies>
</dependencyManagement>
...
<dependencies>
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
</project>
{code}
The tooling should create a jboss-deployment-structure.xml that contains the
"org.apache.commons.beanutils" dependency automatically.