]> git.argeo.org Git - lgpl/argeo-commons.git/blob - server/runtime/org.argeo.server.core/pom.xml
Restructure JCR repository wrappers
[lgpl/argeo-commons.git] / server / runtime / org.argeo.server.core / 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.commons.server</groupId>
6 <artifactId>runtime</artifactId>
7 <version>1.1.4-SNAPSHOT</version>
8 <relativePath>..</relativePath>
9 </parent>
10 <artifactId>org.argeo.server.core</artifactId>
11 <name>Commons Server Core</name>
12 <build>
13 <plugins>
14 <plugin>
15 <groupId>org.apache.maven.plugins</groupId>
16 <artifactId>maven-compiler-plugin</artifactId>
17 </plugin>
18 <plugin>
19 <groupId>org.apache.maven.plugins</groupId>
20 <artifactId>maven-source-plugin</artifactId>
21 </plugin>
22 <plugin>
23 <groupId>org.apache.maven.plugins</groupId>
24 <artifactId>maven-jar-plugin</artifactId>
25 </plugin>
26 <plugin>
27 <groupId>org.apache.felix</groupId>
28 <artifactId>maven-bundle-plugin</artifactId>
29
30 <configuration>
31 <instructions>
32 <Export-Package>
33 org.argeo.server.*
34 </Export-Package>
35 <Import-Package>javax.xml.transform.*;version="0.0.0",*</Import-Package>
36 </instructions>
37 </configuration>
38 </plugin>
39 </plugins>
40 </build>
41 <dependencies>
42 <dependency>
43 <groupId>org.argeo.commons.base</groupId>
44 <artifactId>org.argeo.util</artifactId>
45 <version>1.1.4-SNAPSHOT</version>
46 </dependency>
47
48
49 <!-- Apache Commons -->
50 <dependency>
51 <groupId>org.argeo.tp</groupId>
52 <artifactId>org.apache.commons.io</artifactId>
53 </dependency>
54
55 <!-- Spring -->
56 <dependency>
57 <groupId>org.argeo.tp</groupId>
58 <artifactId>org.springframework.web</artifactId>
59 </dependency>
60 <dependency>
61 <groupId>org.argeo.tp</groupId>
62 <artifactId>org.springframework.web.servlet</artifactId>
63 </dependency>
64 <dependency>
65 <groupId>org.argeo.tp</groupId>
66 <artifactId>org.springframework.oxm</artifactId>
67 </dependency>
68
69 <!-- J2EE -->
70 <dependency>
71 <groupId>org.argeo.tp</groupId>
72 <artifactId>javax.servlet</artifactId>
73 </dependency>
74
75 <!-- Logging -->
76 <dependency>
77 <groupId>org.argeo.tp</groupId>
78 <artifactId>slf4j.org.apache.commons.logging</artifactId>
79 </dependency>
80
81 </dependencies>
82 </project>