Sha256: cf46667ab0e9bf37b953be4a78fd749e512cde6b61ab545cc54ab2271e9603bc
Contents?: true
Size: 528 Bytes
Versions: 13
Compression:
Stored size: 528 Bytes
Contents
# Runs Camunda spring-boot commands using rake. task default: %w[run] namespace :camunda do # Path for the spring boot application. mvn_path = 'bpmn/java_app' # Starts the camunda engine e.g. mvn spring-boot:run. desc 'Starts the Camunda spring-boot application.' task :run do system('mvn spring-boot:run', chdir: mvn_path) end # Runs spring boot test suite e.g. mvn test. desc 'Runs test suite for Camunda spring-boot application' task :test do system('mvn clean test', chdir: mvn_path) end end
Version data entries
13 entries across 13 versions & 1 rubygems