]> git.argeo.org Git - lgpl/argeo-commons.git/blob - server/runtime/org.argeo.server.catalina.start/pom.xml
Make use of Equinox more consistent
[lgpl/argeo-commons.git] / server / runtime / org.argeo.server.catalina.start / 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.8-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 <scope>provided</scope>
34 </dependency>
35 <dependency>
36 <groupId>org.argeo.tp</groupId>
37 <artifactId>org.apache.catalina</artifactId>
38 </dependency>
39 <dependency>
40 <groupId>org.argeo.tp</groupId>
41 <artifactId>slf4j.org.apache.commons.logging</artifactId>
42 </dependency>
43 <dependency>
44 <groupId>org.argeo.tp</groupId>
45 <artifactId>org.apache.commons.io</artifactId>
46 </dependency>
47 </dependencies>
48 </project>