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