Restructured the project creating a router directory for the router bundle implementa...
[xmlrouter] / pom.xml
diff --git a/pom.xml b/pom.xml
index a235e33384cd4b801532dd0e301f57ee91fabfca..10df9a9dc03d008a839a31a4155196fa100aa5aa 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -1,11 +1,11 @@
 <?xml version="1.0"?>
-<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">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+
     <modelVersion>4.0.0</modelVersion>
     <groupId>org.wamblee.xmlrouter</groupId>
     <artifactId>xmlrouter-root</artifactId>
     <packaging>pom</packaging>
-    <version>0.1-SNAPSHOT</version>
+    <version>0.1.0-SNAPSHOT</version>
     <name>/xmlrouter</name>
     <description>A simple XML Router with OSGI support</description>
     <url>http://wamblee.org</url>
         <module>config</module>
         <module>publish</module>
         <module>subscribe</module>
-        <module>impl</module>
+        <module>router</module>
         <module>listener</module>
     </modules>
 
     <!-- need to exclude test at release because test depends on an artifact
-         eclipselink) which is not available at maven central --> 
+         eclipselink) which is not available at maven central -->
     <profiles>
         <profile>
             <id>release</id>
     <dependencyManagement>
         <dependencies>
             <dependency>
-                           <groupId>org.wamblee</groupId>
-                               <artifactId>wamblee-support-general</artifactId>
-                               <version>0.7-SNAPSHOT</version>
-                       </dependency>
+                <groupId>org.wamblee</groupId>
+                <artifactId>wamblee-support-general</artifactId>
+                <version>0.7-SNAPSHOT</version>
+            </dependency>
             <dependency>
                 <groupId>org.wamblee</groupId>
                 <artifactId>wamblee-test-eclipselink</artifactId>
                     </execution>
                 </executions>
             </plugin>
-            
-          
+
+
             <plugin>
                 <artifactId>maven-site-plugin</artifactId>
                 <version>3.0-beta-3</version>
                                 </formats>
                             </configuration>
                         </plugin>
-                        
+
                     </reportPlugins>
                 </configuration>
             </plugin>
 
         </plugins>
 
+        <pluginManagement>
+            <plugins>
+                <plugin>
+                    <groupId>org.apache.felix</groupId>
+                    <artifactId>maven-bundle-plugin</artifactId>
+                    <extensions>true</extensions>
+                    <version>2.3.5</version>
+                </plugin>
+            </plugins>
+        </pluginManagement>
+
+
     </build>
-    
+
     <distributionManagement>
         <site>
             <id>xmlrouter-site</id>
             <url>file:${distrib}/all</url>
         </site>
     </distributionManagement>
+
 </project>