]> git.argeo.org Git - lgpl/argeo-commons.git/blob - server/runtime/org.argeo.server.core/pom.xml
Restructure node distirbution
[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"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4 <modelVersion>4.0.0</modelVersion>
5 <parent>
6 <groupId>org.argeo.commons.server</groupId>
7 <artifactId>runtime</artifactId>
8 <version>1.1.4-SNAPSHOT</version>
9 <relativePath>..</relativePath>
10 </parent>
11 <artifactId>org.argeo.server.core</artifactId>
12 <name>Commons Server Core</name>
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
31 <configuration>
32 <instructions>
33 <Export-Package>
34 org.argeo.server.*
35 </Export-Package>
36 <Import-Package>javax.xml.transform.*;version="0.0.0",*</Import-Package>
37 </instructions>
38 </configuration>
39 </plugin>
40 </plugins>
41 </build>
42 <dependencies>
43 <dependency>
44 <groupId>org.argeo.commons.base</groupId>
45 <artifactId>org.argeo.util</artifactId>
46 <version>1.1.4-SNAPSHOT</version>
47 </dependency>
48
49 <!-- JCR -->
50 <dependency>
51 <groupId>org.argeo.commons.server</groupId>
52 <artifactId>org.argeo.server.jcr</artifactId>
53 <version>1.1.4-SNAPSHOT</version>
54 </dependency>
55
56 <!-- Apache Commons -->
57 <dependency>
58 <groupId>org.argeo.tp</groupId>
59 <artifactId>org.apache.commons.io</artifactId>
60 </dependency>
61
62 <!-- Spring -->
63 <dependency>
64 <groupId>org.argeo.tp</groupId>
65 <artifactId>org.springframework.web</artifactId>
66 </dependency>
67 <dependency>
68 <groupId>org.argeo.tp</groupId>
69 <artifactId>org.springframework.web.servlet</artifactId>
70 </dependency>
71 <dependency>
72 <groupId>org.argeo.tp</groupId>
73 <artifactId>org.springframework.oxm</artifactId>
74 </dependency>
75
76 <!-- J2EE -->
77 <dependency>
78 <groupId>org.argeo.tp</groupId>
79 <artifactId>javax.servlet</artifactId>
80 </dependency>
81
82 <!-- Logging -->
83 <dependency>
84 <groupId>org.argeo.tp</groupId>
85 <artifactId>slf4j.org.apache.commons.logging</artifactId>
86 </dependency>
87
88 <dependency>
89 <groupId>org.argeo.tp</groupId>
90 <artifactId>org.apache.commons.fileupload</artifactId>
91 </dependency>
92 </dependencies>
93 </project>