You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ju...@apache.org on 2010/10/19 21:55:28 UTC

svn commit: r1024385 - /sling/trunk/parent/pom.xml

Author: justin
Date: Tue Oct 19 19:55:27 2010
New Revision: 1024385

URL: http://svn.apache.org/viewvc?rev=1024385&view=rev
Log:
SLING-1803 - forgot to also move the extra execution of the bundle plugin to the emma profile

Modified:
    sling/trunk/parent/pom.xml

Modified: sling/trunk/parent/pom.xml
URL: http://svn.apache.org/viewvc/sling/trunk/parent/pom.xml?rev=1024385&r1=1024384&r2=1024385&view=diff
==============================================================================
--- sling/trunk/parent/pom.xml (original)
+++ sling/trunk/parent/pom.xml Tue Oct 19 19:55:27 2010
@@ -290,19 +290,6 @@ on 64bit platforms: MAVEN_OPTS="-Xmx512M
                             <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
                         </instructions>
                     </configuration>
-                    <executions>
-                        <execution>
-                            <id>emma-bundle</id>
-                            <goals>
-                                <goal>bundle</goal>
-                            </goals>
-                            <phase>package</phase>
-                            <configuration>
-                                <classifier>emma</classifier>
-                                <outputDirectory>${basedir}/target/generated-classes/emma/classes</outputDirectory>
-                            </configuration>
-                        </execution>
-                    </executions>
                 </plugin>
                 <plugin>
                     <groupId>org.apache.maven.plugins</groupId>
@@ -474,6 +461,24 @@ on 64bit platforms: MAVEN_OPTS="-Xmx512M
                             </execution>
                         </executions>
                     </plugin>
+                    <plugin>
+                        <groupId>org.apache.felix</groupId>
+                        <artifactId>maven-bundle-plugin</artifactId>
+                        <inherited>true</inherited>
+                        <executions>
+                            <execution>
+                                <id>emma-bundle</id>
+                                <goals>
+                                    <goal>bundle</goal>
+                                </goals>
+                                <phase>package</phase>
+                                <configuration>
+                                    <classifier>emma</classifier>
+                                    <outputDirectory>${basedir}/target/generated-classes/emma/classes</outputDirectory>
+                                </configuration>
+                            </execution>
+                        </executions>
+                    </plugin>
                 </plugins>
             </build>
         </profile>