]> git.argeo.org Git - lgpl/argeo-commons.git/blob - pom.xml
bd7e71f70d99e1925727d06ee8e59c29bb1d0929
[lgpl/argeo-commons.git] / pom.xml
1 <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">
2 <modelVersion>4.0.0</modelVersion>
3 <parent>
4 <groupId>org.argeo.commons.server</groupId>
5 <version>2.1.2-SNAPSHOT</version>
6 <artifactId>runtime</artifactId>
7 <relativePath>..</relativePath>
8 </parent>
9 <artifactId>org.argeo.server.catalina.start</artifactId>
10 <name>Commons Catalina starter</name>
11 <description>Catalina starter hacked from Spring DM sandbox</description>
12 <build>
13 <plugins>
14 <plugin>
15 <groupId>org.apache.felix</groupId>
16 <artifactId>maven-bundle-plugin</artifactId>
17 <configuration>
18 <instructions>
19 <Bundle-Activator>org.argeo.catalina.start.CatalinaActivator</Bundle-Activator>
20 <Import-Package>
21 javax.management;version="0.0.0",
22 *
23 </Import-Package>
24 </instructions>
25 </configuration>
26 </plugin>
27 </plugins>
28 </build>
29 <dependencies>
30 <dependency>
31 <groupId>org.argeo.tp</groupId>
32 <artifactId>org.eclipse.osgi</artifactId>
33 </dependency>
34 <dependency>
35 <groupId>org.argeo.tp</groupId>
36 <artifactId>org.apache.catalina</artifactId>
37 </dependency>
38 <dependency>
39 <groupId>org.argeo.tp</groupId>
40 <artifactId>slf4j.org.apache.commons.logging</artifactId>
41 </dependency>
42 <dependency>
43 <groupId>org.argeo.tp</groupId>
44 <artifactId>org.apache.commons.io</artifactId>
45 </dependency>
46 </dependencies>
47 </project>