Changeset 70d49ee1104dacc99619101a011afd9e51250fff

Show
Ignore:
Timestamp:
08/13/07 18:41:05 (1 year ago)
Author:
Christopher Jung <bktheg@web.de>
git-committer:
Christopher Jung <bktheg@web.de> 1187023265 +0200
git-parent:

[6424957483d23860b95cf0187b855eb506111efc]

git-author:
Christopher Jung <bktheg@web.de> 1187023265 +0200
Message:

Buildtarget check-install zur Ueberpruefung der Installation eingebaut

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • build.xml

    r18a4236 r70d49ee  
    263263                </jcsc> 
    264264        </target> 
     265         
     266        <!-- ==================== Check-Install Target ================================== --> 
     267                 
     268        <target name="check-install" depends="prepare,compile"> 
     269                <java classname="net.driftingsouls.ds2.server.install.CheckInstallation" fork="true" dir="${build.home}"> 
     270                        <classpath> 
     271                                <pathelement path="${build.home}/WEB-INF/classes" /> 
     272                        </classpath> 
     273                        <classpath refid="compile.classpath" /> 
     274                </java> 
     275        </target> 
    265276</project> 
    266277