]> git.argeo.org Git - lgpl/argeo-commons.git/blob - server/runtime/org.argeo.server.modeshape/pom.xml
Add JCR MVC
[lgpl/argeo-commons.git] / server / runtime / org.argeo.server.modeshape / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4 <parent>
5 <groupId>org.argeo.commons.server</groupId>
6 <artifactId>runtime</artifactId>
7 <version>0.2.3-SNAPSHOT</version>
8 <relativePath>..</relativePath>
9 </parent>
10 <artifactId>org.argeo.server.modeshape</artifactId>
11 <name>Commons Server Modeshape</name>
12 <build>
13 <plugins>
14 <plugin>
15 <groupId>org.apache.maven.plugins</groupId>
16 <artifactId>maven-compiler-plugin</artifactId>
17 </plugin>
18 <plugin>
19 <groupId>org.apache.maven.plugins</groupId>
20 <artifactId>maven-source-plugin</artifactId>
21 </plugin>
22 <plugin>
23 <groupId>org.apache.maven.plugins</groupId>
24 <artifactId>maven-jar-plugin</artifactId>
25 </plugin>
26 <plugin>
27 <groupId>org.apache.felix</groupId>
28 <artifactId>maven-bundle-plugin</artifactId>
29 <version>${version.maven-bundle-plugin}</version>
30 <configuration>
31 <instructions>
32 <Export-Package>
33 org.argeo.modeshape.*,
34 </Export-Package>
35 </instructions>
36 </configuration>
37 </plugin>
38 </plugins>
39 </build>
40 <dependencies>
41 <dependency>
42 <groupId>org.argeo.dep.osgi</groupId>
43 <artifactId>org.argeo.dep.osgi.modeshape</artifactId>
44 </dependency>
45
46 <dependency>
47 <groupId>org.argeo.dep.osgi</groupId>
48 <artifactId>org.argeo.dep.osgi.jcr</artifactId>
49 </dependency>
50
51 <dependency>
52 <groupId>org.argeo.commons.basic</groupId>
53 <artifactId>org.argeo.basic.dep.log4j</artifactId>
54 <version>0.2.3-SNAPSHOT</version>
55 <type>pom</type>
56 </dependency>
57
58
59 <dependency>
60 <groupId>org.argeo.commons.osgi</groupId>
61 <artifactId>org.argeo.osgi.boot</artifactId>
62 <version>0.2.3-SNAPSHOT</version>
63 <scope>test</scope>
64 </dependency>
65 </dependencies>
66 </project>