]> git.argeo.org Git - lgpl/argeo-commons.git/blob - dep/org.argeo.dep.cms.ext/pom.xml
Close release cycle
[lgpl/argeo-commons.git] / dep / org.argeo.dep.cms.ext / 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.3-SNAPSHOT</version>
7 <artifactId>dep</artifactId>
8 <relativePath>..</relativePath>
9 </parent>
10 <artifactId>org.argeo.dep.cms.ext</artifactId>
11 <name>CMS Optional Third Parties</name>
12 <description>Bulky generic third parties which are not required by the CMS, but necessary for upper layers.</description>
13 <dependencies>
14 <!-- Additional Third Parties -->
15 <dependency>
16 <groupId>org.argeo.tp.javax</groupId>
17 <artifactId>javax.xml.bind</artifactId>
18 </dependency>
19
20 <!-- Jackson JSON processor -->
21 <dependency>
22 <groupId>org.argeo.tp.jackson</groupId>
23 <artifactId>com.fasterxml.jackson.core.jackson-core</artifactId>
24 </dependency>
25 <dependency>
26 <groupId>org.argeo.tp.jackson</groupId>
27 <artifactId>com.fasterxml.jackson.core.jackson-databind</artifactId>
28 </dependency>
29 <dependency>
30 <groupId>org.argeo.tp.jackson</groupId>
31 <artifactId>com.fasterxml.jackson.core.jackson-annotations</artifactId>
32 </dependency>
33
34 <!-- Mail -->
35 <dependency>
36 <groupId>org.argeo.tp.javax</groupId>
37 <artifactId>javax.activation</artifactId>
38 </dependency>
39 <dependency>
40 <groupId>org.argeo.tp.javax</groupId>
41 <artifactId>javax.mail</artifactId>
42 </dependency>
43
44 <!-- POI requirements -->
45 <dependency>
46 <groupId>org.argeo.tp.apache.commons</groupId>
47 <artifactId>org.apache.commons.math3</artifactId>
48 </dependency>
49 <dependency>
50 <groupId>org.argeo.tp.apache.commons</groupId>
51 <artifactId>org.apache.commons.collections4</artifactId>
52 </dependency>
53 <dependency>
54 <groupId>org.argeo.tp.apache</groupId>
55 <artifactId>org.apache.xml.security</artifactId>
56 </dependency>
57 <dependency>
58 <groupId>org.argeo.tp.apache</groupId>
59 <artifactId>org.apache.xmlbeans</artifactId>
60 </dependency>
61 <dependency>
62 <groupId>org.argeo.tp.apache</groupId>
63 <artifactId>org.apache.xalan</artifactId>
64 </dependency>
65 <dependency>
66 <groupId>org.argeo.tp.apache</groupId>
67 <artifactId>org.apache.xalan.serializer</artifactId>
68 </dependency>
69 <dependency>
70 <groupId>org.argeo.tp.apache</groupId>
71 <artifactId>org.apache.xml.resolver</artifactId>
72 </dependency>
73 <dependency>
74 <groupId>org.argeo.tp.apache</groupId>
75 <artifactId>org.apache.xerces</artifactId>
76 </dependency>
77
78 </dependencies>
79
80 <profiles>
81 <profile>
82 <id>rpmbuild-tp</id>
83 <build>
84 <plugins>
85 <plugin>
86 <artifactId>maven-assembly-plugin</artifactId>
87 <executions>
88 <execution>
89 <id>prepare-source-tp</id>
90 <phase>package</phase>
91 <goals>
92 <goal>single</goal>
93 </goals>
94 <configuration>
95 <descriptorRefs>
96 <descriptorRef>a2-source-tp</descriptorRef>
97 </descriptorRefs>
98 </configuration>
99 </execution>
100 </executions>
101 </plugin>
102 <plugin>
103 <groupId>org.codehaus.mojo</groupId>
104 <artifactId>rpm-maven-plugin</artifactId>
105 <executions>
106 <execution>
107 <id>rpm-tp</id>
108 <phase>package</phase>
109 <goals>
110 <goal>rpm</goal>
111 </goals>
112 <configuration>
113 <name>argeo-cms-ext-tp${argeo.rpm.suffix}</name>
114 <projversion>${version.argeo-tp}</projversion>
115 <release>${argeo.rpm.release.tp}</release>
116 <mappings>
117 <mapping>
118 <directory>/usr/share/osgi</directory>
119 <username>root</username>
120 <groupname>root</groupname>
121 <filemode>644</filemode>
122 <directoryIncluded>false</directoryIncluded>
123 <sources>
124 <source>
125 <location>${project.build.directory}/${project.artifactId}-${project.version}-a2-source-tp</location>
126 <includes>
127 <include>**/*.jar</include>
128 </includes>
129 </source>
130 </sources>
131 </mapping>
132 </mappings>
133 <requires>
134 <require>argeo-cms-node-tp${argeo.rpm.suffix}</require>
135 </requires>
136 </configuration>
137 </execution>
138 </executions>
139 </plugin>
140 </plugins>
141 </build>
142 </profile>
143 </profiles>
144 </project>