]> git.argeo.org Git - lgpl/argeo-commons.git/blob - pom.xml
bf57548e0ca94e8ed9d3de758c028f6c1f84910d
[lgpl/argeo-commons.git] / 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.eclipse</groupId>
6 <version>0.2.2-SNAPSHOT</version>
7 <artifactId>plugins</artifactId>
8 <relativePath>..</relativePath>
9 </parent>
10 <artifactId>org.argeo.eclipse.ui.jcr</artifactId>
11 <name>Commons Eclipse UI JCR</name>
12 <packaging>jar</packaging>
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 <version>${version.maven-bundle-plugin}</version>
31 <configuration>
32 <instructions>
33 <Bundle-ActivationPolicy>lazy</Bundle-ActivationPolicy>
34 <Import-Package>
35 org.eclipse.swt,
36 *
37 </Import-Package>
38 </instructions>
39 </configuration>
40 </plugin>
41 </plugins>
42 </build>
43 <dependencies>
44
45 <!-- Argeo Eclipse distribution (common dependencies for both RAP and RCP) -->
46 <dependency>
47 <groupId>org.argeo.commons.eclipse</groupId>
48 <artifactId>org.argeo.eclipse.dep.common</artifactId>
49 <version>0.2.2-SNAPSHOT</version>
50 </dependency>
51
52 <dependency>
53 <groupId>org.argeo.commons.eclipse</groupId>
54 <artifactId>org.argeo.eclipse.ui</artifactId>
55 <version>0.2.2-SNAPSHOT</version>
56 </dependency>
57
58 <!-- JCR -->
59 <dependency>
60 <groupId>org.argeo.dep.osgi</groupId>
61 <artifactId>org.argeo.dep.osgi.jcr</artifactId>
62 </dependency>
63
64 <!-- RCP only dependency, needed at compile time -->
65 <dependency>
66 <groupId>org.argeo.commons.eclipse</groupId>
67 <artifactId>org.argeo.eclipse.dep.rcp</artifactId>
68 <version>${version.argeo-commons}</version>
69 <scope>provided</scope>
70 </dependency>
71
72 <!-- Commons -->
73 <dependency>
74 <groupId>org.argeo.commons.basic</groupId>
75 <artifactId>org.argeo.basic.nodeps</artifactId>
76 <version>0.2.2-SNAPSHOT</version>
77 </dependency>
78
79 <!-- Logging -->
80 <dependency>
81 <groupId>org.apache.commons</groupId>
82 <artifactId>com.springsource.org.apache.commons.io</artifactId>
83 </dependency>
84 <dependency>
85 <groupId>org.slf4j</groupId>
86 <artifactId>com.springsource.slf4j.org.apache.commons.logging</artifactId>
87 </dependency>
88 <dependency>
89 <groupId>org.apache.log4j</groupId>
90 <artifactId>com.springsource.org.apache.log4j</artifactId>
91 </dependency>
92
93
94 </dependencies>
95 </project>