[ANN] AppFuse 2.0 RC1 Released!

View: New views
5 Messages — Rating Filter:   Alert me  

[ANN] AppFuse 2.0 RC1 Released!

by mraible :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

The AppFuse Team is pleased to announce the release of AppFuse 2.0 RC1!

This release marks a huge step in the march to releasing AppFuse 2.0. This release puts the finishing touches on the AppFuse Maven Plugin (AMP), which offers CRUD generation, as well as the ability to change AppFuse from "embedded mode" to "full source" (like 1.x). In addition, we've addressed over 100 issues in preparation for the final 2.0 release. We hope to fix any bugs related to this release and release 2.0 Final in the next week or two.

The videos still represent how M5 works, but things have been simplified (now you don't need to run appfuse:install after appfuse:gen).

AppFuse 2.0 is available as a Maven archetype. For information on creating a new project using this release, please see the QuickStart Guide or the Hello World video .

If you've used AppFuse 1.x, but not 2.x, you'll want to read the FAQ. Join the user mailing list if you have any questions. The Maven Reference Guide has a map of Ant -> Maven commands. Maven for Newbies might also be useful if you've never used Maven before. There is some support for Ant in this release.

For more information, please see the 2.0 RC1 Release Notes. The 2.0 series of AppFuse has a minumum requirement of the following specification versions:

  • Java Servlet 2.4 and JSP 2.0 (2.1 for JSF)
  • Java 5+

We appreciate the time and effort everyone has put toward contributing code and documentation, posting to the mailing lists, and logging issues.

Thanks for using AppFuse - we hope you enjoy this release!

Matt

--
http://raibledesigns.com

Re: [ANN] AppFuse 2.0 RC1 Released!

by Trent Bartlem :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

On Tue, 4 Sep 2007 01:39:20 -0600, Matt Raible wrote
> The 2.0 series of AppFuse has a minumum requirement of the following
> specification versions:
>
>    - Java Servlet 2.4 and JSP 2.0 (2.1 for JSF)
>    - Java 5+

Is this for development, or deployment?
I was under the impression that Appfuse 2 used retroweaver or similar?

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...


Re: [ANN] AppFuse 2.0 RC1 Released!

by mraible :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

On 9/4/07, Trent <appfuse@...> wrote:
> On Tue, 4 Sep 2007 01:39:20 -0600, Matt Raible wrote
> > The 2.0 series of AppFuse has a minumum requirement of the following
> > specification versions:
> >
> >    - Java Servlet 2.4 and JSP 2.0 (2.1 for JSF)
> >    - Java 5+
>
> Is this for development, or deployment?
> I was under the impression that Appfuse 2 used retroweaver or similar?

This is for development. In theory, Retroweaver should be possible.
However, I tried the maven-retroweaver-plugin a couple months ago and
it failed completely. Unfortunately, I can't seem to find the mailing
list message where I tried to get help.

Matt

>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@...
> For additional commands, e-mail: users-help@...
>
>


--
http://raibledesigns.com

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...


Re: [ANN] AppFuse 2.0 RC1 Released!

by mraible :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

On 9/4/07, Matt Raible <matt@...> wrote:

> On 9/4/07, Trent <appfuse@...> wrote:
> > On Tue, 4 Sep 2007 01:39:20 -0600, Matt Raible wrote
> > > The 2.0 series of AppFuse has a minumum requirement of the following
> > > specification versions:
> > >
> > >    - Java Servlet 2.4 and JSP 2.0 (2.1 for JSF)
> > >    - Java 5+
> >
> > Is this for development, or deployment?
> > I was under the impression that Appfuse 2 used retroweaver or similar?
>
> This is for development. In theory, Retroweaver should be possible.
> However, I tried the maven-retroweaver-plugin a couple months ago and
> it failed completely. Unfortunately, I can't seem to find the mailing
> list message where I tried to get help.
>
> Matt
>

You might try the retrotranslator-maven-plugin and see what happens:

http://mojo.codehaus.org/retrotranslator-maven-plugin/

I would like to get this working if you have time to look into it.

Matt

Example:

<plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>retrotranslator-maven-plugin</artifactId>
    <executions>
        <execution>
            <goals>
              <goal>translate-war</goal>
            </goals>
            <configuration>
                <classifier>jdk1.4</classifier>
                <attach>true</attach>
            </configuration>
        </execution>
    </executions>
</plugin>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...


Re: [ANN] AppFuse 2.0 RC1 Released!

by mraible :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Some parts of this message have been removed. Learn more about Nabble's security policy.
FYI...

I've uploaded a PDF version of the RC1 documentation to java.net. This PDF contains the relevant pages from the wiki that help you develop with AppFuse 2.0.

http://tinyurl.com/2qlst4

Pages: 247

Matt

On 9/4/07, Matt Raible <matt@... > wrote:
The AppFuse Team is pleased to announce the release of AppFuse 2.0 RC1!

This release marks a huge step in the march to releasing AppFuse 2.0. This release puts the finishing touches on the AppFuse Maven Plugin (AMP), which offers CRUD generation, as well as the ability to change AppFuse from "embedded mode" to "full source" (like 1.x). In addition, we've addressed over 100 issues in preparation for the final 2.0 release. We hope to fix any bugs related to this release and release 2.0 Final in the next week or two.

The videos still represent how M5 works, but things have been simplified (now you don't need to run appfuse:install after appfuse:gen).

AppFuse 2.0 is available as a Maven archetype. For information on creating a new project using this release, please see the QuickStart Guide or the Hello World video .

If you've used AppFuse 1.x, but not 2.x, you'll want to read the FAQ. Join the user mailing list if you have any questions. The Maven Reference Guide has a map of Ant -> Maven commands. Maven for Newbies might also be useful if you've never used Maven before. There is some support for Ant in this release.

For more information, please see the 2.0 RC1 Release Notes . The 2.0 series of AppFuse has a minumum requirement of the following specification versions:

  • Java Servlet 2.4 and JSP 2.0 (2.1 for JSF)
  • Java 5+

We appreciate the time and effort everyone has put toward contributing code and documentation, posting to the mailing lists, and logging issues.

Thanks for using AppFuse - we hope you enjoy this release!

Matt

--
http://raibledesigns.com



--
http://raibledesigns.com
LightInTheBox - Buy quality products at wholesale price!