9 lines
222 B
Batchfile
9 lines
222 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
|