Author: rmannibucau
Date: Tue Apr 10 07:25:27 2012
New Revision: 1311610
URL: http://svn.apache.org/viewvc?rev=1311610&view=rev
Log:
temporary remove karaf maven plugin while karafee is based on karaf 2.x
Modified:
openejb/trunk/openejb/osgi/openejb-feature/pom.xml
Modified: openejb/trunk/openejb/osgi/openejb-feature/pom.xml
URL:
http://svn.apache.org/viewvc/openejb/trunk/openejb/osgi/openejb-feature/pom.xml?rev=1311610&r1=1311609&r2=1311610&view=diff
==============================================================================
--- openejb/trunk/openejb/osgi/openejb-feature/pom.xml (original)
+++ openejb/trunk/openejb/osgi/openejb-feature/pom.xml Tue Apr 10 07:25:27 2012
@@ -40,6 +40,7 @@
</resource>
</resources>
<plugins>
+ <!--
<plugin>
<groupId>org.apache.karaf.tooling</groupId>
<artifactId>karaf-maven-plugin</artifactId>
@@ -56,6 +57,41 @@
</execution>
</executions>
</plugin>
+ -->
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-resources-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>filter-features</id>
+ <goals>
+ <goal>resources</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>build-helper-maven-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>attach-artifacts</id>
+ <phase>package</phase>
+ <goals>
+ <goal>attach-artifact</goal>
+ </goals>
+ <configuration>
+ <artifacts>
+ <artifact>
+ <file>target/classes/feature.xml</file>
+ <type>xml</type>
+ <classifier>features</classifier>
+ </artifact>
+ </artifacts>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
</plugins>
</build>
</project>