Introduce Server Core
[lgpl/argeo-commons.git] / pom.xml
diff --git a/pom.xml b/pom.xml
index c54c9d93d521a2c291214735b14ba7b269cb423d..1ec5d05ceba60eea5b57514422993a296cd1e339 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -12,6 +12,7 @@
                <version.slc>0.12.1-SNAPSHOT</version.slc>
                <version.maven-argeo-osgi>0.1.21</version.maven-argeo-osgi>
                <version.maven-bundle-plugin>2.0.0</version.maven-bundle-plugin>
+               <version.maven-argeo-qooxdoo>0.8.2.1</version.maven-argeo-qooxdoo>
        </properties>
        <scm>
                <connection>scm:svn:https://www.argeo.org/svn/commons/trunk</connection>
@@ -68,6 +69,7 @@ limitations under the License.
        <modules>
                <module>osgi</module>
                <module>server</module>
+               <module>security</module>
        </modules>
        <build>
                <pluginManagement>
@@ -98,6 +100,37 @@ limitations under the License.
                                        <artifactId>maven-argeo-osgi-plugin</artifactId>
                                        <version>${version.maven-argeo-osgi}</version>
                                </plugin>
+                               <plugin>
+                                       <artifactId>maven-jar-plugin</artifactId>
+                                       <configuration>
+                                               <archive>
+                                                       <manifestFile>target/classes/META-INF/MANIFEST.MF</manifestFile>
+                                               </archive>
+                                       </configuration>
+                               </plugin>
+                               <plugin>
+                                       <groupId>org.apache.felix</groupId>
+                                       <artifactId>maven-bundle-plugin</artifactId>
+                                       <version>${version.maven-bundle-plugin}</version>
+                                       <extensions>true</extensions>
+                                       <configuration>
+                                               <manifestLocation>target/classes/META-INF</manifestLocation>
+                                               <instructions>
+                                                       <Bundle-Version>${project.version}-r${buildNumber}</Bundle-Version>
+                                                       <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
+                                                       <_removeheaders>Bnd-LastModified</_removeheaders>
+                                               </instructions>
+                                       </configuration>
+                                       <executions>
+                                               <execution>
+                                                       <id>bundle-manifest</id>
+                                                       <phase>process-classes</phase>
+                                                       <goals>
+                                                               <goal>manifest</goal>
+                                                       </goals>
+                                               </execution>
+                                       </executions>
+                               </plugin>
                        </plugins>
                </pluginManagement>
                <plugins>