summaryrefslogtreecommitdiffstats
path: root/sandbox/kgoodson/testroot/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/kgoodson/testroot/pom.xml')
-rw-r--r--sandbox/kgoodson/testroot/pom.xml64
1 files changed, 64 insertions, 0 deletions
diff --git a/sandbox/kgoodson/testroot/pom.xml b/sandbox/kgoodson/testroot/pom.xml
new file mode 100644
index 0000000000..8a79511d18
--- /dev/null
+++ b/sandbox/kgoodson/testroot/pom.xml
@@ -0,0 +1,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> \ No newline at end of file