[
https://issues.jboss.org/browse/FORGE-161?page=com.atlassian.jira.plugin....
]
Lincoln Baxter III closed FORGE-161.
------------------------------------
Resolution: Duplicate Issue
AS7 deploy plugin should have dist as dependency to prevent
requirement for JBOSS_HOME
--------------------------------------------------------------------------------------
Key: FORGE-161
URL:
https://issues.jboss.org/browse/FORGE-161
Project: Forge
Issue Type: Enhancement
Components: Blessed Plugins
Affects Versions: 1.0.0.Alpha4
Reporter: Ken Finnigan
To remove the need for users to specify JBOSS_HOME when running the AS7 deploy plugin on
forge you could add the following Maven plugin:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>unpack-as7</id>
<phase>process-test-classes</phase> <!-- So run
before testing -->
<goals>
<goal>unpack</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>org.jboss.as</groupId>
<artifactId>jboss-as-dist</artifactId>
<version>7.0.0.Final</version>
<type>zip</type>
<overWrite>false</overWrite>
<outputDirectory>${project.build.directory}</outputDirectory>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see:
http://www.atlassian.com/software/jira