8 Replies Latest reply on Dec 16, 2013 8:13 AM by wdfink

    Where are JBoss AS 7 downloads

    teknopaul

      I see from Git that since 7.1.1 there are two new Final releases.

       

      7.1.2-prerelease                                                                                                                               
      7.1.2.Final                                                                                                                                    
      7.1.3.Beta1                                                                                                                                    
      7.1.3.CR1                                                                                                                                      

      7.1.3.Final

       

      Where can I download the latest code?

        • 1. Re: Where are JBoss AS 7 downloads
          ctomc

          Hi

          Paul Hinds wrote:

           

          Where can I download the latest code?

          code can be downloaded from here: https://github.com/jbossas/jboss-as/tags

           

           

          --

          tomaz

          • 2. Re: Where are JBoss AS 7 downloads
            rcd

            If you're looking for binaries, Red Hat is not supplying them. See this thread: https://community.jboss.org/thread/197780

             

            If I remember correctly, someone in that thread did build 7.1.2.Final on their own and made it available on GitHub.

            • 3. Re: Where are JBoss AS 7 downloads
              fcorneli

              Building JBoss AS 7.1.3.Final yourself is not that difficult.

              git clone https://github.com/jbossas/jboss-as.git
              cd jboss-as
              git checkout 7.1.3.Final
              mvn clean install -Drelease=true
              cd dist/target
              ls
              
              • 4. Re: Where are JBoss AS 7 downloads
                teknopaul

                Hi Rich,

                 

                What does "If you're looking for binaries, Red Hat is not supplying them" really mean?

                 

                Are you saying that RedHat is no longer going to deliver precompiled versions of JBossAS, and that end users have to always build from source code?

                 

                Or buy EAP, presumably.

                 

                Or do you mean just certain versions of JBoss will not be released?

                • 5. Re: Where are JBoss AS 7 downloads
                  nickarls

                  Certain versions will only be released as binaries (the EAP ones). Those versions can be build from source. The next community version is 7.2.0

                  • 6. Re: Where are JBoss AS 7 downloads
                    rcd

                    As Nicklas said, certain versions are only being released as source. You can build them yourself but there's no official binary available for download. Even after all of the discussion in the thread I linked to, I still don't understand the logic behind that decision. The general argument seemed to be that "AS moves faster than EAP" and I suppose it does from the standpoint of someone who develops AS/EAP. But from the standpoint of someone who's using AS to deploy applications, it doesn't, at least not lately. The last AS release was nine months ago and given the trend for the number of open issues for 7.2.0, I'd say it's going to be over a year between AS releases.

                     

                    Personally, I find this to be very frustrating. I have no problem with using snapshots or building my own binaries if I have to, but other people where I work won't use anything but an official release, on the grounds that those are safer. I don't think there's much logic to the argument, but they have seniority so there's nothing I can do. I would really like to get some of the bug fixes (just got hit by WELD-1067 yesterday), but I feel like I'm waiting for Godot.

                    • 7. Re: Where are JBoss AS 7 downloads
                      daverwood

                      For anyone who needs to know how to actually build the JBoss server from the src, my stackoverflow question and answer should get you sorted out:

                       

                      http://stackoverflow.com/questions/20608745/how-to-build-the-latest-jboss-as/20608746#20608746

                      • 8. Re: Where are JBoss AS 7 downloads
                        wdfink

                        A helpful script will be build.sh if the maven build will not work. This script will do a bit work around mvn, you can pass the "clean install" to the build.sh as well.