7 Replies Latest reply on Nov 13, 2001 10:18 PM by hraun

    How do you build the latest from CVS

    kurt_olsen

      Aloha everybody,

      I just got the latest out of CVS but can't figure out how to build it. What's the drill for this?

      Mahalo,
      Kurt Olsen

        • 1. Re: How do you build the latest from CVS
          foglesa

          open a shell...

          set JAVA_HOME=xxxxx

          cd build

          build [all]|most]

          Al

          • 2. Re: How do you build the latest from CVS
            kurt_olsen

            Thanks Al,
            I did that...didn't work.
            I must have screwed up when I checked out.
            Instead of module jboss-all I checked out '.'
            So, I'm gonna try the checkout portion again.
            I'll tell 'ya how it goes.
            Mahalo (thanks),
            Kurt

            • 3. Re: How do you build the latest from CVS
              foglesa

              you can also get a daily snapshot of the jboss-all from http://www.jboss.org/snapshots

              Al

              • 4. Re: How do you build the latest from CVS
                kurt_olsen

                Ok, that worked...thanks Al.
                To restate the error of my ways....

                Wrong: Checkout the '.' module and try to build.
                Right: Checkout the jboss-all module and try to build.

                • 5. Re: How do you build the latest from CVS
                  foglesa

                  Kurt,
                  Also be advised that I found a bug in the jetty integration. It doesnt seem to propogate the security if you protect areas of your web site. I fixed it by copying 3 jar files from my jboss-2.4.3-jetty-3.1.1 installation to the lib/ext directory of jboss 3. (org.mortbay.jetty.jar, org.apache.jasper.jar, and javax.servlet.jar) I didnt try to track it exactly since copying these three solved my problem and i could get on with the development of the app im working on. I know Jules is looking at Jboss-3's jetty this weekend so i sent him an email about it, but if you are using protected web areas this will at least get you running till then.

                  Al

                  • 6. Re: How do you build the latest from CVS
                    hraun

                    When I tried to build the fella recently, I found that I needed the buildmagic classes. I got:
                    C:\cvs\jboss-all\server>ant
                    Buildfile: build.xml
                    [taskdef] Could not load definitions from resource planet57/tools/buildmagic/t
                    ask/autoload.properties. It could not be found.

                    BUILD FAILED

                    C:\cvs\jboss-all\server\build.xml:23: taskdef class planet57.tools.buildmagic.ta
                    sk.Property cannot be found

                    When I checked out sourceforge for the classes, I found that they are not available yet.
                    Have you guys managed to find them anywhere?

                    Cheers
                    Peet

                    • 7. Re: How do you build the latest from CVS
                      hraun

                      Sorry,
                      Scratch that.
                      What I was doing wrong, was

                      C:\cvs\jboss-all\server>ant

                      instead of

                      C:\cvs\jboss-all\build>build.bat


                      That sorted out most of the worries.