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