]> git.argeo.org Git - lgpl/argeo-commons.git/blob - server/runtime/org.argeo.server.jcr.mvc/pom.xml
Change profile and user home
[lgpl/argeo-commons.git] / server / runtime / org.argeo.server.jcr.mvc / 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.4-SNAPSHOT</version>
7 <relativePath>..</relativePath>
8 </parent>
9 <artifactId>org.argeo.server.jcr.mvc</artifactId>
10 <name>Commons Server JCR MVC</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.jcr.mvc.*
33 </Export-Package>
34 <Import-Package>
35 org.springframework.beans.factory,
36 javax.xml.transform.*;version="0.0.0",
37 javax.xml.parsers.*;version="0.0.0",
38 org.w3c.dom.*;version="0.0.0",
39 org.xml.sax.*;version="0.0.0",
40 *
41 </Import-Package>
42 </instructions>
43 </configuration>
44 </plugin>
45 </plugins>
46 </build>
47 <dependencies>
48 <dependency>
49 <groupId>org.argeo.commons.server</groupId>
50 <artifactId>org.argeo.server.jcr</artifactId>
51 <version>1.1.4-SNAPSHOT</version>
52 </dependency>
53
54 <dependency>
55 <groupId>org.argeo.commons.server</groupId>
56 <artifactId>org.argeo.server.core</artifactId>
57 <version>1.1.4-SNAPSHOT</version>
58 </dependency>
59
60 <dependency>
61 <groupId>org.argeo.tp</groupId>
62 <artifactId>org.apache.commons.io</artifactId>
63 </dependency>
64
65 <!-- Spring -->
66 <dependency>
67 <groupId>org.argeo.tp</groupId>
68 <artifactId>org.springframework.web.servlet</artifactId>
69 </dependency>
70
71 <dependency>
72 <groupId>org.argeo.tp</groupId>
73 <artifactId>org.springframework.security.core</artifactId>
74 </dependency>
75
76 <dependency>
77 <groupId>org.argeo.tp</groupId>
78 <artifactId>org.springframework.xml</artifactId>
79 </dependency>
80
81 <!-- Logging -->
82 <dependency>
83 <groupId>org.argeo.tp</groupId>
84 <artifactId>slf4j.org.apache.commons.logging</artifactId>
85 </dependency>
86
87 <dependency>
88 <groupId>org.argeo.tp</groupId>
89 <artifactId>org.apache.commons.fileupload</artifactId>
90 </dependency>
91 </dependencies>
92 </project>