Create fully automated build processesFully automated build processes are essential in modern software engineering projects. This is even more important in the context of model-driven software engineering. OOMEGA Generator is delivered with predefined tasks for Apache Ant. Hence you can naturally integrate the code generation process in your Ant build scripts. <jgen templatepath="build/temp/classes"> <template name="automaton.java" /> <model file="TrafficLight.sdf" /> <dest dir="build/output/traffic-light" /> </jgen> The previous example shows the jgen Ant task in action. This time the binary-coded model file TrafficLight.sdf contains the model information. But it could be a model database as well. >> Show next feature>> Back to the feature list |