]> git.argeo.org Git - lgpl/argeo-commons.git/blob - pom.xml
Introduce input area in CMS message dialog
[lgpl/argeo-commons.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
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 <groupId>org.argeo.commons</groupId>
7 <artifactId>argeo-commons</artifactId>
8 <version>2.1.76-SNAPSHOT</version>
9 <name>Argeo Commons</name>
10 <packaging>pom</packaging>
11 <!-- <url>http://repo.argeo.org/data/docs/argeo-2.1/site/argeo-commons/</url> -->
12 <properties>
13 <version.argeo-commons>2.1.76-SNAPSHOT</version.argeo-commons>
14 <version.argeo-tp>2.1.21</version.argeo-tp>
15 <!-- RPM -->
16 <argeo.rpm.release>7</argeo.rpm.release>
17 <argeo.rpm.stagingRepository>/srv/rpmfactory/argeo-osgi-2/el7</argeo.rpm.stagingRepository>
18 <!-- Encoding, see http://is.gd/mvn_source_encoding -->
19 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
20 <project.scm.id>code.argeo.org</project.scm.id>
21 </properties>
22 <modules>
23 <!-- Base -->
24 <module>org.argeo.util</module>
25 <module>org.argeo.enterprise</module>
26 <module>org.argeo.jcr</module>
27 <module>org.argeo.osgi.boot</module>
28 <!-- Eclipse -->
29 <module>org.argeo.eclipse.ui</module>
30 <module>org.argeo.eclipse.ui.rap</module>
31 <!-- CMS -->
32 <module>org.argeo.node.api</module>
33 <module>org.argeo.maintenance</module>
34 <module>org.argeo.cms</module>
35 <module>org.argeo.cms.ui.theme</module>
36 <module>org.argeo.cms.ui</module>
37 <!-- CMS E4 -->
38 <module>org.argeo.cms.e4</module>
39 <module>org.argeo.cms.e4.rap</module>
40 <!-- CMS Workbench -->
41 <module>org.argeo.cms.ui.workbench</module>
42 <module>org.argeo.cms.ui.workbench.rap</module>
43 <!-- Third Parties Extensions -->
44 <module>org.argeo.ext.jackrabbit</module>
45 <module>org.argeo.ext.rap.ui.workbench</module>
46 <!-- Distribution -->
47 <module>maven</module>
48 <module>dep</module>
49 <module>demo</module>
50 <module>doc</module>
51 <module>dist</module>
52 <module>rcp</module>
53 </modules>
54 <scm>
55 <connection>scm:git:http://git.argeo.org/apache2/argeo-commons.git</connection>
56 <url>http://git.argeo.org/?p=apache2/argeo-commons.git;a=summary</url>
57 <developerConnection>scm:git:https://code.argeo.org/git/apache2/argeo-commons.git</developerConnection>
58 <tag>HEAD</tag>
59 </scm>
60 <inceptionYear>2007</inceptionYear>
61 <licenses>
62 <license>
63 <name>Apache 2</name>
64 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
65 <distribution>repo</distribution>
66 <comments><![CDATA[
67 Argeo Commons Enterprise Framework
68
69 Copyright (C) 2007-2016 Argeo GmbH
70
71 Licensed under the Apache License, Version 2.0 (the &quot;License&quot;);
72 you may not use this file except in compliance with the License.
73 You may obtain a copy of the License at
74
75 http://www.apache.org/licenses/LICENSE-2.0
76
77 Unless required by applicable law or agreed to in writing, software
78 distributed under the License is distributed on an &quot;AS IS&quot; BASIS,
79 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
80 See the License for the specific language governing permissions and
81 limitations under the License.
82 ]]>
83 </comments>
84 </license>
85 </licenses>
86 <build>
87 <extensions>
88 <extension>
89 <groupId>org.apache.maven.wagon</groupId>
90 <artifactId>wagon-webdav-jackrabbit</artifactId>
91 <version>2.10</version>
92 </extension>
93 </extensions>
94 <sourceDirectory>src</sourceDirectory>
95 <testSourceDirectory>ext/test</testSourceDirectory>
96 <resources>
97 <resource>
98 <directory>src</directory>
99 <includes>
100 <include>**</include>
101 </includes>
102 <excludes>
103 <exclude>**/*.java</exclude>
104 </excludes>
105 </resource>
106 <resource>
107 <directory>.</directory>
108 <includes>
109 <include>**</include>
110 </includes>
111 <excludes>
112 <exclude>.*</exclude>
113 <exclude>.*/**</exclude>
114 <exclude>src/**</exclude>
115 <exclude>ext/**</exclude>
116 <exclude>target/**</exclude>
117 <exclude>bin/**</exclude>
118 <exclude>pom.xml</exclude>
119 <exclude>build.properties</exclude>
120 <exclude>*.bnd</exclude>
121 <exclude>*.target</exclude>
122 <exclude>**/*.xcf</exclude>
123 </excludes>
124 </resource>
125 </resources>
126 <testResources>
127 <testResource>
128 <directory>ext/test</directory>
129 <includes>
130 <include>**</include>
131 </includes>
132 <excludes>
133 <exclude>**/*.java</exclude>
134 </excludes>
135 </testResource>
136 </testResources>
137 <pluginManagement>
138 <plugins>
139 <!-- Maven -->
140 <plugin>
141 <artifactId>maven-compiler-plugin</artifactId>
142 <version>3.3</version>
143 <configuration>
144 <source>1.8</source>
145 <target>1.8</target>
146 <compilerId>eclipse</compilerId>
147 <!-- Required for compliance level, see http://jira.codehaus.org/browse/PLXCOMP-231 -->
148 <optimize>true</optimize>
149 <!-- Hack to work around issues with generated annotations : -->
150 <generatedSourcesDirectory>target/classes</generatedSourcesDirectory>
151 <generatedTestSourcesDirectory>target/test-classes</generatedTestSourcesDirectory>
152 </configuration>
153 <dependencies>
154 <dependency>
155 <groupId>org.codehaus.plexus</groupId>
156 <artifactId>plexus-compiler-eclipse</artifactId>
157 <version>2.6</version>
158 </dependency>
159 </dependencies>
160 </plugin>
161 <plugin>
162 <artifactId>maven-source-plugin</artifactId>
163 <version>2.4</version>
164 <executions>
165 <execution>
166 <id>attach-sources</id>
167 <phase>package</phase>
168 <goals>
169 <goal>jar</goal>
170 </goals>
171 </execution>
172 </executions>
173 <configuration>
174 <excludes>
175 <!-- Prevents source jars to contain misleading data -->
176 <exclude>plugin.xml</exclude>
177 <exclude>META-INF/MANIFEST.MF</exclude>
178 </excludes>
179 </configuration>
180 </plugin>
181 <plugin>
182 <artifactId>maven-clean-plugin</artifactId>
183 <version>2.6.1</version>
184 <configuration>
185 <filesets>
186 <fileset>
187 <directory>META-INF</directory>
188 <includes>
189 <include>MANIFEST.MF</include>
190 </includes>
191 </fileset>
192 </filesets>
193 </configuration>
194 </plugin>
195 <plugin>
196 <artifactId>maven-surefire-plugin</artifactId>
197 <version>2.18</version>
198 </plugin>
199 <plugin>
200 <artifactId>maven-jar-plugin</artifactId>
201 <version>2.5</version>
202 <configuration>
203 <archive>
204 <manifestFile>META-INF/MANIFEST.MF</manifestFile>
205 </archive>
206 </configuration>
207 </plugin>
208 <plugin>
209 <artifactId>maven-antrun-plugin</artifactId>
210 <version>1.8</version>
211 </plugin>
212 <plugin>
213 <artifactId>maven-resources-plugin</artifactId>
214 <version>2.7</version>
215 </plugin>
216 <plugin>
217 <artifactId>maven-dependency-plugin</artifactId>
218 <version>2.9</version>
219 </plugin>
220 <plugin>
221 <artifactId>maven-site-plugin</artifactId>
222 <version>3.7</version>
223 </plugin>
224 <plugin>
225 <artifactId>maven-javadoc-plugin</artifactId>
226 <version>3.0.0</version>
227 <configuration>
228 <failOnError>false</failOnError>
229 <additionalJOption>-Xdoclint:none</additionalJOption>
230 <excludePackageNames>*.internal.*,org.eclipse.*</excludePackageNames>
231 <encoding>UTF-8</encoding>
232 </configuration>
233 </plugin>
234 <plugin>
235 <artifactId>maven-release-plugin</artifactId>
236 <version>2.5.1</version>
237 <configuration>
238 <autoVersionSubmodules>true</autoVersionSubmodules>
239 </configuration>
240 </plugin>
241 <plugin>
242 <groupId>org.apache.felix</groupId>
243 <artifactId>maven-bundle-plugin</artifactId>
244 <version>3.0.1</version>
245 <extensions>true</extensions>
246 <configuration>
247 <manifestLocation>META-INF</manifestLocation>
248 <instructions>
249 <_include>bnd.bnd</_include>
250 <Bundle-Version>${project.version}-r${tstamp}</Bundle-Version>
251 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
252 <Bundle-RequiredExecutionEnvironment>JavaSE-1.8</Bundle-RequiredExecutionEnvironment>
253 <_removeheaders>Bnd-LastModified,Build-Jdk,Built-By,Tool,Created-By</_removeheaders>
254 <Automatic-Module-Name>${project.artifactId}</Automatic-Module-Name>
255 <SLC-Category>${project.groupId}</SLC-Category>
256 </instructions>
257 </configuration>
258 <executions>
259 <execution>
260 <id>bundle-manifest</id>
261 <phase>process-classes</phase>
262 <goals>
263 <goal>manifest</goal>
264 </goals>
265 </execution>
266 </executions>
267 </plugin>
268 <!-- Codehaus -->
269 <plugin>
270 <groupId>org.codehaus.mojo</groupId>
271 <artifactId>rpm-maven-plugin</artifactId>
272 <version>2.1.4</version>
273 <extensions>true</extensions>
274 <configuration>
275 <version>${project.version}</version>
276 <distribution>argeo${argeo.rpm.release}</distribution>
277 <group>Applications/System</group>
278 <prefix>/usr</prefix>
279 <defaultDirMode>755</defaultDirMode>
280 <defaultFileMode>644</defaultFileMode>
281 <autoRequires>false</autoRequires>
282 </configuration>
283 </plugin>
284 <plugin>
285 <groupId>org.codehaus.mojo</groupId>
286 <artifactId>exec-maven-plugin</artifactId>
287 <version>1.3.2</version>
288 </plugin>
289 <!-- Argeo -->
290 <plugin>
291 <groupId>org.argeo.maven.plugins</groupId>
292 <artifactId>maven-argeo-osgi-plugin</artifactId>
293 <version>1.1.6</version>
294 </plugin>
295 </plugins>
296 </pluginManagement>
297 <plugins>
298 <plugin>
299 <artifactId>maven-clean-plugin</artifactId>
300 <configuration>
301 <filesets>
302 <fileset>
303 <directory>META-INF</directory>
304 <includes>
305 <include>MANIFEST.MF</include>
306 </includes>
307 </fileset>
308 </filesets>
309 </configuration>
310 </plugin>
311 <plugin>
312 <artifactId>maven-resources-plugin</artifactId>
313 <configuration>
314 <encoding>UTF-8</encoding>
315 </configuration>
316 </plugin>
317 <plugin>
318 <artifactId>maven-site-plugin</artifactId>
319 <inherited>false</inherited>
320 <configuration>
321 <skip>false</skip>
322 </configuration>
323 </plugin>
324 <plugin>
325 <artifactId>maven-release-plugin</artifactId>
326 <configuration>
327 <goals>deploy</goals>
328 <releaseProfiles>rpmbuild,rpmbuild-tp</releaseProfiles>
329 </configuration>
330 </plugin>
331 <plugin>
332 <groupId>org.apache.felix</groupId>
333 <artifactId>maven-bundle-plugin</artifactId>
334 </plugin>
335 </plugins>
336 </build>
337 <dependencies>
338 <dependency>
339 <groupId>org.argeo.tp</groupId>
340 <artifactId>argeo-tp</artifactId>
341 <version>${version.argeo-tp}</version>
342 <scope>provided</scope>
343 <exclusions>
344 <exclusion>
345 <groupId>org.argeo.tp.apache</groupId>
346 <artifactId>org.apache.xerces</artifactId>
347 </exclusion>
348 </exclusions>
349 </dependency>
350 </dependencies>
351 <dependencyManagement>
352 <dependencies>
353 <dependency>
354 <groupId>org.argeo.tp</groupId>
355 <artifactId>argeo-tp</artifactId>
356 <version>${version.argeo-tp}</version>
357 <type>pom</type>
358 <scope>import</scope>
359 </dependency>
360 <dependency>
361 <groupId>org.argeo.tp</groupId>
362 <artifactId>argeo-tp-rap-e4</artifactId>
363 <version>${version.argeo-tp}</version>
364 <type>pom</type>
365 <scope>import</scope>
366 </dependency>
367 </dependencies>
368 </dependencyManagement>
369 <repositories>
370 <repository>
371 <id>argeo</id>
372 <url>http://repo.argeo.org/data/java/argeo-2.1/</url>
373 <releases>
374 <enabled>true</enabled>
375 <updatePolicy>daily</updatePolicy>
376 <checksumPolicy>warn</checksumPolicy>
377 </releases>
378 </repository>
379 </repositories>
380 <pluginRepositories>
381 <pluginRepository>
382 <id>argeo-maven-plugins</id>
383 <url>http://repo.argeo.org/data/java/argeo-2.1</url>
384 <releases>
385 <enabled>true</enabled>
386 <updatePolicy>daily</updatePolicy>
387 <checksumPolicy>warn</checksumPolicy>
388 </releases>
389 </pluginRepository>
390 </pluginRepositories>
391 <reporting>
392 <plugins>
393 <plugin>
394 <artifactId>maven-project-info-reports-plugin</artifactId>
395 <version>2.9</version>
396 <reportSets>
397 <reportSet>
398 <reports>
399 <report>index</report>
400 <report>summary</report>
401 <report>license</report>
402 <report>scm</report>
403 </reports>
404 </reportSet>
405 </reportSets>
406 </plugin>
407 <plugin>
408 <artifactId>maven-javadoc-plugin</artifactId>
409 <version>3.0.0</version>
410 <configuration>
411 <failOnError>false</failOnError>
412 <additionalJOption>-Xdoclint:none</additionalJOption>
413 <excludePackageNames>*.internal.*,org.eclipse.*</excludePackageNames>
414 <encoding>UTF-8</encoding>
415 <detectLinks>true</detectLinks>
416 <links>
417 <link>http://docs.oracle.com/javase/8/docs/api</link>
418 <link>https://osgi.org/javadoc/r5/core</link>
419 <link>https://osgi.org/javadoc/r5/enterprise</link>
420 <link>https://docs.adobe.com/docs/en/spec/javax.jcr/javadocs/jcr-2.0</link>
421 <link>http://help.eclipse.org/oxygen/topic/org.eclipse.platform.doc.isv/reference/api</link>
422 <link>http://docs.spring.io/spring/docs/3.2.x/javadoc-api</link>
423 </links>
424 </configuration>
425 <reportSets>
426 <reportSet>
427 <id>aggregate-javadoc</id>
428 <inherited>false</inherited>
429 <reports>
430 <report>aggregate</report>
431 </reports>
432 </reportSet>
433 <reportSet>
434 <id>javadoc</id>
435 <reports />
436 </reportSet>
437 </reportSets>
438 </plugin>
439 <plugin>
440 <artifactId>maven-jxr-plugin</artifactId>
441 <version>2.5</version>
442 <reportSets>
443 <reportSet>
444 <id>aggregate-jxr</id>
445 <inherited>false</inherited>
446 <reports>
447 <report>aggregate</report>
448 </reports>
449 </reportSet>
450 <reportSet>
451 <id>jxr</id>
452 <reports />
453 </reportSet>
454 </reportSets>
455 </plugin>
456 </plugins>
457 </reporting>
458 <distributionManagement>
459 <repository>
460 <id>staging</id>
461 <url>dav:https://forge.argeo.org/data/java/argeo-2.1/</url>
462 <uniqueVersion>false</uniqueVersion>
463 </repository>
464 <site>
465 <id>staging</id>
466 <url>file:///srv/docfactory/argeo-2.1/site/argeo-commons/</url>
467 </site>
468 </distributionManagement>
469 <profiles>
470 <profile>
471 <id>rpmbuild</id>
472 <build>
473 <plugins>
474 <plugin>
475 <artifactId>maven-antrun-plugin</artifactId>
476 <executions>
477 <execution>
478 <phase>install</phase>
479 <goals>
480 <goal>run</goal>
481 </goals>
482 <configuration>
483 <target>
484 <copy todir="${argeo.rpm.stagingRepository}" quiet="true"
485 failonerror="false">
486 <fileset dir="${project.build.directory}/rpm"
487 includes="*/RPMS/**/*.rpm" />
488 <flattenmapper />
489 </copy>
490 </target>
491 </configuration>
492 </execution>
493 </executions>
494 </plugin>
495 </plugins>
496 </build>
497 </profile>
498 <profile>
499 <id>rpmbuild-tp</id>
500 <build>
501 <plugins>
502 <plugin>
503 <artifactId>maven-antrun-plugin</artifactId>
504 <executions>
505 <execution>
506 <phase>install</phase>
507 <goals>
508 <goal>run</goal>
509 </goals>
510 <configuration>
511 <target>
512 <copy todir="${argeo.rpm.stagingRepository}" quiet="true"
513 failonerror="false">
514 <fileset dir="${project.build.directory}/rpm"
515 includes="*/RPMS/**/*.rpm" />
516 <flattenmapper />
517 </copy>
518 </target>
519 </configuration>
520 </execution>
521 </executions>
522 </plugin>
523 </plugins>
524 </build>
525 </profile>
526 <profile>
527 <id>localrepo</id>
528 <repositories>
529 <repository>
530 <id>argeo</id>
531 <url>http://localhost:7080/data/java/argeo-2.1</url>
532 <releases>
533 <enabled>true</enabled>
534 <updatePolicy>daily</updatePolicy>
535 <checksumPolicy>warn</checksumPolicy>
536 </releases>
537 </repository>
538 </repositories>
539 <distributionManagement>
540 <repository>
541 <id>staging</id>
542 <url>dav:http://localhost:7080/data/java/argeo-2.1/</url>
543 <uniqueVersion>false</uniqueVersion>
544 </repository>
545 </distributionManagement>
546 </profile>
547 </profiles>
548 </project>