]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.repo/pom.xml
814b4f6feed78c90b6ae5744fde1228644fdde5d
[gpl/argeo-slc.git] / runtime / org.argeo.slc.repo / pom.xml
1 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2 <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">
3 <modelVersion>4.0.0</modelVersion>
4 <parent>
5 <groupId>org.argeo.slc</groupId>
6 <artifactId>runtime</artifactId>
7 <version>1.1.15-SNAPSHOT</version>
8 <relativePath>..</relativePath>
9 </parent>
10 <artifactId>org.argeo.slc.repo</artifactId>
11 <name>SLC Repo Runtime</name>
12 <build>
13 <plugins>
14 <plugin>
15 <groupId>org.apache.felix</groupId>
16 <artifactId>maven-bundle-plugin</artifactId>
17
18 <configuration>
19 <instructions>
20 <Export-Package>
21 org.argeo.slc.repo.*
22 </Export-Package>
23 <Import-Package>
24 org.w3c.dom.*;version="0.0.0",
25 org.xml.sax.*;version="0.0.0",
26 javax.xml.transform.*;version="0.0.0",
27 javax.xml.parsers.*;version="0.0.0",
28 javax.jcr.nodetype,
29 *
30 </Import-Package>
31 </instructions>
32 </configuration>
33 </plugin>
34 </plugins>
35 </build>
36 <dependencies>
37 <!-- SLC Runtime -->
38 <dependency>
39 <groupId>org.argeo.slc</groupId>
40 <artifactId>org.argeo.slc.support.aether</artifactId>
41 <version>1.1.15-SNAPSHOT</version>
42 </dependency>
43 <dependency>
44 <groupId>org.argeo.slc</groupId>
45 <artifactId>org.argeo.slc.support.jcr</artifactId>
46 <version>1.1.15-SNAPSHOT</version>
47 </dependency>
48
49 <!-- Commons -->
50 <dependency>
51 <groupId>org.argeo.commons.server</groupId>
52 <artifactId>org.argeo.server.jcr</artifactId>
53 <version>${version.argeo-commons}</version>
54 </dependency>
55
56 <!-- Third party -->
57 <dependency>
58 <groupId>org.argeo.tp</groupId>
59 <artifactId>org.apache.commons.io</artifactId>
60 </dependency>
61 <dependency>
62 <groupId>org.argeo.tp</groupId>
63 <artifactId>slf4j.org.apache.commons.logging</artifactId>
64 </dependency>
65 <dependency>
66 <groupId>org.argeo.tp</groupId>
67 <artifactId>javax.servlet</artifactId>
68 </dependency>
69
70 <!-- OSGi -->
71 <dependency>
72 <groupId>org.argeo.tp</groupId>
73 <artifactId>biz.aQute.bndlib</artifactId>
74 </dependency>
75 <dependency>
76 <groupId>org.argeo.tp</groupId>
77 <artifactId>org.eclipse.osgi</artifactId>
78 <scope>provided</scope>
79 </dependency>
80
81 </dependencies>
82 </project>