Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion BalloonUtility/scripts/balloon.bat
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ robocopy "%ROOTDIR%\update" "%ROOTDIR%\" /e /move

:restart

java -jar "%LIBDIR%\swtLauncher.jar" balloonUtil.jar org.icpc.tools.balloon.BalloonUtility %params%
java -cp "%LIBDIR%\*" org.icpc.tools.balloon.BalloonUtility %params%

if errorlevel 255 goto :restart
if errorlevel 254 goto :update
2 changes: 1 addition & 1 deletion BalloonUtility/scripts/balloon.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ LC_ALL=$LC_PAPER
fi

while true; do
java $vmoptions -jar lib/swtLauncher.jar balloonUtil.jar org.icpc.tools.balloon.BalloonUtility "$@"
java $vmoptions -cp "lib/*" org.icpc.tools.balloon.BalloonUtility "$@"
result=$?
if [ $result = 254 ]
then
Expand Down
3 changes: 3 additions & 0 deletions CDS/.settings/org.eclipse.wst.common.component
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
<dependent-module archiveName="snakeyaml-2.4.jar" deploy-path="/WEB-INF/lib" handle="module:/classpath/lib/ContestModel/lib/snakeyaml-2.4.jar">
<dependency-type>uses</dependency-type>
</dependent-module>
<dependent-module archiveName="sentry-opentelemetry-agent-8.12.0.jar" deploy-path="/WEB-INF/lib" handle="module:/classpath/lib/ContestModel/lib/sentry-opentelemetry-agent-8.12.0.jar">
<dependency-type>uses</dependency-type>
</dependent-module>
<property name="java-output-path" value="/CDS/WebContent/WEB-INF/classes"/>
<property name="context-root" value="CDS"/>
</wb-module>
Expand Down
2 changes: 1 addition & 1 deletion ContestModel/src/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
Manifest-Version: 1.0
Class-Path: snakeyaml-2.3.jar
Class-Path: snakeyaml-2.4.jar
2 changes: 1 addition & 1 deletion ProblemSet/scripts/problemSet.bat
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ goto :loop

:continue

java -jar "%LIBDIR%\swtLauncher.jar" problemSet.jar,snakeyaml-2.3.jar org.icpc.tools.contest.util.problemset.ProblemSetEditor %params%
java -cp "%LIBDIR%\*" org.icpc.tools.contest.util.problemset.ProblemSetEditor %params%
2 changes: 1 addition & 1 deletion ProblemSet/scripts/problemSet.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ if [ "$UNAME" == "Darwin" ]; then
vmoptions=-XstartOnFirstThread
fi

java $vmoptions -jar "$LIBDIR/swtLauncher.jar" problemSet.jar,snakeyaml-2.3.jar org.icpc.tools.contest.util.problemset.ProblemSetEditor "$@"
java $vmoptions -cp "$LIBDIR/*" org.icpc.tools.contest.util.problemset.ProblemSetEditor "$@"
2 changes: 1 addition & 1 deletion Resolver/scripts/awards.bat
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ goto :loop

:continue

java -jar "%LIBDIR%\swtLauncher.jar" resolver.jar org.icpc.tools.resolver.awards.Awards %params%
java -cp "%LIBDIR%\*" org.icpc.tools.resolver.awards.Awards %params%
2 changes: 1 addition & 1 deletion Resolver/scripts/awards.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ if [ "$UNAME" == "Darwin" ]; then
vmoptions=-XstartOnFirstThread
fi

java $vmoptions -jar "$LIBDIR/swtLauncher.jar" resolver.jar org.icpc.tools.resolver.awards.Awards "$@"
java $vmoptions -cp "$LIBDIR/*" org.icpc.tools.resolver.awards.Awards "$@"