]> git.argeo.org Git - lgpl/argeo-commons.git/blob - pom.xml
47bbb166e756f3fd45cd62b0a4dcb6bde79cc568
[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.3.5</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 <!-- Legacy but still used by SLC runtime, to be removed -->
79 <dependency>
80 <groupId>org.argeo.tp.apache.commons</groupId>
81 <artifactId>org.apache.commons.exec</artifactId>
82 </dependency>
83
84 </dependencies>
85
86 <profiles>
87 <profile>
88 <id>rpmbuild-tp</id>
89 <build>
90 <plugins>
91 <plugin>
92 <artifactId>maven-assembly-plugin</artifactId>
93 <executions>
94 <execution>
95 <id>prepare-source-tp</id>
96 <phase>package</phase>
97 <goals>
98 <goal>single</goal>
99 </goals>
100 <configuration>
101 <descriptorRefs>
102 <descriptorRef>a2-source-tp</descriptorRef>
103 </descriptorRefs>
104 </configuration>
105 </execution>
106 </executions>
107 </plugin>
108 <plugin>
109 <groupId>org.codehaus.mojo</groupId>
110 <artifactId>rpm-maven-plugin</artifactId>
111 <executions>
112 <execution>
113 <id>rpm-tp</id>
114 <phase>package</phase>
115 <goals>
116 <goal>rpm</goal>
117 </goals>
118 <configuration>
119 <name>argeo-cms-ext-tp${argeo.rpm.suffix}</name>
120 <projversion>${version.argeo-tp}</projversion>
121 <release>${argeo.rpm.release.tp}</release>
122 <mappings>
123 <mapping>
124 <directory>/usr/share/osgi</directory>
125 <username>root</username>
126 <groupname>root</groupname>
127 <filemode>644</filemode>
128 <directoryIncluded>false</directoryIncluded>
129 <sources>
130 <source>
131 <location>${project.build.directory}/${project.artifactId}-${project.version}-a2-source-tp</location>
132 <includes>
133 <include>**/*.jar</include>
134 </includes>
135 </source>
136 </sources>
137 </mapping>
138 </mappings>
139 <requires>
140 <require>argeo-cms-node-tp${argeo.rpm.suffix}</require>
141 </requires>
142 </configuration>
143 </execution>
144 </executions>
145 </plugin>
146 </plugins>
147 </build>
148 </profile>
149 </profiles>
150 </project>