diff options
author | liamfallon <liam.fallon@ericsson.com> | 2018-07-03 13:52:19 +0100 |
---|---|---|
committer | liamfallon <liam.fallon@ericsson.com> | 2018-07-03 13:52:33 +0100 |
commit | 436d824ea21f56cf5c055a2f41d940e1145dea35 (patch) | |
tree | aa63e40c819cef76189cc8cb44c7d78d808d07d4 | |
parent | 4d6fc38eb1ba2f09d53cd8ab2b89ccd68dda22b6 (diff) |
Remove unnnecessary plugin from POM
This plugin is not needed in the integration-common module POM
and showed up as an error in Eclipse
Change-Id: I8a8c052dd97f7b7af42ef396a58f56bcddb98cd2
Issue-ID: POLICY-865
Signed-off-by: liamfallon <liam.fallon@ericsson.com>
-rw-r--r-- | testsuites/integration/integration-common/pom.xml | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/testsuites/integration/integration-common/pom.xml b/testsuites/integration/integration-common/pom.xml index 46f913b60..20be79afb 100644 --- a/testsuites/integration/integration-common/pom.xml +++ b/testsuites/integration/integration-common/pom.xml @@ -70,30 +70,6 @@ </excludes> </configuration> </plugin> - <plugin> - <groupId>org.codehaus.mojo</groupId> - <artifactId>exec-maven-plugin</artifactId> - <executions> - <execution> - <id>generate-models</id> - <phase>process-classes</phase> - <goals> - <goal>exec</goal> - </goals> - <configuration> - <executable>java</executable> - <classpathScope>test</classpathScope> - <arguments> - <argument>-classpath</argument> - <!-- automatically creates the classpath using all project dependencies, also adding the project build directory --> - <classpath /> - <argument>org.onap.policy.apex.test.common.model.SampleDomainModelSaver</argument> - <argument>${project.build.directory}/classes/examples/models/SampleDomain</argument> - </arguments> - </configuration> - </execution> - </executions> - </plugin> </plugins> </build> |