blob: 8a79511d180bd15138d79f681b1b0ca147a0de71 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
<?xml version="1.0" encoding="UTF-8"?>
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.tuscany</groupId>
<artifactId>testroot</artifactId>
<packaging>pom</packaging>
<version>1.0-SNAPSHOT</version>
<name>testroot Multi Project</name>
<url>http://maven.apache.org</url>
<modules>
<module>proj1</module>
<module>proj2</module>
</modules>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.6.1</version>
<configuration>
<maxmemory>1024m</maxmemory>
<tags>
<tag>
<name>tuscany.spi.extension.inheritfrom</name>
<!-- extension spi by inheritance tag for placing in classes /interfaces -->
<placement>t</placement>
<head>Provides part of the Tuscany SPI for Extension Developers by specialization of this class/interface
</head>
</tag>
<tag>
<name>tuscany.spi.extension.asclient</name>
<!-- extension spi by client access tag for placing in classes / interfaces. The term client here is used
in the OO design sense of any class that calls the methods of another is a client of the latter -->
<placement>t</placement>
<head>Provides part of the Tuscany SPI for Extension Developers by calling methods on this interface/class.</head>
</tag>
<tag>
<name>tuscany.spi.extension</name>
<!-- extension spi indicator for overviews, packages -->
<placement>a</placement>
<head>Elements of the Tuscany SPI for Extension developers are provided.</head>
</tag>
</tags>
<groups>
<group>
<title>Basic</title>
<packages>
a:b:c
</packages>
</group>
<group>
<title>Advanced</title>
<packages>x:y:z</packages>
</group>
</groups>
<excludePackageNames>a:x:c:d</excludePackageNames>
</configuration>
</plugin>
</plugins>
</reporting>
</project>
|