]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.server/pom.xml
cd5812de5c204f707bb42bc8df79576b5dc1db22
[gpl/argeo-slc.git] / runtime / org.argeo.slc.server / 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.slc</groupId>
5 <artifactId>runtime</artifactId>
6 <version>1.1.2-SNAPSHOT</version>
7 <relativePath>..</relativePath>
8 </parent>
9 <groupId>org.argeo.slc.runtime</groupId>
10 <artifactId>org.argeo.slc.server</artifactId>
11 <name>SLC Server</name>
12 <description>SLC Server</description>
13 <build>
14 <plugins>
15 <plugin>
16 <groupId>org.apache.felix</groupId>
17 <artifactId>maven-bundle-plugin</artifactId>
18 <configuration>
19 <instructions>
20 <Export-Package>
21 org.argeo.slc.*,org.argeo.slc.server,org.argeo.slc.server.spring
22 </Export-Package>
23 <Import-Package>org.w3c.dom;version="0.0.0",
24 javax.xml.*;version="0.0.0",
25 org.argeo.slc.activemq;resolution:=optional,
26 org.argeo.slc.execution,
27 org.springframework.context.support,
28 org.tmatesoft.svn.*;resolution:=optional,
29 com.lowagie.*;resolution:=optional,
30 com.springsource.json.*;resolution:=optional,
31 org.springframework.oxm.*;resolution:=optional,
32 *
33 </Import-Package>
34 </instructions>
35 </configuration>
36 </plugin>
37 </plugins>
38 </build>
39 <dependencies>
40 <!-- Commons -->
41 <dependency>
42 <groupId>org.argeo.commons.security</groupId>
43 <artifactId>org.argeo.security.core</artifactId>
44 <version>${version.argeo-commons}</version>
45 </dependency>
46
47 <!-- SLC -->
48 <dependency>
49 <groupId>org.argeo.slc.runtime</groupId>
50 <artifactId>org.argeo.slc.core</artifactId>
51 <version>1.1.2-SNAPSHOT</version>
52 </dependency>
53
54 <!-- Spring -->
55 <dependency>
56 <groupId>org.argeo.tp</groupId>
57 <artifactId>org.springframework.web</artifactId>
58 </dependency>
59 <dependency>
60 <groupId>org.argeo.tp</groupId>
61 <artifactId>org.springframework.web.servlet</artifactId>
62 </dependency>
63 <dependency>
64 <groupId>org.argeo.tp</groupId>
65 <artifactId>org.springframework.aop</artifactId>
66 </dependency>
67 <dependency>
68 <groupId>org.argeo.tp</groupId>
69 <artifactId>org.springframework.oxm</artifactId>
70 <optional>true</optional>
71 </dependency>
72
73 <!-- Web -->
74 <dependency>
75 <groupId>org.argeo.tp</groupId>
76 <artifactId>org.apache.commons.fileupload</artifactId>
77 </dependency>
78
79 <!-- J2EE -->
80 <dependency>
81 <groupId>org.argeo.tp</groupId>
82 <artifactId>javax.servlet</artifactId>
83 </dependency>
84
85 <!-- AOP -->
86 <dependency>
87 <groupId>org.argeo.tp</groupId>
88 <artifactId>org.aspectj.weaver</artifactId>
89 </dependency>
90
91 <!-- Docs -->
92 <dependency>
93 <groupId>org.argeo.tp</groupId>
94 <artifactId>jxl</artifactId>
95 </dependency>
96 <dependency>
97 <groupId>org.argeo.tp</groupId>
98 <artifactId>com.lowagie.text</artifactId>
99 </dependency>
100
101 <!-- Security -->
102
103 <dependency>
104 <groupId>org.argeo.tp</groupId>
105 <artifactId>com.springsource.json</artifactId>
106 <version>1.0.1.RELEASE</version>
107 <optional>true</optional>
108 </dependency>
109 <dependency>
110 <groupId>org.argeo.tp</groupId>
111 <artifactId>org.antlr</artifactId>
112 <optional>true</optional>
113 </dependency>
114
115 <!-- SVN -->
116 <dependency>
117 <groupId>org.argeo.tp</groupId>
118 <artifactId>org.tmatesoft.svn</artifactId>
119 <optional>true</optional>
120 </dependency>
121
122 <!-- Commons VFS <dependency> <groupId>org.apache.commons</groupId> <artifactId>com.springsource.org.apache.commons.vfs</artifactId>
123 </dependency> -->
124 </dependencies>
125 </project>