Skip to content

Instantly share code, notes, and snippets.

View plomovtsev's full-sized avatar

Ломовцев Павел plomovtsev

View GitHub Profile
@plomovtsev
plomovtsev / compile-java-scala.bat
Created November 10, 2016 17:30
Скрипт для компиляции стратегии на scala в пакете для java
@echo off
if not exist src\main\java\Runner.java (
echo Unable to find src\main\java\Runner.java > compilation.log
exit 1
)
if not exist src\main\scala\MyStrategy.scala (
echo Unable to find src\main\scala\MyStrategy.scala > compilation.log
exit 1
)