[JBoss JIRA] Updated: (SEAMFORGE-139) Generate scaffolding views for entities located into an external jar
by Lincoln Baxter III (JIRA)
[ https://issues.jboss.org/browse/SEAMFORGE-139?page=com.atlassian.jira.plu... ]
Lincoln Baxter III updated SEAMFORGE-139:
-----------------------------------------
Fix Version/s: Future
This would be difficult to do without loading the given JAR-file into a running application and inspecting it using Reflection. We can work on that, but it's not something that will make it into forge 1.0.0.
Deferring to future release.
> Generate scaffolding views for entities located into an external jar
> --------------------------------------------------------------------
>
> Key: SEAMFORGE-139
> URL: https://issues.jboss.org/browse/SEAMFORGE-139
> Project: Seam Forge
> Issue Type: Feature Request
> Affects Versions: 1.0.0.Alpha3
> Reporter: wiktorowski maximilien
> Priority: Minor
> Fix For: Future
>
>
> Generating crud views for entities located into an external jar is a use case i'd like to see implemented in forge.
> In my case i have a model.jar containing my entities and an admin.war generated with seam forge.
> I'd like to use from-entity to generate scaffolding views in admin.war for the entities located in model.jar
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 2 months
[JBoss JIRA] Commented: (SEAMFORGE-256) AS7 deploy plugin should have dist as dependency to prevent requirement for JBOSS_HOME
by Lincoln Baxter III (JIRA)
[ https://issues.jboss.org/browse/SEAMFORGE-256?page=com.atlassian.jira.plu... ]
Lincoln Baxter III commented on SEAMFORGE-256:
----------------------------------------------
Actually! We could do the start/stop using the arquillian containers (standalone now) just as JARs to control this! It would also mean we could support starting/stopping as well as proper deploying.
> 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
> Assignee: Paul Bakker
>
> 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
13 years, 3 months
[JBoss JIRA] Commented: (SEAMFORGE-256) AS7 deploy plugin should have dist as dependency to prevent requirement for JBOSS_HOME
by Lincoln Baxter III (JIRA)
[ https://issues.jboss.org/browse/SEAMFORGE-256?page=com.atlassian.jira.plu... ]
Lincoln Baxter III commented on SEAMFORGE-256:
----------------------------------------------
Thanks for picking this one up, paul! I think you have the right experience in order to do this right :)
Do you think we can do startup/shutdown of the AS7 server as well? That would be harder but certainly doable (JBoss Tools does it.)
That would mean forge could really stand on its own when it comes to developing webapps!
> 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
> Assignee: Paul Bakker
>
> 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
13 years, 3 months
[JBoss JIRA] Assigned: (SEAMFORGE-256) AS7 deploy plugin should have dist as dependency to prevent requirement for JBOSS_HOME
by Paul Bakker (JIRA)
[ https://issues.jboss.org/browse/SEAMFORGE-256?page=com.atlassian.jira.plu... ]
Paul Bakker reassigned SEAMFORGE-256:
-------------------------------------
Assignee: Paul Bakker
> 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
> Assignee: Paul Bakker
>
> 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
13 years, 3 months