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