redfish4ktc / maven-soapui-extension-plugin

This plugin adds new features and bug fixes to SmartBear plugins: soapui-pro-maven-plugin and soapui-maven-plugin.
Apache License 2.0
45 stars 22 forks source link

maven-execution-plugin is not running the below plugin when it is configured in pluginmanagement of pom.xml #141

Closed navakrishna closed 7 years ago

navakrishna commented 7 years ago

Can you please some one explains me.....How pluginmanagement works. Please find the code below.

       <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>exec-maven-plugin</artifactId>
                <executions>
                    <execution>
                        <id>exec-npm-install</id>
                        <phase>generate-sources</phase>
                        <configuration>
                            <executable>cmd</executable>
                            <workingDirectory>${project.basedir}/src/main/webapp/ngapp</workingDirectory>
                            <arguments>
                                <argument>/c</argument>
                                <argument>npm</argument> 
                                <argument>install</argument>
                            </arguments>
                        </configuration>
                        <goals>
                            <goal>exec</goal>
                        </goals>
                    </execution>
                    <execution>
                        <id>exec-gulp</id>
                        <phase>generate-sources</phase>
                        <configuration>
                            <executable>cmd</executable>
                            <workingDirectory>${project.basedir}/src/main/webapp/ngapp</workingDirectory>
                            <arguments>
                                <argument>/c</argument>
                                <argument>gulp</argument> 
                                <argument>build-all-prod</argument>
                            </arguments>
                        </configuration>
                        <goals>
                            <goal>exec</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
redfish4ktc commented 7 years ago

@navakrishna still not related to soapui?

navakrishna commented 7 years ago

It's not related to soap ui plugin....But the problem here what ever the issue I am creating it's going under this group.

Sent from Yahoo Mail on Android

On Tue, Mar 7, 2017 at 10:16, Thomas Bouffardnotifications@github.com wrote:
@navakrishna still not related to soapui?

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub, or mute the thread.

navakrishna commented 7 years ago

I have verified.....No where I get the option to change this group....Can you suggest me? On this

Sent from Yahoo Mail on Android

On Tue, Mar 7, 2017 at 10:19, Nava Krishnanavakrishnat@yahoo.com wrote: It's not related to soap ui plugin....But the problem here what ever the issue I am creating it's going under this group.

Sent from Yahoo Mail on Android

On Tue, Mar 7, 2017 at 10:16, Thomas Bouffardnotifications@github.com wrote:
@navakrishna still not related to soapui?

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub, or mute the thread.