]> git.argeo.org Git - lgpl/argeo-commons.git/blob - pom.xml
fe3da62735e19880eddc846b0b9c7578ddd20939
[lgpl/argeo-commons.git] / 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.commons</groupId>
6 <version>2.1.34</version>
7 <artifactId>dep</artifactId>
8 <relativePath>..</relativePath>
9 </parent>
10 <artifactId>org.argeo.dep.cms.sdk</artifactId>
11 <name>CMS SDK</name>
12 <dependencies>
13 <dependency>
14 <groupId>org.argeo.commons</groupId>
15 <artifactId>org.argeo.dep.cms.platform</artifactId>
16 <version>2.1.34</version>
17 </dependency>
18
19 <!-- ALM Third Parties -->
20 <dependency>
21 <groupId>org.argeo.tp.apache.ant</groupId>
22 <artifactId>org.apache.ant</artifactId>
23 </dependency>
24 <dependency>
25 <groupId>org.argeo.tp.apache.ant</groupId>
26 <artifactId>org.apache.ant.launch</artifactId>
27 </dependency>
28 <dependency>
29 <groupId>org.argeo.tp.misc</groupId>
30 <artifactId>biz.aQute.bnd</artifactId>
31 </dependency>
32 <dependency>
33 <groupId>org.argeo.tp.misc</groupId>
34 <artifactId>org.junit</artifactId>
35 </dependency>
36
37 </dependencies>
38
39 <profiles>
40 <profile>
41 <id>rpmbuild-tp</id>
42 <build>
43 <plugins>
44 <plugin>
45 <groupId>org.apache.maven.plugins</groupId>
46 <artifactId>maven-dependency-plugin</artifactId>
47 <executions>
48 <execution>
49 <id>copy-tp</id>
50 <phase>package</phase>
51 <goals>
52 <goal>copy-dependencies</goal>
53 </goals>
54 <configuration>
55 <includeTypes>jar</includeTypes>
56 <outputDirectory>${project.build.directory}/lib-tp</outputDirectory>
57 <excludeGroupIds>org.argeo.commons</excludeGroupIds>
58 <excludeTransitive>true</excludeTransitive>
59 <includeTypes>jar</includeTypes>
60 <includeScope>runtime</includeScope>
61 </configuration>
62 </execution>
63 </executions>
64 </plugin>
65 <plugin>
66 <groupId>org.codehaus.mojo</groupId>
67 <artifactId>rpm-maven-plugin</artifactId>
68 <executions>
69 <execution>
70 <id>rpm-tp</id>
71 <phase>package</phase>
72 <goals>
73 <goal>rpm</goal>
74 </goals>
75 <configuration>
76 <name>argeo-cms-sdk-tp</name>
77 <projversion>${version.argeo-distribution}</projversion>
78 <mappings>
79 <mapping>
80 <directory>/usr/share/osgi</directory>
81 <username>root</username>
82 <groupname>root</groupname>
83 <filemode>644</filemode>
84 <directoryIncluded>false</directoryIncluded>
85 <sources>
86 <source>
87 <location>${project.build.directory}/lib-tp</location>
88 <includes>
89 <include>*.jar</include>
90 </includes>
91 </source>
92 </sources>
93 </mapping>
94 </mappings>
95 <requires>
96 <require>argeo-cms-platform-tp</require>
97 </requires>
98 </configuration>
99 </execution>
100 </executions>
101 </plugin>
102 </plugins>
103 </build>
104 </profile>
105 </profiles>
106 </project>