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