]> git.argeo.org Git - lgpl/argeo-commons.git/blob - server/runtime/org.argeo.server.webextender/pom.xml
Fix issue with empty description in OpenLDAP
[lgpl/argeo-commons.git] / server / runtime / org.argeo.server.webextender / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4 <parent>
5 <groupId>org.argeo.commons.server</groupId>
6 <artifactId>runtime</artifactId>
7 <version>0.2.3-SNAPSHOT</version>
8 <relativePath>..</relativePath>
9 </parent>
10 <artifactId>org.argeo.server.webextender</artifactId>
11 <name>Commons Server Web Extender (Spring DM)</name>
12 <description>Configure / hack Spring DM web extender</description>
13 <build>
14 <plugins>
15 <plugin>
16 <groupId>org.apache.maven.plugins</groupId>
17 <artifactId>maven-compiler-plugin</artifactId>
18 </plugin>
19 <plugin>
20 <groupId>org.apache.maven.plugins</groupId>
21 <artifactId>maven-source-plugin</artifactId>
22 </plugin>
23 <plugin>
24 <groupId>org.apache.maven.plugins</groupId>
25 <artifactId>maven-jar-plugin</artifactId>
26 </plugin>
27 <plugin>
28 <groupId>org.apache.felix</groupId>
29 <artifactId>maven-bundle-plugin</artifactId>
30 <version>${version.maven-bundle-plugin}</version>
31 <configuration>
32 <instructions>
33 <Fragment-Host>org.springframework.osgi.web.extender</Fragment-Host>
34 <Export-Package>org.argeo.server.webextender.*</Export-Package>
35 <Import-Package>org.springframework.beans.factory,*</Import-Package>
36 </instructions>
37 </configuration>
38 </plugin>
39 </plugins>
40 </build>
41 <dependencies>
42 <!-- Spring -->
43 <dependency>
44 <groupId>org.springframework.osgi</groupId>
45 <artifactId>org.springframework.osgi.web.extender</artifactId>
46 </dependency>
47 <dependency>
48 <groupId>org.apache.catalina</groupId>
49 <artifactId>com.springsource.org.apache.catalina</artifactId>
50 </dependency>
51 <dependency>
52 <groupId>org.springframework</groupId>
53 <artifactId>org.springframework.beans</artifactId>
54 </dependency>
55 <dependency>
56 <groupId>org.slf4j</groupId>
57 <artifactId>com.springsource.slf4j.org.apache.commons.logging</artifactId>
58 </dependency>
59 </dependencies>
60 </project>