You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by er...@apache.org on 2007/02/22 01:35:11 UTC

svn commit: r510324 - in /incubator/felix/trunk/commons/commons-lang: ./ pom.xml

Author: erodriguez
Date: Wed Feb 21 16:35:10 2007
New Revision: 510324

URL: http://svn.apache.org/viewvc?view=rev&rev=510324
Log:
Updates to Felix Commons subproject:
o  Added folder and ignores for commons-lang module.
o  Added wrapper POM to resolve FELIX-181 (commons-lang 2.1 wrapping)
o  Wrapper POM actually support commons-lang 2.2, not 2.1 as stated in issue.
o  Updated parent POM to build commons-lang module.

Added:
    incubator/felix/trunk/commons/commons-lang/   (with props)
    incubator/felix/trunk/commons/commons-lang/pom.xml   (with props)

Propchange: incubator/felix/trunk/commons/commons-lang/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Wed Feb 21 16:35:10 2007
@@ -0,0 +1,16 @@
+bin
+build
+target
+classes
+.classpath
+.project
+.settings
+.wtpmodules
+.deployables
+*.iml
+*.ipr
+*.iws
+*.log
+lib
+bundle
+dist

Added: incubator/felix/trunk/commons/commons-lang/pom.xml
URL: http://svn.apache.org/viewvc/incubator/felix/trunk/commons/commons-lang/pom.xml?view=auto&rev=510324
==============================================================================
--- incubator/felix/trunk/commons/commons-lang/pom.xml (added)
+++ incubator/felix/trunk/commons/commons-lang/pom.xml Wed Feb 21 16:35:10 2007
@@ -0,0 +1,53 @@
+<project
+  xmlns="http://maven.apache.org/POM/4.0.0"
+  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+
+    <parent>
+        <groupId>org.apache.felix.commons</groupId>
+        <artifactId>build</artifactId>
+        <version>0.9.0-incubator-SNAPSHOT</version>
+    </parent>
+
+    <groupId>org.apache.felix.commons</groupId>
+    <artifactId>commons-lang-osgi</artifactId>
+    <version>2.2</version>
+    <packaging>bundle</packaging>
+
+    <name>${pom.artifactId} bundle</name>
+    <description>
+        This bundle simply wraps commons-lang-${pom.version}.jar.
+    </description>
+    
+    <organization> 
+        <name>Apache Felix Project</name> 
+        <url>http://incubator.apache.org/felix/</url> 
+    </organization>
+    
+    <dependencies>
+        <dependency>
+            <groupId>commons-lang</groupId>
+            <artifactId>commons-lang</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+    </dependencies>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>maven-bundle-plugin</artifactId>
+                <extensions>true</extensions>
+                <configuration>
+                    <instructions>
+                        <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
+                        <Export-Package>
+                            *
+                        </Export-Package>
+                    </instructions>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+</project>

Propchange: incubator/felix/trunk/commons/commons-lang/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native