8 lines
220 B
Batchfile
8 lines
220 B
Batchfile
@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 |