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/01/08 04:41:57 UTC

svn commit: r493929 - /maven/components/trunk/maven-embedder/pom.xml

Author: jvanzyl
Date: Sun Jan  7 19:41:56 2007
New Revision: 493929

URL: http://svn.apache.org/viewvc?view=rev&rev=493929
Log:
o clean up distribution management
o going to just use my manifest with filtering, the assembly plugin doesn't work and neither does the 
  the felix plugin. they just crap out or don't work. this works and does the job just fine


Modified:
    maven/components/trunk/maven-embedder/pom.xml

Modified: maven/components/trunk/maven-embedder/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/trunk/maven-embedder/pom.xml?view=diff&rev=493929&r1=493928&r2=493929
==============================================================================
--- maven/components/trunk/maven-embedder/pom.xml (original)
+++ maven/components/trunk/maven-embedder/pom.xml Sun Jan  7 19:41:56 2007
@@ -45,20 +45,6 @@
           <descriptor>src/main/assembly/dep.xml</descriptor>
           <archive>
             <manifestFile>target/classes/META-INF/MANIFEST.MF</manifestFile>
-            <!--
-
-            This doesn't work and should
-
-            <manifestEntries>
-              <Manifest-Version>1.0</Manifest-Version>
-              <Bundle-ManifestVersion>2</Bundle-ManifestVersion>
-              <Bundle-Name>Maven 2.x Embedder Plug-in</Bundle-Name>
-              <Bundle-Vendor>org.apache.maven</Bundle-Vendor>
-              <Bundle-SymbolicName>org.maven.ide.embedder</Bundle-SymbolicName>
-              <Bundle-Version>${project.version}</Bundle-Version>
-              <Bundle-ClassPath>.</Bundle-ClassPath>
-            </manifestEntries>
-            -->
           </archive>
         </configuration>
       </plugin>
@@ -84,16 +70,4 @@
       <artifactId>jdom</artifactId>
     </dependency>
   </dependencies>
-  <distributionManagement>
-    <repository>
-      <id>apache.releases</id>
-      <name>Apache Release Distribution Repository</name>
-      <url>scp://people.apache.org/www/people.apache.org/repo/m2-ibiblio-rsync-repository</url>
-    </repository>
-    <snapshotRepository>
-      <id>apache.snapshots</id>
-      <name>Apache Development Snapshot Repository</name>
-      <url>file:///tmp/embedder</url>
-    </snapshotRepository>
-  </distributionManagement>
 </project>