]> git.argeo.org Git - lgpl/argeo-commons.git/blob - pom.xml
f4b81112790d1d27e2273ac48af01693a576b90c
[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.90-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 <!-- Parent dependencies -->
14 <dependency>
15 <groupId>org.argeo.commons</groupId>
16 <artifactId>org.argeo.dep.cms.e4.rap</artifactId>
17 <version>2.1.90-SNAPSHOT</version>
18 <type>pom</type>
19 </dependency>
20
21 <!-- OSGi Boot for platform generation only, as it could be used by regular
22 Java applications to launch an OSGi runtime. -->
23 <dependency>
24 <groupId>org.argeo.commons</groupId>
25 <artifactId>org.argeo.osgi.boot</artifactId>
26 <version>2.1.90-SNAPSHOT</version>
27 <scope>test</scope>
28 </dependency>
29
30 <!-- ALM Third Parties -->
31 <!-- <dependency> -->
32 <!-- <groupId>org.argeo.tp.apache.ant</groupId> -->
33 <!-- <artifactId>org.apache.ant</artifactId> -->
34 <!-- </dependency> -->
35 <!-- <dependency> -->
36 <!-- <groupId>org.argeo.tp.apache.ant</groupId> -->
37 <!-- <artifactId>org.apache.ant.launch</artifactId> -->
38 <!-- </dependency> -->
39
40 <dependency>
41 <groupId>org.argeo.tp.sdk</groupId>
42 <artifactId>biz.aQute.bndlib</artifactId>
43 </dependency>
44 <dependency>
45 <groupId>org.argeo.tp.sdk</groupId>
46 <artifactId>org.junit</artifactId>
47 </dependency>
48 <dependency>
49 <groupId>org.argeo.tp.sdk</groupId>
50 <artifactId>org.hamcrest</artifactId>
51 </dependency>
52 <dependency>
53 <groupId>org.argeo.tp.sdk</groupId>
54 <artifactId>org.redline-rpm</artifactId>
55 </dependency>
56 <dependency>
57 <groupId>org.argeo.tp.misc</groupId>
58 <artifactId>com.googlecode.javaewah.JavaEWAH</artifactId>
59 </dependency>
60 <dependency>
61 <groupId>org.argeo.tp.misc</groupId>
62 <artifactId>org.eclipse.jgit</artifactId>
63 </dependency>
64 </dependencies>
65
66 <profiles>
67 <profile>
68 <id>rpmbuild-tp</id>
69 <build>
70 <plugins>
71 <plugin>
72 <artifactId>maven-assembly-plugin</artifactId>
73 <executions>
74 <execution>
75 <id>prepare-source-tp</id>
76 <phase>package</phase>
77 <goals>
78 <goal>single</goal>
79 </goals>
80 <configuration>
81 <descriptorRefs>
82 <descriptorRef>a2-source-tp</descriptorRef>
83 </descriptorRefs>
84 </configuration>
85 </execution>
86 </executions>
87 </plugin>
88 <plugin>
89 <groupId>org.codehaus.mojo</groupId>
90 <artifactId>rpm-maven-plugin</artifactId>
91 <executions>
92 <execution>
93 <id>rpm-tp</id>
94 <phase>package</phase>
95 <goals>
96 <goal>rpm</goal>
97 </goals>
98 <configuration>
99 <name>argeo-cms-sdk-tp</name>
100 <projversion>${version.argeo-tp}</projversion>
101 <release>${maven.build.timestamp}</release>
102 <mappings>
103 <mapping>
104 <directory>/usr/share/osgi</directory>
105 <username>root</username>
106 <groupname>root</groupname>
107 <filemode>644</filemode>
108 <directoryIncluded>false</directoryIncluded>
109 <sources>
110 <source>
111 <location>${project.build.directory}/${project.artifactId}-${project.version}-a2-source-tp</location>
112 <includes>
113 <include>**/*.jar</include>
114 </includes>
115 </source>
116 </sources>
117 </mapping>
118 </mappings>
119 <requires>
120 <require>argeo-cms-platform-tp</require>
121 </requires>
122 </configuration>
123 </execution>
124 </executions>
125 </plugin>
126 </plugins>
127 </build>
128 </profile>
129 </profiles>
130 </project>