]> git.argeo.org Git - lgpl/argeo-commons.git/blob - pom.xml
5afd2a6865fe73a51d50ec2a01edd8368de04024
[lgpl/argeo-commons.git] / 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</groupId>
7 <artifactId>argeo-commons</artifactId>
8 <version>2.1.12-SNAPSHOT</version>
9 <relativePath>..</relativePath>
10 </parent>
11 <artifactId>org.argeo.cms</artifactId>
12 <name>Argeo Content Management System</name>
13 <packaging>jar</packaging>
14 <!-- TODO merge in parent -->
15 <build>
16 <sourceDirectory>src</sourceDirectory>
17 <resources>
18 <resource>
19 <directory>src</directory>
20 <includes>
21 <include>**</include>
22 </includes>
23 <excludes>
24 <exclude>**/*.java</exclude>
25 </excludes>
26 </resource>
27 <resource>
28 <directory>.</directory>
29 <includes>
30 <include>**</include>
31 </includes>
32 <excludes>
33 <exclude>.*</exclude>
34 <exclude>.*/**</exclude>
35 <exclude>src/**</exclude>
36 <exclude>target/**</exclude>
37 <exclude>bin/**</exclude>
38 <exclude>pom.xml</exclude>
39 <exclude>build.properties</exclude>
40 <exclude>*.bnd</exclude>
41 <exclude>*.target</exclude>
42 </excludes>
43 </resource>
44 </resources>
45 <plugins>
46 <plugin>
47 <groupId>org.apache.felix</groupId>
48 <artifactId>maven-bundle-plugin</artifactId>
49 <configuration>
50 <instructions>
51 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
52 <_include>bnd.bnd</_include>
53 </instructions>
54 </configuration>
55 </plugin>
56 </plugins>
57 </build>
58 <!-- END -->
59 <dependencies>
60 <dependency>
61 <groupId>org.argeo.commons</groupId>
62 <artifactId>org.argeo.server.jcr</artifactId>
63 <version>2.1.12-SNAPSHOT</version>
64 </dependency>
65
66 <dependency>
67 <groupId>org.argeo.commons</groupId>
68 <artifactId>org.argeo.security.core</artifactId>
69 <version>2.1.12-SNAPSHOT</version>
70 </dependency>
71
72 <!-- Files -->
73 <dependency>
74 <groupId>org.argeo.tp.rap.addons</groupId>
75 <artifactId>org.eclipse.rap.addons.fileupload</artifactId>
76 </dependency>
77 <dependency>
78 <groupId>org.argeo.tp.rap.addons</groupId>
79 <artifactId>org.eclipse.rap.addons.filedialog</artifactId>
80 </dependency>
81
82 <!-- RAP -->
83 <dependency>
84 <groupId>org.argeo.tp.rap.platform</groupId>
85 <artifactId>org.eclipse.rap.rwt</artifactId>
86 </dependency>
87 <dependency>
88 <groupId>org.argeo.tp.rap.platform</groupId>
89 <artifactId>org.eclipse.rap.jface</artifactId>
90 </dependency>
91 <dependency>
92 <groupId>org.argeo.tp.rap.platform</groupId>
93 <artifactId>org.eclipse.core.commands</artifactId>
94 </dependency>
95
96 <!-- OSGi -->
97 <dependency>
98 <groupId>org.argeo.tp</groupId>
99 <artifactId>org.springframework.osgi.core</artifactId>
100 </dependency>
101 <dependency>
102 <groupId>org.argeo.tp.rap.platform</groupId>
103 <artifactId>org.eclipse.osgi</artifactId>
104 <scope>provided</scope>
105 </dependency>
106 </dependencies>
107 </project>