]> git.argeo.org Git - lgpl/argeo-commons.git/blob - pom.xml
285cd32157ba83b97e527a4e4f805d537d4326e3
[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.64</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.64</version>
17 <type>pom</type>
18 </dependency>
19
20 <!-- ALM Third Parties -->
21 <dependency>
22 <groupId>org.argeo.tp.apache.ant</groupId>
23 <artifactId>org.apache.ant</artifactId>
24 </dependency>
25 <dependency>
26 <groupId>org.argeo.tp.apache.ant</groupId>
27 <artifactId>org.apache.ant.launch</artifactId>
28 </dependency>
29 <dependency>
30 <groupId>org.argeo.tp.sdk</groupId>
31 <artifactId>biz.aQute.bnd</artifactId>
32 </dependency>
33 <dependency>
34 <groupId>org.argeo.tp.sdk</groupId>
35 <artifactId>org.junit</artifactId>
36 </dependency>
37
38 <!-- SLC -->
39 <dependency>
40 <groupId>org.argeo.tp.sdk</groupId>
41 <artifactId>org.dbunit</artifactId>
42 </dependency>
43 <dependency>
44 <groupId>org.argeo.tp.aether</groupId>
45 <artifactId>org.eclipse.aether.api</artifactId>
46 </dependency>
47 <dependency>
48 <groupId>org.argeo.tp.aether</groupId>
49 <artifactId>org.eclipse.aether.spi</artifactId>
50 </dependency>
51 <dependency>
52 <groupId>org.argeo.tp.aether</groupId>
53 <artifactId>org.eclipse.aether.util</artifactId>
54 </dependency>
55 <dependency>
56 <groupId>org.argeo.tp.aether</groupId>
57 <artifactId>org.eclipse.aether.impl</artifactId>
58 </dependency>
59 <dependency>
60 <groupId>org.argeo.tp.aether</groupId>
61 <artifactId>org.eclipse.aether.connector.basic</artifactId>
62 </dependency>
63 <dependency>
64 <groupId>org.argeo.tp.aether</groupId>
65 <artifactId>org.eclipse.aether.transport.classpath</artifactId>
66 </dependency>
67 <dependency>
68 <groupId>org.argeo.tp.aether</groupId>
69 <artifactId>org.eclipse.aether.transport.file</artifactId>
70 </dependency>
71 <dependency>
72 <groupId>org.argeo.tp.sdk</groupId>
73 <artifactId>org.redline-rpm</artifactId>
74 </dependency>
75 <dependency>
76 <groupId>org.argeo.tp.sdk</groupId>
77 <artifactId>org.tmatesoft.svnkit</artifactId>
78 </dependency>
79
80 <!-- Database drivers -->
81 <dependency>
82 <groupId>org.argeo.tp.misc</groupId>
83 <artifactId>org.postgresql.postgresql</artifactId>
84 </dependency>
85 <dependency>
86 <groupId>org.argeo.tp.misc</groupId>
87 <artifactId>org.h2</artifactId>
88 </dependency>
89 </dependencies>
90
91 <profiles>
92 <profile>
93 <id>rpmbuild-tp</id>
94 <build>
95 <plugins>
96 <plugin>
97 <groupId>org.apache.maven.plugins</groupId>
98 <artifactId>maven-dependency-plugin</artifactId>
99 <executions>
100 <execution>
101 <id>copy-tp</id>
102 <phase>package</phase>
103 <goals>
104 <goal>copy-dependencies</goal>
105 </goals>
106 <configuration>
107 <includeTypes>jar</includeTypes>
108 <outputDirectory>${project.build.directory}/lib-tp</outputDirectory>
109 <excludeGroupIds>org.argeo.commons</excludeGroupIds>
110 <excludeTransitive>true</excludeTransitive>
111 <includeTypes>jar</includeTypes>
112 <includeScope>runtime</includeScope>
113 <useRepositoryLayout>true</useRepositoryLayout>
114 </configuration>
115 </execution>
116 </executions>
117 </plugin>
118 <plugin>
119 <groupId>org.codehaus.mojo</groupId>
120 <artifactId>rpm-maven-plugin</artifactId>
121 <executions>
122 <execution>
123 <id>rpm-tp</id>
124 <phase>package</phase>
125 <goals>
126 <goal>rpm</goal>
127 </goals>
128 <configuration>
129 <name>argeo-cms-sdk-tp</name>
130 <projversion>${version.argeo-distribution}</projversion>
131 <mappings>
132 <mapping>
133 <directory>/usr/share/osgi</directory>
134 <username>root</username>
135 <groupname>root</groupname>
136 <filemode>644</filemode>
137 <directoryIncluded>false</directoryIncluded>
138 <sources>
139 <source>
140 <location>${project.build.directory}/lib-tp</location>
141 <includes>
142 <include>**/*.jar</include>
143 </includes>
144 </source>
145 </sources>
146 </mapping>
147 </mappings>
148 <requires>
149 <require>argeo-cms-platform-tp</require>
150 </requires>
151 </configuration>
152 </execution>
153 </executions>
154 </plugin>
155 </plugins>
156 </build>
157 </profile>
158 </profiles>
159 </project>