[forge-dev] [JBoss JIRA] Commented: (SEAMFORGE-256) AS7 deploy plugin should have dist as dependency to prevent requirement for JBOSS_HOME

Lincoln Baxter III (JIRA) jira-events at lists.jboss.org
Tue Jul 19 10:43:23 EDT 2011


    [ https://issues.jboss.org/browse/SEAMFORGE-256?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12615053#comment-12615053 ] 

Lincoln Baxter III commented on SEAMFORGE-256:
----------------------------------------------

The beauty of Forge is that we can support *everybody's* use case! :) I think this is a good addition, and will help streamline path to deployment on AS7, even if Forge actually handles unzipping itself (which I think may be the route I want to take, instead of using maven.)

Forge can unzip servers to its local ~/.forge/ directory, and use those locations for deployments. But I think in the short term, using maven is a good option, too. Some people may want that, too.

> AS7 deploy plugin should have dist as dependency to prevent requirement for JBOSS_HOME
> --------------------------------------------------------------------------------------
>
>                 Key: SEAMFORGE-256
>                 URL: https://issues.jboss.org/browse/SEAMFORGE-256
>             Project: Seam 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.
For more information on JIRA, see: http://www.atlassian.com/software/jira

        


More information about the forge-dev mailing list