You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by jv...@apache.org on 2007/10/17 18:32:52 UTC

svn commit: r585563 - in /maven/components/trunk/maven-embedder: pom.xml src/main/assembly/bin.xml

Author: jvanzyl
Date: Wed Oct 17 09:32:51 2007
New Revision: 585563

URL: http://svn.apache.org/viewvc?rev=585563&view=rev
Log:
o updating assembly and that we don't need the shaded jar anymore
o keep JDOM in the distro for the time being

Modified:
    maven/components/trunk/maven-embedder/pom.xml
    maven/components/trunk/maven-embedder/src/main/assembly/bin.xml

Modified: maven/components/trunk/maven-embedder/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/trunk/maven-embedder/pom.xml?rev=585563&r1=585562&r2=585563&view=diff
==============================================================================
--- maven/components/trunk/maven-embedder/pom.xml (original)
+++ maven/components/trunk/maven-embedder/pom.xml Wed Oct 17 09:32:51 2007
@@ -209,40 +209,6 @@
       <build>
         <plugins>
           <plugin>
-            <artifactId>shade-maven-plugin</artifactId>
-            <groupId>org.codehaus.mojo</groupId>
-            <version>1.0-alpha-12</version>
-            <executions>
-              <execution>
-                <phase>package</phase>
-                <goals>
-                  <goal>shade</goal>
-                </goals>
-                <configuration>
-                  <!-- The IDEA folks don't want to put SNAPSHOT libs in their projects even though they are -->
-                  <finalName>maven-embedder-std-2.1</finalName>
-                  <createDependencyReducedPom>false</createDependencyReducedPom>
-                  <keepDependenciesWithProvidedScope>true</keepDependenciesWithProvidedScope>
-                  <transformers>
-                    <transformer implementation="org.codehaus.mojo.shade.resource.ComponentsXmlResourceTransformer"/>
-                  </transformers>
-                  <relocations>
-                    <relocation>
-                      <pattern>org.codehaus.plexus.util</pattern>
-                      <excludes>
-                        <exclude>org.codehaus.plexus.util.xml.Xpp3Dom</exclude>
-                        <exclude>org.codehaus.plexus.util.xml.pull.*</exclude>
-                      </excludes>
-                    </relocation>
-                    <relocation>
-                      <pattern>org.jdom</pattern>
-                    </relocation>
-                  </relocations>
-                </configuration>
-              </execution>
-            </executions>
-          </plugin>
-          <plugin>
             <artifactId>maven-assembly-plugin</artifactId>
             <version>2.2-beta-1</version>
             <executions>

Modified: maven/components/trunk/maven-embedder/src/main/assembly/bin.xml
URL: http://svn.apache.org/viewvc/maven/components/trunk/maven-embedder/src/main/assembly/bin.xml?rev=585563&r1=585562&r2=585563&view=diff
==============================================================================
--- maven/components/trunk/maven-embedder/src/main/assembly/bin.xml (original)
+++ maven/components/trunk/maven-embedder/src/main/assembly/bin.xml Wed Oct 17 09:32:51 2007
@@ -43,7 +43,9 @@
         <exclude>org.apache.maven:maven-artifact</exclude>
         <exclude>org.apache.maven:maven-monitor</exclude>
         <exclude>org.apache.maven:maven-plugin-descriptor</exclude>
+        <!--
         <exclude>jdom:jdom</exclude>
+        -->
       </excludes>
     </dependencySet>
   </dependencySets>
@@ -82,7 +84,7 @@
       <directory>target</directory>
       <outputDirectory>lib</outputDirectory>
       <includes>
-        <include>maven-embedder-std*.jar</include>
+        <include>maven-embedder-*.jar</include>
       </includes>
     </fileSet>
   </fileSets>