]> git.argeo.org Git - lgpl/argeo-commons.git/blob - dep/org.argeo.dep.cms.sdk/pom.xml
Improve CMS UI utilities.
[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"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
5 <modelVersion>4.0.0</modelVersion>
6 <parent>
7 <groupId>org.argeo.commons</groupId>
8 <version>2.1.81-SNAPSHOT</version>
9 <artifactId>dep</artifactId>
10 <relativePath>..</relativePath>
11 </parent>
12 <artifactId>org.argeo.dep.cms.sdk</artifactId>
13 <name>CMS SDK</name>
14 <dependencies>
15 <!-- Parent dependencies -->
16 <dependency>
17 <groupId>org.argeo.commons</groupId>
18 <artifactId>org.argeo.dep.cms.e4.rap</artifactId>
19 <version>2.1.81-SNAPSHOT</version>
20 <type>pom</type>
21 </dependency>
22
23 <!-- ALM Third Parties -->
24 <!-- <dependency> -->
25 <!-- <groupId>org.argeo.tp.apache.ant</groupId> -->
26 <!-- <artifactId>org.apache.ant</artifactId> -->
27 <!-- </dependency> -->
28 <!-- <dependency> -->
29 <!-- <groupId>org.argeo.tp.apache.ant</groupId> -->
30 <!-- <artifactId>org.apache.ant.launch</artifactId> -->
31 <!-- </dependency> -->
32
33 <dependency>
34 <groupId>org.argeo.tp.sdk</groupId>
35 <artifactId>biz.aQute.bndlib</artifactId>
36 </dependency>
37 <dependency>
38 <groupId>org.argeo.tp.sdk</groupId>
39 <artifactId>org.junit</artifactId>
40 </dependency>
41 <dependency>
42 <groupId>org.argeo.tp.sdk</groupId>
43 <artifactId>org.redline-rpm</artifactId>
44 </dependency>
45 <dependency>
46 <groupId>org.argeo.tp.misc</groupId>
47 <artifactId>com.googlecode.javaewah.JavaEWAH</artifactId>
48 </dependency>
49 <dependency>
50 <groupId>org.argeo.tp.misc</groupId>
51 <artifactId>org.eclipse.jgit</artifactId>
52 </dependency>
53 </dependencies>
54
55 <profiles>
56 <profile>
57 <id>rpmbuild-tp</id>
58 <build>
59 <plugins>
60 <plugin>
61 <artifactId>maven-assembly-plugin</artifactId>
62 <executions>
63 <execution>
64 <id>prepare-source-tp</id>
65 <phase>package</phase>
66 <goals>
67 <goal>single</goal>
68 </goals>
69 <configuration>
70 <descriptorRefs>
71 <descriptorRef>a2-source-tp</descriptorRef>
72 </descriptorRefs>
73 </configuration>
74 </execution>
75 </executions>
76 </plugin>
77 <!-- <plugin> -->
78 <!-- <groupId>org.apache.maven.plugins</groupId> -->
79 <!-- <artifactId>maven-dependency-plugin</artifactId> -->
80 <!-- <executions> -->
81 <!-- <execution> -->
82 <!-- <id>copy-tp</id> -->
83 <!-- <phase>package</phase> -->
84 <!-- <goals> -->
85 <!-- <goal>copy-dependencies</goal> -->
86 <!-- </goals> -->
87 <!-- <configuration> -->
88 <!-- <includeTypes>jar</includeTypes> -->
89 <!-- <outputDirectory>${project.build.directory}/lib-tp</outputDirectory> -->
90 <!-- <excludeGroupIds>org.argeo.commons</excludeGroupIds> -->
91 <!-- <excludeTransitive>true</excludeTransitive> -->
92 <!-- <excludeArtifactIds>org.argeo.dep.cms.platform</excludeArtifactIds> -->
93 <!-- <includeTypes>jar</includeTypes> -->
94 <!-- <includeScope>runtime</includeScope> -->
95 <!-- <useRepositoryLayout>true</useRepositoryLayout> -->
96 <!-- </configuration> -->
97 <!-- </execution> -->
98 <!-- </executions> -->
99 <!-- </plugin> -->
100 <plugin>
101 <groupId>org.codehaus.mojo</groupId>
102 <artifactId>rpm-maven-plugin</artifactId>
103 <executions>
104 <execution>
105 <id>rpm-tp</id>
106 <phase>package</phase>
107 <goals>
108 <goal>rpm</goal>
109 </goals>
110 <configuration>
111 <name>argeo-cms-sdk-tp</name>
112 <projversion>${version.argeo-tp}</projversion>
113 <mappings>
114 <mapping>
115 <directory>/usr/share/osgi</directory>
116 <username>root</username>
117 <groupname>root</groupname>
118 <filemode>644</filemode>
119 <directoryIncluded>false</directoryIncluded>
120 <sources>
121 <source>
122 <location>${project.build.directory}/${project.artifactId}-${project.version}-a2-source-tp</location>
123 <includes>
124 <include>**/*.jar</include>
125 </includes>
126 </source>
127 </sources>
128 </mapping>
129 </mappings>
130 <requires>
131 <require>argeo-cms-platform-tp</require>
132 </requires>
133 </configuration>
134 </execution>
135 </executions>
136 </plugin>
137 </plugins>
138 </build>
139 </profile>
140 </profiles>
141 </project>