You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by db...@apache.org on 2011/11/22 19:54:10 UTC

svn commit: r1205126 - /geronimo/specs/trunk/geronimo-ejb_3.1_spec-alt/pom.xml

Author: dblevins
Date: Tue Nov 22 18:54:09 2011
New Revision: 1205126

URL: http://svn.apache.org/viewvc?rev=1205126&view=rev
Log:
fixed so it works.. dependency plugin wasn't working

Modified:
    geronimo/specs/trunk/geronimo-ejb_3.1_spec-alt/pom.xml

Modified: geronimo/specs/trunk/geronimo-ejb_3.1_spec-alt/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/specs/trunk/geronimo-ejb_3.1_spec-alt/pom.xml?rev=1205126&r1=1205125&r2=1205126&view=diff
==============================================================================
--- geronimo/specs/trunk/geronimo-ejb_3.1_spec-alt/pom.xml (original)
+++ geronimo/specs/trunk/geronimo-ejb_3.1_spec-alt/pom.xml Tue Nov 22 18:54:09 2011
@@ -86,37 +86,14 @@
                         <Import-Package>org.apache.geronimo.osgi.registry.api;resolution:=optional,*</Import-Package>
                         <Private-Package>org.apache.geronimo.osgi.locator</Private-Package>
                         <Bundle-Activator>org.apache.geronimo.osgi.locator.Activator</Bundle-Activator>
+                        <Embed-Dependency>*;scope=provided;inline=true</Embed-Dependency>
+                        <Include-Resource>
+                            {maven-resources}, javax/ejb/EJBException.class=target/classes/javax/ejb/EJBException.class
+                        </Include-Resource>
                     </instructions>
                 </configuration>
             </plugin>
 
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-dependency-plugin</artifactId>
-                <version>2.3</version>
-                <executions>
-                    <execution>
-                        <id>patch</id>
-                        <phase>process-classes</phase>
-                        <goals>
-                            <goal>unpack</goal>
-                        </goals>
-                        <configuration>
-                            <excludes>javax/ejb/EJBException.class</excludes>
-                            <excludes>**/LICENSE*</excludes>
-                            <artifactItems>
-                                <artifactItem>
-                                    <groupId>org.apache.geronimo.specs</groupId>
-                                    <artifactId>geronimo-ejb_3.1_spec</artifactId>
-                                    <version>1.0.2</version>
-                                    <overWrite>false</overWrite>
-                                    <outputDirectory>${project.build.outputDirectory}</outputDirectory>
-                                </artifactItem>
-                            </artifactItems>
-                        </configuration>
-                    </execution>
-                </executions>
-            </plugin>
         </plugins>
     </build>