]> git.argeo.org Git - gpl/argeo-slc.git/blob - plugins/org.argeo.slc.client.ui.dist/pom.xml
Main free licences
[gpl/argeo-slc.git] / plugins / org.argeo.slc.client.ui.dist / 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" 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.slc</groupId>
6 <artifactId>plugins</artifactId>
7 <version>1.1.19-SNAPSHOT</version>
8 <relativePath>..</relativePath>
9 </parent>
10 <artifactId>org.argeo.slc.client.ui.dist</artifactId>
11 <name>SLC Client UI Distribution</name>
12 <packaging>jar</packaging>
13 <build>
14 <plugins>
15 <plugin>
16 <groupId>org.apache.felix</groupId>
17 <artifactId>maven-bundle-plugin</artifactId>
18 <configuration>
19 <instructions>
20 <Bundle-Activator>org.argeo.slc.client.ui.dist.DistPlugin</Bundle-Activator>
21 <Require-Bundle>
22 org.eclipse.ui;resolution:=optional,
23 org.eclipse.rap.ui;resolution:=optional,
24 org.eclipse.core.runtime;resolution:=optional,
25 org.eclipse.rap.ui.workbench;resolution:=optional
26 </Require-Bundle>
27 <Import-Package>
28 org.argeo.eclipse.spring,
29 javax.jcr.nodetype,
30 javax.jcr.security,
31 aQute.lib.*;resolution:=optional,
32 org.argeo.slc.client.ui.specific,
33 *
34 </Import-Package>
35 </instructions>
36 </configuration>
37 </plugin>
38 </plugins>
39 </build>
40 <dependencies>
41
42 <!-- Single sourcing - we build against RCP -->
43 <dependency>
44 <groupId>org.argeo.slc</groupId>
45 <artifactId>org.argeo.slc.client.rcp</artifactId>
46 <version>1.1.19-SNAPSHOT</version>
47 <scope>provided</scope>
48 </dependency>
49
50 <!-- Commons UI -->
51 <dependency>
52 <groupId>org.argeo.commons.base</groupId>
53 <artifactId>org.argeo.eclipse.ui</artifactId>
54 <version>${version.argeo-commons}</version>
55 </dependency>
56 <dependency>
57 <groupId>org.argeo.commons.base</groupId>
58 <artifactId>org.argeo.eclipse.ui.jcr</artifactId>
59 <version>${version.argeo-commons}</version>
60 </dependency>
61 <dependency>
62 <groupId>org.argeo.commons.base</groupId>
63 <artifactId>org.argeo.eclipse.ui.rcp</artifactId>
64 <version>${version.argeo-commons}</version>
65 <scope>provided</scope>
66 </dependency>
67
68 <!-- SLC repo -->
69 <dependency>
70 <groupId>org.argeo.slc</groupId>
71 <artifactId>org.argeo.slc.specs</artifactId>
72 <version>1.1.19-SNAPSHOT</version>
73 </dependency>
74 <dependency>
75 <groupId>org.argeo.slc</groupId>
76 <artifactId>org.argeo.slc.repo</artifactId>
77 <version>1.1.19-SNAPSHOT</version>
78 </dependency>
79 <dependency>
80 <groupId>org.argeo.slc</groupId>
81 <artifactId>org.argeo.slc.server.repo</artifactId>
82 <version>1.1.19-SNAPSHOT</version>
83 </dependency>
84
85 <dependency>
86 <groupId>org.argeo.tp</groupId>
87 <artifactId>biz.aQute.bndlib</artifactId>
88 </dependency>
89
90 <!-- Argeo Base dependencies -->
91 <dependency>
92 <groupId>org.argeo.commons.base</groupId>
93 <artifactId>org.argeo.util</artifactId>
94 <version>${version.argeo-commons}</version>
95 </dependency>
96
97 </dependencies>
98 </project>