[JBoss JIRA] (FORGE-801) Support for Transactional Resources
by George Gastaldi (JIRA)
[ https://issues.jboss.org/browse/FORGE-801?page=com.atlassian.jira.plugin.... ]
George Gastaldi reassigned FORGE-801:
-------------------------------------
Assignee: George Gastaldi
> Support for Transactional Resources
> ------------------------------------
>
> Key: FORGE-801
> URL: https://issues.jboss.org/browse/FORGE-801
> Project: Forge
> Issue Type: Feature Request
> Components: Resources API
> Affects Versions: 1.2.1.Final
> Reporter: George Gastaldi
> Assignee: George Gastaldi
> Priority: Critical
> Fix For: 2.x Future
>
> Attachments: IMG_20130225_215814.jpg, UserGuide_TXFileInJava_v1.0.pdf
>
>
> FileResources should be transactional, that is, allow modification of resources for displaying purposes and allow commit or rollback of changes.
> The implementation could copy the modified file to a temporary folder and when commit is invoked, copy back the contents to the original folder.
> It may be necessary to provide a pointer back to the original file (Properties file next to changed file maybe?).
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 6 months
[JBoss JIRA] (FORGE-1234) Offer the possibility to add Maven dependencies to a forge archive
by Koen Aers (JIRA)
[ https://issues.jboss.org/browse/FORGE-1234?page=com.atlassian.jira.plugin... ]
Koen Aers updated FORGE-1234:
-----------------------------
Description:
It would be nice to do something along these lines:
{code}
ForgeArchive archive = ShrinkWrap
.create(ForgeArchive.class)
.addBeansXML()
.addAsAddonDependencies(
...)
.addAsMavenDependencies(
MavenDependency.create("com.h2database:h2:1.3.167"));
{code}
was:
It would be nice to do something along these lines:
{code}
ForgeArchive archive = ShrinkWrap
.create(ForgeArchive.class)
.addBeansXML()
.addAsAddonDependencies(
...)
.addPackages(true, org.h2.Driver.class.getPackage())
.addClass(Server.class)
.addClass(ShutdownHandler.class);
{code}
> Offer the possibility to add Maven dependencies to a forge archive
> ------------------------------------------------------------------
>
> Key: FORGE-1234
> URL: https://issues.jboss.org/browse/FORGE-1234
> Project: Forge
> Issue Type: Feature Request
> Components: Test Harness
> Affects Versions: 2.0.0.Alpha12
> Reporter: Koen Aers
>
> It would be nice to do something along these lines:
> {code}
> ForgeArchive archive = ShrinkWrap
> .create(ForgeArchive.class)
> .addBeansXML()
> .addAsAddonDependencies(
> ...)
> .addAsMavenDependencies(
> MavenDependency.create("com.h2database:h2:1.3.167"));
> {code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 6 months
[JBoss JIRA] (FORGE-1234) Offer the possibility to add Maven dependencies to a forge archive
by Koen Aers (JIRA)
[ https://issues.jboss.org/browse/FORGE-1234?page=com.atlassian.jira.plugin... ]
Koen Aers updated FORGE-1234:
-----------------------------
Description:
It would be nice to do something along these lines:
{code}
ForgeArchive archive = ShrinkWrap
.create(ForgeArchive.class)
.addBeansXML()
.addAsAddonDependencies(
...)
.addPackages(true, org.h2.Driver.class.getPackage())
.addClass(Server.class)
.addClass(ShutdownHandler.class);
{code}
was:
It would be nice to do something along these lines:
{code}
ForgeArchive archive = ShrinkWrap
.create(ForgeArchive.class)
.addBeansXML()
.addAsAddonDependencies(
...)
.addPackages(true, org.h2.Driver.class.getPackage())
.addClass(Server.class)
.addClass(ShutdownHandler.class);
{code}
> Offer the possibility to add Maven dependencies to a forge archive
> ------------------------------------------------------------------
>
> Key: FORGE-1234
> URL: https://issues.jboss.org/browse/FORGE-1234
> Project: Forge
> Issue Type: Feature Request
> Components: Test Harness
> Affects Versions: 2.0.0.Alpha12
> Reporter: Koen Aers
>
> It would be nice to do something along these lines:
> {code}
> ForgeArchive archive = ShrinkWrap
> .create(ForgeArchive.class)
> .addBeansXML()
> .addAsAddonDependencies(
> ...)
> .addPackages(true, org.h2.Driver.class.getPackage())
> .addClass(Server.class)
> .addClass(ShutdownHandler.class);
> {code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 6 months
[JBoss JIRA] (FORGE-1234) Offer the possibility to add Maven dependencies to a forge archive
by Koen Aers (JIRA)
[ https://issues.jboss.org/browse/FORGE-1234?page=com.atlassian.jira.plugin... ]
Koen Aers updated FORGE-1234:
-----------------------------
Description:
It would be nice to do something along these lines:
{code}
ForgeArchive archive = ShrinkWrap
.create(ForgeArchive.class)
.addBeansXML()
.addAsAddonDependencies(
...)
.addPackages(true, org.h2.Driver.class.getPackage())
.addClass(Server.class)
.addClass(ShutdownHandler.class);
{code}
was:
It would be nice to do something along these lines:
<code>
ForgeArchive archive = ShrinkWrap
.create(ForgeArchive.class)
.addBeansXML()
.addAsAddonDependencies(
...)
.addPackages(true, org.h2.Driver.class.getPackage())
.addClass(Server.class)
.addClass(ShutdownHandler.class);
</code>
> Offer the possibility to add Maven dependencies to a forge archive
> ------------------------------------------------------------------
>
> Key: FORGE-1234
> URL: https://issues.jboss.org/browse/FORGE-1234
> Project: Forge
> Issue Type: Feature Request
> Components: Test Harness
> Affects Versions: 2.0.0.Alpha12
> Reporter: Koen Aers
>
> It would be nice to do something along these lines:
> {code}
> ForgeArchive archive = ShrinkWrap
> .create(ForgeArchive.class)
> .addBeansXML()
> .addAsAddonDependencies(
> ...)
> .addPackages(true, org.h2.Driver.class.getPackage())
> .addClass(Server.class)
> .addClass(ShutdownHandler.class);
> {code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 6 months
[JBoss JIRA] (FORGE-1234) Offer the possibility to add Maven dependencies to a forge archive
by Koen Aers (JIRA)
[ https://issues.jboss.org/browse/FORGE-1234?page=com.atlassian.jira.plugin... ]
Koen Aers updated FORGE-1234:
-----------------------------
Description:
It would be nice to do something along these lines:
<code>
ForgeArchive archive = ShrinkWrap
.create(ForgeArchive.class)
.addBeansXML()
.addAsAddonDependencies(
...)
.addPackages(true, org.h2.Driver.class.getPackage())
.addClass(Server.class)
.addClass(ShutdownHandler.class);
</code>
was:
It would be nice to do something along these lines:
ForgeArchive archive = ShrinkWrap
.create(ForgeArchive.class)
.addBeansXML()
.addAsAddonDependencies(
...)
.addPackages(true, org.h2.Driver.class.getPackage())
.addClass(Server.class)
.addClass(ShutdownHandler.class);
> Offer the possibility to add Maven dependencies to a forge archive
> ------------------------------------------------------------------
>
> Key: FORGE-1234
> URL: https://issues.jboss.org/browse/FORGE-1234
> Project: Forge
> Issue Type: Feature Request
> Components: Test Harness
> Affects Versions: 2.0.0.Alpha12
> Reporter: Koen Aers
>
> It would be nice to do something along these lines:
> <code>
> ForgeArchive archive = ShrinkWrap
> .create(ForgeArchive.class)
> .addBeansXML()
> .addAsAddonDependencies(
> ...)
> .addPackages(true, org.h2.Driver.class.getPackage())
> .addClass(Server.class)
> .addClass(ShutdownHandler.class);
> </code>
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 6 months
[JBoss JIRA] (FORGE-1234) Offer the possibility to add Maven dependencies to a forge archive
by Koen Aers (JIRA)
[ https://issues.jboss.org/browse/FORGE-1234?page=com.atlassian.jira.plugin... ]
Koen Aers updated FORGE-1234:
-----------------------------
Description:
It would be nice to do something along these lines:
ForgeArchive archive = ShrinkWrap
.create(ForgeArchive.class)
.addBeansXML()
.addAsAddonDependencies(
...)
.addPackages(true, org.h2.Driver.class.getPackage())
.addClass(Server.class)
.addClass(ShutdownHandler.class);
was:
It would be nice to do something along these lines:
ForgeArchive archive = ShrinkWrap
.create(ForgeArchive.class)
.addBeansXML()
.addAsAddonDependencies(
...)
.addPackages(true, org.h2.Driver.class.getPackage())
.addClass(Server.class)
.addClass(ShutdownHandler.class);
> Offer the possibility to add Maven dependencies to a forge archive
> ------------------------------------------------------------------
>
> Key: FORGE-1234
> URL: https://issues.jboss.org/browse/FORGE-1234
> Project: Forge
> Issue Type: Feature Request
> Components: Test Harness
> Affects Versions: 2.0.0.Alpha12
> Reporter: Koen Aers
>
> It would be nice to do something along these lines:
> ForgeArchive archive = ShrinkWrap
> .create(ForgeArchive.class)
> .addBeansXML()
> .addAsAddonDependencies(
> ...)
> .addPackages(true, org.h2.Driver.class.getPackage())
> .addClass(Server.class)
> .addClass(ShutdownHandler.class);
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 6 months
[JBoss JIRA] (FORGE-1234) Offer the possibility to add Maven dependencies to a forge archive
by Koen Aers (JIRA)
[ https://issues.jboss.org/browse/FORGE-1234?page=com.atlassian.jira.plugin... ]
Koen Aers updated FORGE-1234:
-----------------------------
Description:
It would be nice to do something along these lines:
ForgeArchive archive = ShrinkWrap
.create(ForgeArchive.class)
.addBeansXML()
.addAsAddonDependencies(
...)
.addPackages(true, org.h2.Driver.class.getPackage())
.addClass(Server.class)
.addClass(ShutdownHandler.class);
> Offer the possibility to add Maven dependencies to a forge archive
> ------------------------------------------------------------------
>
> Key: FORGE-1234
> URL: https://issues.jboss.org/browse/FORGE-1234
> Project: Forge
> Issue Type: Feature Request
> Components: Test Harness
> Affects Versions: 2.0.0.Alpha12
> Reporter: Koen Aers
>
> It would be nice to do something along these lines:
> ForgeArchive archive = ShrinkWrap
> .create(ForgeArchive.class)
> .addBeansXML()
> .addAsAddonDependencies(
> ...)
> .addPackages(true, org.h2.Driver.class.getPackage())
> .addClass(Server.class)
> .addClass(ShutdownHandler.class);
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 6 months