> Hello Everyone: > I have a master build which calls the build.xml of all the subprojects. > The > build.xml of subprojects only compiles the java files. However, in my > master > build if one of the subprojects fails to compile the build is terminated. > > Is there a way that I can keep the build going even if some of the > subprojects > fail. > > Here is my target within my masterbuild: > > <target name="all" depends="update"> > <ant antfile="build.xml" dir="SessionManagement" target="all"/> > <ant antfile="build.xml" dir="DeviceProfileService" target="all"/> > <ant antfile="build.xml" dir="DeviceAdapterFramework" target="all"/> > <ant antfile="build.xml" dir="DeviceAdapterDispatcher" > target="all"/> > <ant antfile="build.xml" dir="HtmlDeviceAdapter" target="all"/> > <ant antfile="build.xml" dir="WmlDeviceAdapter" target="all"/> > <ant antfile="build.xml" dir="PaginationAggregation" target="all"/> > <ant antfile="build.xml" dir="ImageManagement" target="all"/> > <ant antfile="build.xml" dir="SampleApplications" target="all"/> > <ant antfile="build.xml" dir="UserInterface" target="all"/> > <ant antfile="build.xml" dir="HdmlDeviceAdapter" target="all"/> > <ant antfile="build.xml" dir="Logging" target="all"/> > </target> > > For example if SessionManagement fails, build is terminated. > > I would appreciate all your replies in advacne, > regards.
-- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
