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