]> git.argeo.org Git - gpl/argeo-slc.git/blob - dep/org.argeo.slc.dep.eclipse/pom.xml
Use latest Commons
[gpl/argeo-slc.git] / dep / org.argeo.slc.dep.eclipse / pom.xml
1 <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">
2 <modelVersion>4.0.0</modelVersion>
3 <parent>
4 <groupId>org.argeo.slc</groupId>
5 <artifactId>dep</artifactId>
6 <version>1.1.7-SNAPSHOT</version>
7 <relativePath>..</relativePath>
8 </parent>
9 <artifactId>org.argeo.slc.dep.eclipse</artifactId>
10 <name>SLC Eclipse Dependencies</name>
11 <build>
12 <plugins>
13 <plugin>
14 <groupId>org.argeo.maven.plugins</groupId>
15 <artifactId>maven-argeo-osgi-plugin</artifactId>
16 <executions>
17 <execution>
18 <id>generate-descriptors</id>
19 <goals>
20 <goal>descriptors</goal>
21 </goals>
22 <phase>generate-resources</phase>
23 </execution>
24 </executions>
25 </plugin>
26 </plugins>
27 </build>
28 <dependencies>
29 <dependency>
30 <groupId>org.argeo.slc</groupId>
31 <artifactId>org.argeo.slc.client.ui</artifactId>
32 <version>1.1.7-SNAPSHOT</version>
33 </dependency>
34 <dependency>
35 <groupId>org.argeo.slc</groupId>
36 <artifactId>org.argeo.slc.client.ui.dist</artifactId>
37 <version>1.1.7-SNAPSHOT</version>
38 </dependency>
39
40 <!-- Back-end Dependencies -->
41 <dependency>
42 <groupId>org.argeo.slc</groupId>
43 <artifactId>org.argeo.slc.dep.backend</artifactId>
44 <version>1.1.7-SNAPSHOT</version>
45 </dependency>
46 </dependencies>
47 <profiles>
48 <profile>
49 <id>rpmbuild</id>
50 <build>
51 <plugins>
52 <plugin>
53 <groupId>org.apache.maven.plugins</groupId>
54 <artifactId>maven-dependency-plugin</artifactId>
55 <executions>
56 <execution>
57 <id>copy-dependencies</id>
58 <phase>process-resources</phase>
59 <goals>
60 <goal>copy-dependencies</goal>
61 </goals>
62 <configuration>
63 <includeTypes>jar</includeTypes>
64 <excludeTransitive>true</excludeTransitive>
65 <outputDirectory>${project.build.directory}/slc-eclipse</outputDirectory>
66 </configuration>
67 </execution>
68 </executions>
69 </plugin>
70 <plugin>
71 <groupId>org.codehaus.mojo</groupId>
72 <artifactId>rpm-maven-plugin</artifactId>
73 <executions>
74 <execution>
75 <id>rpm-slc-eclipse</id>
76 <phase>package</phase>
77 <goals>
78 <goal>rpm</goal>
79 </goals>
80 <configuration>
81 <name>slc-eclipse</name>
82 <mappings>
83 <mapping>
84 <directory>/usr/share/osgi/eclipse</directory>
85 <username>root</username>
86 <groupname>root</groupname>
87 <filemode>644</filemode>
88 <directoryIncluded>false</directoryIncluded>
89 <sources>
90 <source>
91 <location>${project.build.directory}/slc-eclipse</location>
92 </source>
93 </sources>
94 </mapping>
95 </mappings>
96 <requires>
97 <require>slc-libs</require>
98 </requires>
99 </configuration>
100 </execution>
101 </executions>
102 </plugin>
103 </plugins>
104 </build>
105 </profile>
106 </profiles>
107 </project>