FELIX-3739 :  scr-plugin: "Annotated method {0} not found" . Apply patch from Robert Munteanu

git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@1414763 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/scrplugin/maven-scr-plugin/pom.xml b/scrplugin/maven-scr-plugin/pom.xml
index f0cbaca..34399ab 100644
--- a/scrplugin/maven-scr-plugin/pom.xml
+++ b/scrplugin/maven-scr-plugin/pom.xml
@@ -84,6 +84,29 @@
                   <target>1.5</target>
                 </configuration>
             </plugin>
+            <plugin>
+                <artifactId>maven-invoker-plugin</artifactId>
+                <version>1.7</version>
+                <configuration>
+                  <projectsDirectory>src/it</projectsDirectory>
+                  <cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo>
+                  <pomIncludes>
+                    <pomInclude>*/pom.xml</pomInclude>
+                  </pomIncludes>
+                  <!-- http://maven.apache.org/plugins/maven-invoker-plugin/examples/fast-use.html -->
+                  <settingsFile>src/it/settings.xml</settingsFile>
+                  <localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath>
+                </configuration>
+                <executions>
+                  <execution>
+                    <id>integration-test</id>
+                    <goals>
+                      <goal>install</goal>
+                      <goal>run</goal>
+                    </goals>
+                  </execution>
+                </executions>
+            </plugin>            
         </plugins>
     </build>
 </project>