]> git.argeo.org Git - gpl/argeo-slc.git/commitdiff
@fix; Fix dependencies not being packaged as OSGi bundle
authorMathieu Baudier <mbaudier@argeo.org>
Tue, 9 Jun 2009 07:35:37 +0000 (07:35 +0000)
committerMathieu Baudier <mbaudier@argeo.org>
Tue, 9 Jun 2009 07:35:37 +0000 (07:35 +0000)
git-svn-id: https://svn.argeo.org/slc/trunk@2515 4cfe0d0a-d680-48aa-b62c-e0a02a3f76cc

dep/org.argeo.slc.dep.server/META-INF/MANIFEST.MF [new file with mode: 0644]
dep/pom.xml

diff --git a/dep/org.argeo.slc.dep.server/META-INF/MANIFEST.MF b/dep/org.argeo.slc.dep.server/META-INF/MANIFEST.MF
new file mode 100644 (file)
index 0000000..7b048d1
--- /dev/null
@@ -0,0 +1,2 @@
+Bundle-SymbolicName: org.argeo.slc.dep.server
+Bundle-Version: 0.11.4.SNAPSHOT
\ No newline at end of file
index dbf8f1abb63ed8f5bd4333ef750d8b2348bafff2..2546c8990be81ddd307ba17032d2b784d1d641ab 100644 (file)
@@ -1,4 +1,5 @@
-<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"
+       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.argeo.slc</groupId>
        <modules>
                <module>org.argeo.slc.dep.server</module>
        </modules>
+       <build>
+               <resources>
+                       <resource>
+                               <directory>.</directory>
+                               <includes>
+                                       <include>META-INF/MANIFEST.MF</include>
+                               </includes>
+                       </resource>
+               </resources>
+               <plugins>
+                       <plugin>
+                               <artifactId>maven-jar-plugin</artifactId>
+                               <configuration>
+                                       <archive>
+                                               <manifestFile>META-INF/MANIFEST.MF</manifestFile>
+                                       </archive>
+                               </configuration>
+                       </plugin>
+               </plugins>
+       </build>
 </project>
\ No newline at end of file