How to use maven-wsoui-plugin

compared with
Key
This line was removed.
This word was removed. This word was added.
This line was added.

Changes (19)

View Page History
<version>1.0-SNAPSHOT</version>
</dependency>
</dependencies>

</dependencies>
...

...
<build>
<build>
<plugins>
<plugin>
<plugins> <groupId>com.ebmwebsourcing.easiestdemo</groupId>
<artifactId>maven-wsoui-plugin</artifactId>
<version>1.0-SNAPSHOT</version>
<executions>
<execution>
<id>generate-sources</id>
<phase>generate-sources</phase>
<configuration>
<bpelOptions>
<bpelOption>
<bpel>
<!-- Set your bpel file here .... -->
${basedir}/src/main/resources/nrbc.bpel
</bpel>
</bpelOption>
</bpelOptions>
<plugin> </configuration>
<goals>
<groupId>com.ebmwebsourcing.easiestdemo</groupId> <goal>bpel2java</goal>
<artifactId>maven-wsoui-plugin</artifactId>
<version>1.0-SNAPSHOT</version>
<executions>
</goals>
<execution> </execution>
<id>generate-sources</id>
<phase>generate-sources</phase>
<configuration>
<bpelOptions>
<bpelOption>
<bpel>${basedir}/src/main/resources/nrbc.bpel</bpel>
<overrideOlderBusinessClass>true</overrideOlderBusinessClass>
</bpelOption>
</bpelOptions>
</configuration>
<goals>
<goal>bpel2java</goal>
</goals>
</executions>
</plugin>
</plugins>
</execution> </build>
</executions>
</plugin>
</plugins>
</build>
{code}