]> git.argeo.org Git - lgpl/argeo-commons.git/blob - security/eclipse/plugins/org.argeo.security.ui.application/pom.xml
Improve build and maven structure
[lgpl/argeo-commons.git] / security / eclipse / plugins / org.argeo.security.ui.application / 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.security</groupId>
6 <version>0.2.3-SNAPSHOT</version>
7 <artifactId>plugins</artifactId>
8 <relativePath>..</relativePath>
9 </parent>
10 <artifactId>org.argeo.security.ui.application</artifactId>
11 <name>Commons Security UI Application</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-Activator>org.argeo.security.ui.application.SecureApplicationActivator</Bundle-Activator>
34 <Bundle-ActivationPolicy>lazy</Bundle-ActivationPolicy>
35 <Require-Bundle>org.eclipse.ui;resolution:=optional,org.eclipse.rap.ui;resolution:=optional,org.eclipse.core.runtime</Require-Bundle>
36 <Import-Package>*</Import-Package>
37 </instructions>
38 </configuration>
39 </plugin>
40 <plugin>
41 <groupId>org.argeo.maven.plugins</groupId>
42 <artifactId>maven-argeo-osgi-plugin</artifactId>
43 <executions>
44 <execution>
45 <id>resolve-pde-sources</id>
46 <goals>
47 <goal>pde-sources</goal>
48 </goals>
49 <phase>generate-resources</phase>
50 </execution>
51 <execution>
52 <id>generate-descriptors</id>
53 <goals>
54 <goal>descriptors</goal>
55 </goals>
56 <phase>generate-resources</phase>
57 </execution>
58 <execution>
59 <id>check-osgi</id>
60 <phase>test</phase>
61 <goals>
62 <goal>equinox</goal>
63 </goals>
64 <configuration>
65 <onlyCheck>true</onlyCheck>
66 <argsToAppend>
67 <arg>-clean</arg>
68 </argsToAppend>
69 </configuration>
70 </execution>
71 </executions>
72 </plugin>
73 </plugins>
74 </build>
75 <dependencies>
76 <!-- Argeo Security -->
77 <dependency>
78 <groupId>org.argeo.commons.security</groupId>
79 <artifactId>org.argeo.security.ui</artifactId>
80 <version>0.2.3-SNAPSHOT</version>
81 </dependency>
82 <dependency>
83 <groupId>org.argeo.commons.security</groupId>
84 <artifactId>org.argeo.security.equinox</artifactId>
85 <version>0.2.3-SNAPSHOT</version>
86 </dependency>
87
88 <!-- Argeo Eclipse distribution (common dependencies for both RAP and RCP) -->
89 <dependency>
90 <groupId>org.argeo.commons.eclipse</groupId>
91 <artifactId>org.argeo.eclipse.dep.rcp</artifactId>
92 <version>0.2.3-SNAPSHOT</version>
93 <scope>provided</scope>
94 </dependency>
95
96 <!-- Commons -->
97 <dependency>
98 <groupId>org.argeo.commons.basic</groupId>
99 <artifactId>org.argeo.basic.nodeps</artifactId>
100 <version>0.2.3-SNAPSHOT</version>
101 </dependency>
102
103
104 <!-- Others -->
105 <dependency>
106 <groupId>org.slf4j</groupId>
107 <artifactId>com.springsource.slf4j.org.apache.commons.logging</artifactId>
108 </dependency>
109
110 <!-- For testing and target platform generation -->
111 <!-- LDAP server and security services -->
112 <dependency>
113 <groupId>org.argeo.commons.security</groupId>
114 <artifactId>org.argeo.security.dep.ads</artifactId>
115 <version>${version.argeo-commons}</version>
116 <type>pom</type>
117 <scope>test</scope>
118 </dependency>
119 </dependencies>
120 </project>