maven-ode-plugin

Maven ODE plugin

current version 1.3.0 works with ODE 1.3 (aka ode-1.X)

This maven plugin allows you compile BPEL files with Apache ODE bpel compilator.

Maven pom.xml configuration

Following 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 execution
 mvn ode:bpelc 

Current version is 1.3.0

Labels

maven maven Delete
ode ode Delete
plugin plugin Delete
Enter labels to add to this page:
Please wait 
Looking for a label? Just start typing.