Updated to have a default package target for document projects

This commit is contained in:
Ben Hale
2008-02-27 14:02:35 +00:00
parent c90100aa9d
commit 8ea36fa4f3
10 changed files with 56 additions and 25 deletions

View File

@@ -0,0 +1,8 @@
@echo off
setlocal ENABLEDELAYEDEXPANSION
for /r ..\dist %%j IN (*.jar) do set CP=!CP!;%%j
for /r ..\lib %%j IN (*.jar) do set CP=!CP!;%%j
@java -cp %CP% org.springframework.integration.samples.cafe.CafeDemo %1