]> git.argeo.org Git - gpl/argeo-slc.git/blob - dep/org.argeo.slc.dep.eclipse/pom.xml
Remove SVN Kit support
[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"
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.slc</groupId>
6 <artifactId>dep</artifactId>
7 <version>2.1.1-SNAPSHOT</version>
8 <relativePath>..</relativePath>
9 </parent>
10 <artifactId>org.argeo.slc.dep.eclipse</artifactId>
11 <name>SLC Eclipse</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</groupId>
32 <artifactId>org.argeo.slc.client.ui</artifactId>
33 <version>2.1.1-SNAPSHOT</version>
34 </dependency>
35 <dependency>
36 <groupId>org.argeo.slc</groupId>
37 <artifactId>org.argeo.slc.client.ui.dist</artifactId>
38 <version>2.1.1-SNAPSHOT</version>
39 </dependency>
40
41 <!-- Back-end Dependencies -->
42 <dependency>
43 <groupId>org.argeo.slc</groupId>
44 <artifactId>org.argeo.slc.dep.backend</artifactId>
45 <version>2.1.1-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 <mappings>
84 <mapping>
85 <directory>/usr/share/osgi/eclipse</directory>
86 <username>root</username>
87 <groupname>root</groupname>
88 <filemode>644</filemode>
89 <directoryIncluded>false</directoryIncluded>
90 <sources>
91 <source>
92 <location>${project.build.directory}/slc-eclipse</location>
93 </source>
94 </sources>
95 </mapping>
96 </mappings>
97 <requires>
98 <require>slc-libs</require>
99 </requires>
100 </configuration>
101 </execution>
102 </executions>
103 </plugin>
104 </plugins>
105 </build>
106 </profile>
107 </profiles>
108 </project>