Maven ODE plugin
This maven plugin allows you compile BPEL files with Apache ODE bpel compilator. Maven pom.xml configurationFollowing configuration will compile PrototypeCase.bpel file during maven compile phase: <build> ... <plugins> ... <plugin> <groupId>pl.touk.top</groupId> <artifactId>maven-ode-plugin</artifactId> <version>1.3.0</version> <configuration> <bpel>${project.build.directory}/classes/PrototypeCase.bpel</bpel> <output>${project.build.directory}/classes/</output> <verbose>false</verbose> </configuration> <executions> <execution> <phase>compile</phase> <goals> <goal>bpelc</goal> </goals> </execution> </executions> </plugin> command line executionmvn ode:bpelc |
Current version is 1.3.0 |