[jboss-cvs] JBossAS SVN: r70762 - in projects/aop/trunk/aop/docs/examples: after-throwing and 39 other directories.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed Mar 12 07:08:18 EDT 2008


Author: stalep
Date: 2008-03-12 07:08:18 -0400 (Wed, 12 Mar 2008)
New Revision: 70762

Added:
   projects/aop/trunk/aop/docs/examples/after-throwing/pom.xml
   projects/aop/trunk/aop/docs/examples/all/pom.xml
   projects/aop/trunk/aop/docs/examples/annotated-aspects/pom.xml
   projects/aop/trunk/aop/docs/examples/annotated-cflow/pom.xml
   projects/aop/trunk/aop/docs/examples/annotated-composition/pom.xml
   projects/aop/trunk/aop/docs/examples/annotated-declare/pom.xml
   projects/aop/trunk/aop/docs/examples/annotated-dynamic-cflow/pom.xml
   projects/aop/trunk/aop/docs/examples/annotated-interceptors/pom.xml
   projects/aop/trunk/aop/docs/examples/annotated-introduction/pom.xml
   projects/aop/trunk/aop/docs/examples/annotated-parameters/pom.xml
   projects/aop/trunk/aop/docs/examples/annotated-precedence/pom.xml
   projects/aop/trunk/aop/docs/examples/annotated-typedef/pom.xml
   projects/aop/trunk/aop/docs/examples/annotation-introductions/pom.xml
   projects/aop/trunk/aop/docs/examples/annotation/pom.xml
   projects/aop/trunk/aop/docs/examples/aspect/pom.xml
   projects/aop/trunk/aop/docs/examples/beanstyleconf/pom.xml
   projects/aop/trunk/aop/docs/examples/beforeafter/pom.xml
   projects/aop/trunk/aop/docs/examples/beforeafter/resources/
   projects/aop/trunk/aop/docs/examples/beforeafter/resources/input.txt
   projects/aop/trunk/aop/docs/examples/caller/pom.xml
   projects/aop/trunk/aop/docs/examples/cflow/pom.xml
   projects/aop/trunk/aop/docs/examples/composition/pom.xml
   projects/aop/trunk/aop/docs/examples/constructor-execution/pom.xml
   projects/aop/trunk/aop/docs/examples/declare/pom.xml
   projects/aop/trunk/aop/docs/examples/dynamic-aop/pom.xml
   projects/aop/trunk/aop/docs/examples/dynamic-cflow/pom.xml
   projects/aop/trunk/aop/docs/examples/field-execution/pom.xml
   projects/aop/trunk/aop/docs/examples/finally/pom.xml
   projects/aop/trunk/aop/docs/examples/finally/resources/
   projects/aop/trunk/aop/docs/examples/finally/resources/input.txt
   projects/aop/trunk/aop/docs/examples/implements/pom.xml
   projects/aop/trunk/aop/docs/examples/instanceof/pom.xml
   projects/aop/trunk/aop/docs/examples/introductions/pom.xml
   projects/aop/trunk/aop/docs/examples/ioc-with-has/pom.xml
   projects/aop/trunk/aop/docs/examples/logging/pom.xml
   projects/aop/trunk/aop/docs/examples/metadata/pom.xml
   projects/aop/trunk/aop/docs/examples/method-execution/pom.xml
   projects/aop/trunk/aop/docs/examples/overloaded-advices/pom.xml
   projects/aop/trunk/aop/docs/examples/pom.xml
   projects/aop/trunk/aop/docs/examples/precedence/pom.xml
   projects/aop/trunk/aop/docs/examples/return-types/pom.xml
   projects/aop/trunk/aop/docs/examples/stacks/pom.xml
   projects/aop/trunk/aop/docs/examples/typedef/pom.xml
Modified:
   projects/aop/trunk/aop/docs/examples/annotation/billable.java
   projects/aop/trunk/aop/docs/examples/annotation/trace.java
Log:
[JBAOP-529] added maven support for most of the examples.


Added: projects/aop/trunk/aop/docs/examples/after-throwing/pom.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/after-throwing/pom.xml	                        (rev 0)
+++ projects/aop/trunk/aop/docs/examples/after-throwing/pom.xml	2008-03-12 11:08:18 UTC (rev 70762)
@@ -0,0 +1,76 @@
+<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">
+  <parent>
+    <groupId>org.jboss.aop</groupId>
+    <artifactId>examples</artifactId>
+    <version>1.0.0</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.jboss.aop</groupId>
+  <artifactId>after-throwing</artifactId>
+  <packaging>jar</packaging>
+  <version>1.0.0</version>
+  <description>JBoss AOP Examples</description>
+  <name>JBoss AOP Examples</name>
+  <url>http://labs.jboss.org/jbossaop/</url>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.jboss.maven.plugins</groupId>
+      <artifactId>maven-jbossaop-plugin</artifactId>
+      <version>${jboss.aop.plugin.version}</version>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <sourceDirectory>.</sourceDirectory>
+    <outputDirectory>target</outputDirectory>
+    <defaultGoal>install</defaultGoal>
+
+    <plugins>
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>${jdkVersion}</source>
+          <target>${jdkVersion}</target>
+          <excludes>
+            <exclude>target/*</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <groupId>org.jboss.maven.plugins</groupId>
+        <artifactId>maven-jbossaop-plugin</artifactId>
+        <version>${jboss.aop.plugin.version}</version>
+        <executions>
+          <execution>
+            <id>compile</id>
+            <configuration>
+              <aoppaths>
+                <aoppath>jboss-aop.xml</aoppath>
+              </aoppaths>
+            </configuration>
+            <goals>
+              <goal>compile</goal>
+            </goals>
+          </execution>
+          <execution>
+            <id>run</id>
+            <configuration>
+              <aoppaths>
+                <aoppath>jboss-aop.xml</aoppath>
+              </aoppaths>
+              <executable>Driver</executable>
+            </configuration>
+            <goals>
+              <goal>run</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
+</project>

Added: projects/aop/trunk/aop/docs/examples/all/pom.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/all/pom.xml	                        (rev 0)
+++ projects/aop/trunk/aop/docs/examples/all/pom.xml	2008-03-12 11:08:18 UTC (rev 70762)
@@ -0,0 +1,76 @@
+<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">
+  <parent>
+    <groupId>org.jboss.aop</groupId>
+    <artifactId>examples</artifactId>
+    <version>1.0.0</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.jboss.aop</groupId>
+  <artifactId>all</artifactId>
+  <packaging>jar</packaging>
+  <version>1.0.0</version>
+  <description>JBoss AOP Examples</description>
+  <name>JBoss AOP Examples</name>
+  <url>http://labs.jboss.org/jbossaop/</url>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.jboss.maven.plugins</groupId>
+      <artifactId>maven-jbossaop-plugin</artifactId>
+      <version>${jboss.aop.plugin.version}</version>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <sourceDirectory>.</sourceDirectory>
+    <outputDirectory>target</outputDirectory>
+    <defaultGoal>jbossaop:run</defaultGoal>
+
+    <plugins>
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>${jdkVersion}</source>
+          <target>${jdkVersion}</target>
+          <excludes>
+            <exclude>target/*</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <groupId>org.jboss.maven.plugins</groupId>
+        <artifactId>maven-jbossaop-plugin</artifactId>
+        <version>${jboss.aop.plugin.version}</version>
+        <executions>
+          <execution>
+            <id>compile</id>
+            <configuration>
+              <aoppaths>
+                <aoppath>jboss-aop.xml</aoppath>
+              </aoppaths>
+            </configuration>
+            <goals>
+              <goal>compile</goal>
+            </goals>
+          </execution>
+          <execution>
+            <id>run</id>
+            <configuration>
+              <aoppaths>
+                <aoppath>jboss-aop.xml</aoppath>
+              </aoppaths>
+              <executable>Driver</executable>
+            </configuration>
+            <goals>
+              <goal>run</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
+</project>

Added: projects/aop/trunk/aop/docs/examples/annotated-aspects/pom.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/annotated-aspects/pom.xml	                        (rev 0)
+++ projects/aop/trunk/aop/docs/examples/annotated-aspects/pom.xml	2008-03-12 11:08:18 UTC (rev 70762)
@@ -0,0 +1,81 @@
+<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">
+  <parent>
+    <groupId>org.jboss.aop</groupId>
+    <artifactId>examples</artifactId>
+    <version>1.0.0</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.jboss.aop</groupId>
+  <artifactId>annotated-aspects</artifactId>
+  <packaging>jar</packaging>
+  <version>1.0.0</version>
+  <description>JBoss AOP Examples</description>
+  <name>JBoss AOP Examples</name>
+  <url>http://labs.jboss.org/jbossaop/</url>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.jboss.maven.plugins</groupId>
+      <artifactId>maven-jbossaop-plugin</artifactId>
+      <version>${jboss.aop.plugin.version}</version>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <sourceDirectory>.</sourceDirectory>
+    <outputDirectory>target</outputDirectory>
+    <defaultGoal>install</defaultGoal>
+
+    <plugins>
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>${jdkVersion}</source>
+          <target>${jdkVersion}</target>
+          <excludes>
+            <exclude>target/*</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <groupId>org.jboss.maven.plugins</groupId>
+        <artifactId>maven-jbossaop-plugin</artifactId>
+        <version>${jboss.aop.plugin.version}</version>
+        <executions>
+          <execution>
+            <id>compile</id>
+            <configuration>
+              <aoppaths>
+                <aoppath>jboss-aop.xml</aoppath>
+              </aoppaths>
+              <aopClassPath>.</aopClassPath>
+            </configuration>
+            <goals>
+              <goal>compile</goal>
+            </goals>
+          </execution>
+          <execution>
+            <id>run</id>
+            <configuration>
+              <aoppaths>
+                <aoppath></aoppath>
+              </aoppaths>
+              <aopClassPath>.</aopClassPath>
+              <!--
+              <aopClassPath>annotated-aspects-1.0.0.jar</aopClassPath>
+              -->
+              <executable>Driver</executable>
+            </configuration>
+            <goals>
+              <goal>run</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
+</project>

Added: projects/aop/trunk/aop/docs/examples/annotated-cflow/pom.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/annotated-cflow/pom.xml	                        (rev 0)
+++ projects/aop/trunk/aop/docs/examples/annotated-cflow/pom.xml	2008-03-12 11:08:18 UTC (rev 70762)
@@ -0,0 +1,81 @@
+<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">
+  <parent>
+    <groupId>org.jboss.aop</groupId>
+    <artifactId>examples</artifactId>
+    <version>1.0.0</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.jboss.aop</groupId>
+  <artifactId>annotated-cflow</artifactId>
+  <packaging>jar</packaging>
+  <version>1.0.0</version>
+  <description>JBoss AOP Examples</description>
+  <name>JBoss AOP Examples</name>
+  <url>http://labs.jboss.org/jbossaop/</url>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.jboss.maven.plugins</groupId>
+      <artifactId>maven-jbossaop-plugin</artifactId>
+      <version>${jboss.aop.plugin.version}</version>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <sourceDirectory>.</sourceDirectory>
+    <outputDirectory>target</outputDirectory>
+    <defaultGoal>install</defaultGoal>
+
+    <plugins>
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>${jdkVersion}</source>
+          <target>${jdkVersion}</target>
+          <excludes>
+            <exclude>target/*</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <groupId>org.jboss.maven.plugins</groupId>
+        <artifactId>maven-jbossaop-plugin</artifactId>
+        <version>${jboss.aop.plugin.version}</version>
+        <executions>
+          <execution>
+            <id>compile</id>
+            <configuration>
+              <aoppaths>
+                <aoppath>jboss-aop.xml</aoppath>
+              </aoppaths>
+              <aopClassPath>.</aopClassPath>
+            </configuration>
+            <goals>
+              <goal>compile</goal>
+            </goals>
+          </execution>
+          <execution>
+            <id>run</id>
+            <configuration>
+              <aoppaths>
+                <aoppath></aoppath>
+              </aoppaths>
+              <aopClassPath>.</aopClassPath>
+              <!--
+              <aopClassPath>annotated-aspects-1.0.0.jar</aopClassPath>
+              -->
+              <executable>Driver</executable>
+            </configuration>
+            <goals>
+              <goal>run</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
+</project>

Added: projects/aop/trunk/aop/docs/examples/annotated-composition/pom.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/annotated-composition/pom.xml	                        (rev 0)
+++ projects/aop/trunk/aop/docs/examples/annotated-composition/pom.xml	2008-03-12 11:08:18 UTC (rev 70762)
@@ -0,0 +1,81 @@
+<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">
+  <parent>
+    <groupId>org.jboss.aop</groupId>
+    <artifactId>examples</artifactId>
+    <version>1.0.0</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.jboss.aop</groupId>
+  <artifactId>annotated-composition</artifactId>
+  <packaging>jar</packaging>
+  <version>1.0.0</version>
+  <description>JBoss AOP Examples</description>
+  <name>JBoss AOP Examples</name>
+  <url>http://labs.jboss.org/jbossaop/</url>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.jboss.maven.plugins</groupId>
+      <artifactId>maven-jbossaop-plugin</artifactId>
+      <version>${jboss.aop.plugin.version}</version>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <sourceDirectory>.</sourceDirectory>
+    <outputDirectory>target</outputDirectory>
+    <defaultGoal>install</defaultGoal>
+
+    <plugins>
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>${jdkVersion}</source>
+          <target>${jdkVersion}</target>
+          <excludes>
+            <exclude>target/*</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <groupId>org.jboss.maven.plugins</groupId>
+        <artifactId>maven-jbossaop-plugin</artifactId>
+        <version>${jboss.aop.plugin.version}</version>
+        <executions>
+          <execution>
+            <id>compile</id>
+            <configuration>
+              <aoppaths>
+                <aoppath>jboss-aop.xml</aoppath>
+              </aoppaths>
+              <aopClassPath>.</aopClassPath>
+            </configuration>
+            <goals>
+              <goal>compile</goal>
+            </goals>
+          </execution>
+          <execution>
+            <id>run</id>
+            <configuration>
+              <aoppaths>
+                <aoppath></aoppath>
+              </aoppaths>
+              <aopClassPath>.</aopClassPath>
+              <!--
+              <aopClassPath>annotated-aspects-1.0.0.jar</aopClassPath>
+              -->
+              <executable>Driver</executable>
+            </configuration>
+            <goals>
+              <goal>run</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
+</project>

Added: projects/aop/trunk/aop/docs/examples/annotated-declare/pom.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/annotated-declare/pom.xml	                        (rev 0)
+++ projects/aop/trunk/aop/docs/examples/annotated-declare/pom.xml	2008-03-12 11:08:18 UTC (rev 70762)
@@ -0,0 +1,81 @@
+<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">
+  <parent>
+    <groupId>org.jboss.aop</groupId>
+    <artifactId>examples</artifactId>
+    <version>1.0.0</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.jboss.aop</groupId>
+  <artifactId>annotated-declare</artifactId>
+  <packaging>jar</packaging>
+  <version>1.0.0</version>
+  <description>JBoss AOP Examples</description>
+  <name>JBoss AOP Examples</name>
+  <url>http://labs.jboss.org/jbossaop/</url>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.jboss.maven.plugins</groupId>
+      <artifactId>maven-jbossaop-plugin</artifactId>
+      <version>${jboss.aop.plugin.version}</version>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <sourceDirectory>.</sourceDirectory>
+    <outputDirectory>target</outputDirectory>
+    <defaultGoal>install</defaultGoal>
+
+    <plugins>
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>${jdkVersion}</source>
+          <target>${jdkVersion}</target>
+          <excludes>
+            <exclude>target/*</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <groupId>org.jboss.maven.plugins</groupId>
+        <artifactId>maven-jbossaop-plugin</artifactId>
+        <version>${jboss.aop.plugin.version}</version>
+        <executions>
+          <execution>
+            <id>compile</id>
+            <configuration>
+              <aoppaths>
+                <aoppath></aoppath>
+              </aoppaths>
+              <aopClassPath>.</aopClassPath>
+            </configuration>
+            <goals>
+              <goal>compile</goal>
+            </goals>
+          </execution>
+          <execution>
+            <id>run</id>
+            <configuration>
+              <aoppaths>
+                <aoppath></aoppath>
+              </aoppaths>
+              <aopClassPath>.</aopClassPath>
+              <!--
+              <aopClassPath>annotated-aspects-1.0.0.jar</aopClassPath>
+              -->
+              <executable>Driver</executable>
+            </configuration>
+            <goals>
+              <goal>run</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
+</project>

Added: projects/aop/trunk/aop/docs/examples/annotated-dynamic-cflow/pom.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/annotated-dynamic-cflow/pom.xml	                        (rev 0)
+++ projects/aop/trunk/aop/docs/examples/annotated-dynamic-cflow/pom.xml	2008-03-12 11:08:18 UTC (rev 70762)
@@ -0,0 +1,81 @@
+<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">
+  <parent>
+    <groupId>org.jboss.aop</groupId>
+    <artifactId>examples</artifactId>
+    <version>1.0.0</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.jboss.aop</groupId>
+  <artifactId>annotated-dynamic-cflow</artifactId>
+  <packaging>jar</packaging>
+  <version>1.0.0</version>
+  <description>JBoss AOP Examples</description>
+  <name>JBoss AOP Examples</name>
+  <url>http://labs.jboss.org/jbossaop/</url>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.jboss.maven.plugins</groupId>
+      <artifactId>maven-jbossaop-plugin</artifactId>
+      <version>${jboss.aop.plugin.version}</version>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <sourceDirectory>.</sourceDirectory>
+    <outputDirectory>target</outputDirectory>
+    <defaultGoal>install</defaultGoal>
+
+    <plugins>
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>${jdkVersion}</source>
+          <target>${jdkVersion}</target>
+          <excludes>
+            <exclude>target/*</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <groupId>org.jboss.maven.plugins</groupId>
+        <artifactId>maven-jbossaop-plugin</artifactId>
+        <version>${jboss.aop.plugin.version}</version>
+        <executions>
+          <execution>
+            <id>compile</id>
+            <configuration>
+              <aoppaths>
+                <aoppath></aoppath>
+              </aoppaths>
+              <aopClassPath>.</aopClassPath>
+            </configuration>
+            <goals>
+              <goal>compile</goal>
+            </goals>
+          </execution>
+          <execution>
+            <id>run</id>
+            <configuration>
+              <aoppaths>
+                <aoppath></aoppath>
+              </aoppaths>
+              <aopClassPath>.</aopClassPath>
+              <!--
+              <aopClassPath>annotated-aspects-1.0.0.jar</aopClassPath>
+              -->
+              <executable>Driver</executable>
+            </configuration>
+            <goals>
+              <goal>run</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
+</project>

Added: projects/aop/trunk/aop/docs/examples/annotated-interceptors/pom.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/annotated-interceptors/pom.xml	                        (rev 0)
+++ projects/aop/trunk/aop/docs/examples/annotated-interceptors/pom.xml	2008-03-12 11:08:18 UTC (rev 70762)
@@ -0,0 +1,81 @@
+<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">
+  <parent>
+    <groupId>org.jboss.aop</groupId>
+    <artifactId>examples</artifactId>
+    <version>1.0.0</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.jboss.aop</groupId>
+  <artifactId>annotated-interceptors</artifactId>
+  <packaging>jar</packaging>
+  <version>1.0.0</version>
+  <description>JBoss AOP Examples</description>
+  <name>JBoss AOP Examples</name>
+  <url>http://labs.jboss.org/jbossaop/</url>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.jboss.maven.plugins</groupId>
+      <artifactId>maven-jbossaop-plugin</artifactId>
+      <version>${jboss.aop.plugin.version}</version>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <sourceDirectory>.</sourceDirectory>
+    <outputDirectory>target</outputDirectory>
+    <defaultGoal>install</defaultGoal>
+
+    <plugins>
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>${jdkVersion}</source>
+          <target>${jdkVersion}</target>
+          <excludes>
+            <exclude>target/*</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <groupId>org.jboss.maven.plugins</groupId>
+        <artifactId>maven-jbossaop-plugin</artifactId>
+        <version>${jboss.aop.plugin.version}</version>
+        <executions>
+          <execution>
+            <id>compile</id>
+            <configuration>
+              <aoppaths>
+                <aoppath></aoppath>
+              </aoppaths>
+              <aopClassPath>.</aopClassPath>
+            </configuration>
+            <goals>
+              <goal>compile</goal>
+            </goals>
+          </execution>
+          <execution>
+            <id>run</id>
+            <configuration>
+              <aoppaths>
+                <aoppath></aoppath>
+              </aoppaths>
+              <aopClassPath>.</aopClassPath>
+              <!--
+              <aopClassPath>annotated-aspects-1.0.0.jar</aopClassPath>
+              -->
+              <executable>Driver</executable>
+            </configuration>
+            <goals>
+              <goal>run</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
+</project>

Added: projects/aop/trunk/aop/docs/examples/annotated-introduction/pom.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/annotated-introduction/pom.xml	                        (rev 0)
+++ projects/aop/trunk/aop/docs/examples/annotated-introduction/pom.xml	2008-03-12 11:08:18 UTC (rev 70762)
@@ -0,0 +1,81 @@
+<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">
+  <parent>
+    <groupId>org.jboss.aop</groupId>
+    <artifactId>examples</artifactId>
+    <version>1.0.0</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.jboss.aop</groupId>
+  <artifactId>annotated-introduction</artifactId>
+  <packaging>jar</packaging>
+  <version>1.0.0</version>
+  <description>JBoss AOP Examples</description>
+  <name>JBoss AOP Examples</name>
+  <url>http://labs.jboss.org/jbossaop/</url>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.jboss.maven.plugins</groupId>
+      <artifactId>maven-jbossaop-plugin</artifactId>
+      <version>${jboss.aop.plugin.version}</version>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <sourceDirectory>.</sourceDirectory>
+    <outputDirectory>target</outputDirectory>
+    <defaultGoal>install</defaultGoal>
+
+    <plugins>
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>${jdkVersion}</source>
+          <target>${jdkVersion}</target>
+          <excludes>
+            <exclude>target/*</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <groupId>org.jboss.maven.plugins</groupId>
+        <artifactId>maven-jbossaop-plugin</artifactId>
+        <version>${jboss.aop.plugin.version}</version>
+        <executions>
+          <execution>
+            <id>compile</id>
+            <configuration>
+              <aoppaths>
+                <aoppath></aoppath>
+              </aoppaths>
+              <aopClassPath>.</aopClassPath>
+            </configuration>
+            <goals>
+              <goal>compile</goal>
+            </goals>
+          </execution>
+          <execution>
+            <id>run</id>
+            <configuration>
+              <aoppaths>
+                <aoppath></aoppath>
+              </aoppaths>
+              <aopClassPath>.</aopClassPath>
+              <!--
+              <aopClassPath>annotated-aspects-1.0.0.jar</aopClassPath>
+              -->
+              <executable>Driver</executable>
+            </configuration>
+            <goals>
+              <goal>run</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
+</project>

Added: projects/aop/trunk/aop/docs/examples/annotated-parameters/pom.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/annotated-parameters/pom.xml	                        (rev 0)
+++ projects/aop/trunk/aop/docs/examples/annotated-parameters/pom.xml	2008-03-12 11:08:18 UTC (rev 70762)
@@ -0,0 +1,81 @@
+<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">
+  <parent>
+    <groupId>org.jboss.aop</groupId>
+    <artifactId>examples</artifactId>
+    <version>1.0.0</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.jboss.aop</groupId>
+  <artifactId>annotated-parameters</artifactId>
+  <packaging>jar</packaging>
+  <version>1.0.0</version>
+  <description>JBoss AOP Examples</description>
+  <name>JBoss AOP Examples</name>
+  <url>http://labs.jboss.org/jbossaop/</url>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.jboss.maven.plugins</groupId>
+      <artifactId>maven-jbossaop-plugin</artifactId>
+      <version>${jboss.aop.plugin.version}</version>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <sourceDirectory>.</sourceDirectory>
+    <outputDirectory>target</outputDirectory>
+    <defaultGoal>install</defaultGoal>
+
+    <plugins>
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>${jdkVersion}</source>
+          <target>${jdkVersion}</target>
+          <excludes>
+            <exclude>target/*</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <groupId>org.jboss.maven.plugins</groupId>
+        <artifactId>maven-jbossaop-plugin</artifactId>
+        <version>${jboss.aop.plugin.version}</version>
+        <executions>
+          <execution>
+            <id>compile</id>
+            <configuration>
+              <aoppaths>
+                <aoppath>jboss-aop.xml</aoppath>
+              </aoppaths>
+              <aopClassPath>.</aopClassPath>
+            </configuration>
+            <goals>
+              <goal>compile</goal>
+            </goals>
+          </execution>
+          <execution>
+            <id>run</id>
+            <configuration>
+              <aoppaths>
+                <aoppath>jboss-aop.xml</aoppath>
+              </aoppaths>
+              <aopClassPath>.</aopClassPath>
+              <!--
+              <aopClassPath>annotated-aspects-1.0.0.jar</aopClassPath>
+              -->
+              <executable>Driver</executable>
+            </configuration>
+            <goals>
+              <goal>run</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
+</project>

Added: projects/aop/trunk/aop/docs/examples/annotated-precedence/pom.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/annotated-precedence/pom.xml	                        (rev 0)
+++ projects/aop/trunk/aop/docs/examples/annotated-precedence/pom.xml	2008-03-12 11:08:18 UTC (rev 70762)
@@ -0,0 +1,81 @@
+<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">
+  <parent>
+    <groupId>org.jboss.aop</groupId>
+    <artifactId>examples</artifactId>
+    <version>1.0.0</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.jboss.aop</groupId>
+  <artifactId>annotated-precedence</artifactId>
+  <packaging>jar</packaging>
+  <version>1.0.0</version>
+  <description>JBoss AOP Examples</description>
+  <name>JBoss AOP Examples</name>
+  <url>http://labs.jboss.org/jbossaop/</url>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.jboss.maven.plugins</groupId>
+      <artifactId>maven-jbossaop-plugin</artifactId>
+      <version>${jboss.aop.plugin.version}</version>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <sourceDirectory>.</sourceDirectory>
+    <outputDirectory>target</outputDirectory>
+    <defaultGoal>install</defaultGoal>
+
+    <plugins>
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>${jdkVersion}</source>
+          <target>${jdkVersion}</target>
+          <excludes>
+            <exclude>target/*</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <groupId>org.jboss.maven.plugins</groupId>
+        <artifactId>maven-jbossaop-plugin</artifactId>
+        <version>${jboss.aop.plugin.version}</version>
+        <executions>
+          <execution>
+            <id>compile</id>
+            <configuration>
+              <aoppaths>
+                <aoppath>jboss-aop.xml</aoppath>
+              </aoppaths>
+              <aopClassPath>.</aopClassPath>
+            </configuration>
+            <goals>
+              <goal>compile</goal>
+            </goals>
+          </execution>
+          <execution>
+            <id>run</id>
+            <configuration>
+              <aoppaths>
+                <aoppath></aoppath>
+              </aoppaths>
+              <aopClassPath>.</aopClassPath>
+              <!--
+              <aopClassPath>annotated-aspects-1.0.0.jar</aopClassPath>
+              -->
+              <executable>Driver</executable>
+            </configuration>
+            <goals>
+              <goal>run</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
+</project>

Added: projects/aop/trunk/aop/docs/examples/annotated-typedef/pom.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/annotated-typedef/pom.xml	                        (rev 0)
+++ projects/aop/trunk/aop/docs/examples/annotated-typedef/pom.xml	2008-03-12 11:08:18 UTC (rev 70762)
@@ -0,0 +1,81 @@
+<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">
+  <parent>
+    <groupId>org.jboss.aop</groupId>
+    <artifactId>examples</artifactId>
+    <version>1.0.0</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.jboss.aop</groupId>
+  <artifactId>annotated-typedef</artifactId>
+  <packaging>jar</packaging>
+  <version>1.0.0</version>
+  <description>JBoss AOP Examples</description>
+  <name>JBoss AOP Examples</name>
+  <url>http://labs.jboss.org/jbossaop/</url>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.jboss.maven.plugins</groupId>
+      <artifactId>maven-jbossaop-plugin</artifactId>
+      <version>${jboss.aop.plugin.version}</version>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <sourceDirectory>.</sourceDirectory>
+    <outputDirectory>target</outputDirectory>
+    <defaultGoal>install</defaultGoal>
+
+    <plugins>
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>${jdkVersion}</source>
+          <target>${jdkVersion}</target>
+          <excludes>
+            <exclude>target/*</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <groupId>org.jboss.maven.plugins</groupId>
+        <artifactId>maven-jbossaop-plugin</artifactId>
+        <version>${jboss.aop.plugin.version}</version>
+        <executions>
+          <execution>
+            <id>compile</id>
+            <configuration>
+              <aoppaths>
+                <aoppath>jboss-aop.xml</aoppath>
+              </aoppaths>
+              <aopClassPath>.</aopClassPath>
+            </configuration>
+            <goals>
+              <goal>compile</goal>
+            </goals>
+          </execution>
+          <execution>
+            <id>run</id>
+            <configuration>
+              <aoppaths>
+                <aoppath></aoppath>
+              </aoppaths>
+              <aopClassPath>.</aopClassPath>
+              <!--
+              <aopClassPath>annotated-aspects-1.0.0.jar</aopClassPath>
+              -->
+              <executable>Driver</executable>
+            </configuration>
+            <goals>
+              <goal>run</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
+</project>

Modified: projects/aop/trunk/aop/docs/examples/annotation/billable.java
===================================================================
--- projects/aop/trunk/aop/docs/examples/annotation/billable.java	2008-03-12 11:00:29 UTC (rev 70761)
+++ projects/aop/trunk/aop/docs/examples/annotation/billable.java	2008-03-12 11:08:18 UTC (rev 70762)
@@ -19,5 +19,8 @@
   * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
   * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
   */
+import java.lang.annotation.Retention;
+import java.lang.annotation.RetentionPolicy;
 
+ at Retention(RetentionPolicy.RUNTIME)
 public @interface billable {}

Added: projects/aop/trunk/aop/docs/examples/annotation/pom.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/annotation/pom.xml	                        (rev 0)
+++ projects/aop/trunk/aop/docs/examples/annotation/pom.xml	2008-03-12 11:08:18 UTC (rev 70762)
@@ -0,0 +1,83 @@
+<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">
+  <parent>
+    <groupId>org.jboss.aop</groupId>
+    <artifactId>examples</artifactId>
+    <version>1.0.0</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.jboss.aop</groupId>
+  <artifactId>annotation</artifactId>
+  <packaging>jar</packaging>
+  <version>1.0.0</version>
+  <description>JBoss AOP Examples</description>
+  <name>JBoss AOP Examples</name>
+  <url>http://labs.jboss.org/jbossaop/</url>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.jboss.maven.plugins</groupId>
+      <artifactId>maven-jbossaop-plugin</artifactId>
+      <version>${jboss.aop.plugin.version}</version>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <sourceDirectory>.</sourceDirectory>
+    <outputDirectory>target</outputDirectory>
+    <defaultGoal>install</defaultGoal>
+
+    <plugins>
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>${jdkVersion}</source>
+          <target>${jdkVersion}</target>
+          <excludes>
+            <exclude>target/*</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <groupId>org.jboss.maven.plugins</groupId>
+        <artifactId>maven-jbossaop-plugin</artifactId>
+        <version>${jboss.aop.plugin.version}</version>
+        <executions>
+          <execution>
+            <id>compile</id>
+            <configuration>
+              <aoppaths>
+                <aoppath>jboss-aop.xml</aoppath>
+              </aoppaths>
+              <!--
+              <aopClassPath>.</aopClassPath>
+              -->
+            </configuration>
+            <goals>
+              <goal>compile</goal>
+            </goals>
+          </execution>
+          <execution>
+            <id>run</id>
+            <configuration>
+              <aoppaths>
+                <aoppath>jboss-aop.xml</aoppath>
+              </aoppaths>
+              <!--
+              <aopClassPath>.</aopClassPath>
+              -->
+              <executable>Driver</executable>
+              <loadtime>true</loadtime>
+            </configuration>
+            <goals>
+              <goal>run</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
+</project>

Modified: projects/aop/trunk/aop/docs/examples/annotation/trace.java
===================================================================
--- projects/aop/trunk/aop/docs/examples/annotation/trace.java	2008-03-12 11:00:29 UTC (rev 70761)
+++ projects/aop/trunk/aop/docs/examples/annotation/trace.java	2008-03-12 11:08:18 UTC (rev 70762)
@@ -19,5 +19,8 @@
   * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
   * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
   */
+import java.lang.annotation.Retention;
+import java.lang.annotation.RetentionPolicy;
 
+ at Retention(RetentionPolicy.RUNTIME)
 public @interface trace {}

Added: projects/aop/trunk/aop/docs/examples/annotation-introductions/pom.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/annotation-introductions/pom.xml	                        (rev 0)
+++ projects/aop/trunk/aop/docs/examples/annotation-introductions/pom.xml	2008-03-12 11:08:18 UTC (rev 70762)
@@ -0,0 +1,83 @@
+<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">
+  <parent>
+    <groupId>org.jboss.aop</groupId>
+    <artifactId>examples</artifactId>
+    <version>1.0.0</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.jboss.aop</groupId>
+  <artifactId>annotation-introductions</artifactId>
+  <packaging>jar</packaging>
+  <version>1.0.0</version>
+  <description>JBoss AOP Examples</description>
+  <name>JBoss AOP Examples</name>
+  <url>http://labs.jboss.org/jbossaop/</url>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.jboss.maven.plugins</groupId>
+      <artifactId>maven-jbossaop-plugin</artifactId>
+      <version>${jboss.aop.plugin.version}</version>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <sourceDirectory>.</sourceDirectory>
+    <outputDirectory>target</outputDirectory>
+    <defaultGoal>install</defaultGoal>
+
+    <plugins>
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>${jdkVersion}</source>
+          <target>${jdkVersion}</target>
+          <excludes>
+            <exclude>target/*</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <groupId>org.jboss.maven.plugins</groupId>
+        <artifactId>maven-jbossaop-plugin</artifactId>
+        <version>${jboss.aop.plugin.version}</version>
+        <executions>
+          <execution>
+            <id>compile</id>
+            <configuration>
+              <aoppaths>
+                <aoppath>jboss-aop.xml</aoppath>
+              </aoppaths>
+              <!--
+              <aopClassPath>.</aopClassPath>
+              -->
+            </configuration>
+            <goals>
+              <goal>compile</goal>
+            </goals>
+          </execution>
+          <execution>
+            <id>run</id>
+            <configuration>
+              <aoppaths>
+                <aoppath>jboss-aop.xml</aoppath>
+              </aoppaths>
+              <!--
+              <aopClassPath>.</aopClassPath>
+              -->
+              <executable>Driver</executable>
+              <loadtime>true</loadtime>
+            </configuration>
+            <goals>
+              <goal>run</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
+</project>

Added: projects/aop/trunk/aop/docs/examples/aspect/pom.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/aspect/pom.xml	                        (rev 0)
+++ projects/aop/trunk/aop/docs/examples/aspect/pom.xml	2008-03-12 11:08:18 UTC (rev 70762)
@@ -0,0 +1,79 @@
+<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">
+  <parent>
+    <groupId>org.jboss.aop</groupId>
+    <artifactId>examples</artifactId>
+    <version>1.0.0</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.jboss.aop</groupId>
+  <artifactId>aspect</artifactId>
+  <packaging>jar</packaging>
+  <version>1.0.0</version>
+  <description>JBoss AOP Examples</description>
+  <name>JBoss AOP Examples</name>
+  <url>http://labs.jboss.org/jbossaop/</url>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.jboss.maven.plugins</groupId>
+      <artifactId>maven-jbossaop-plugin</artifactId>
+      <version>${jboss.aop.plugin.version}</version>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <sourceDirectory>.</sourceDirectory>
+    <outputDirectory>target</outputDirectory>
+    <defaultGoal>install</defaultGoal>
+
+    <plugins>
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>${jdkVersion}</source>
+          <target>${jdkVersion}</target>
+          <excludes>
+            <exclude>target/*</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <groupId>org.jboss.maven.plugins</groupId>
+        <artifactId>maven-jbossaop-plugin</artifactId>
+        <version>${jboss.aop.plugin.version}</version>
+        <executions>
+        <!-- just to show true loadtime
+          <execution>
+            <id>compile</id>
+            <configuration>
+              <aoppaths>
+                <aoppath>jboss-aop.xml</aoppath>
+              </aoppaths>
+            </configuration>
+            <goals>
+              <goal>compile</goal>
+            </goals>
+          </execution>
+          -->
+          <execution>
+            <id>run</id>
+            <configuration>
+              <aoppaths>
+                <aoppath>jboss-aop.xml</aoppath>
+              </aoppaths>
+              <executable>Driver</executable>
+              <loadtime>true</loadtime>
+            </configuration>
+            <goals>
+              <goal>run</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
+</project>

Added: projects/aop/trunk/aop/docs/examples/beanstyleconf/pom.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/beanstyleconf/pom.xml	                        (rev 0)
+++ projects/aop/trunk/aop/docs/examples/beanstyleconf/pom.xml	2008-03-12 11:08:18 UTC (rev 70762)
@@ -0,0 +1,79 @@
+<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">
+  <parent>
+    <groupId>org.jboss.aop</groupId>
+    <artifactId>examples</artifactId>
+    <version>1.0.0</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.jboss.aop</groupId>
+  <artifactId>beanstyleconf</artifactId>
+  <packaging>jar</packaging>
+  <version>1.0.0</version>
+  <description>JBoss AOP Examples</description>
+  <name>JBoss AOP Examples</name>
+  <url>http://labs.jboss.org/jbossaop/</url>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.jboss.maven.plugins</groupId>
+      <artifactId>maven-jbossaop-plugin</artifactId>
+      <version>${jboss.aop.plugin.version}</version>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <sourceDirectory>.</sourceDirectory>
+    <outputDirectory>target</outputDirectory>
+    <defaultGoal>install</defaultGoal>
+
+    <plugins>
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>${jdkVersion}</source>
+          <target>${jdkVersion}</target>
+          <excludes>
+            <exclude>target/*</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <groupId>org.jboss.maven.plugins</groupId>
+        <artifactId>maven-jbossaop-plugin</artifactId>
+        <version>${jboss.aop.plugin.version}</version>
+        <executions>
+        <!-- just to show true loadtime
+          <execution>
+            <id>compile</id>
+            <configuration>
+              <aoppaths>
+                <aoppath>jboss-aop.xml</aoppath>
+              </aoppaths>
+            </configuration>
+            <goals>
+              <goal>compile</goal>
+            </goals>
+          </execution>
+          -->
+          <execution>
+            <id>run</id>
+            <configuration>
+              <aoppaths>
+                <aoppath>jboss-aop.xml</aoppath>
+              </aoppaths>
+              <executable>Driver</executable>
+              <loadtime>true</loadtime>
+            </configuration>
+            <goals>
+              <goal>run</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
+</project>

Added: projects/aop/trunk/aop/docs/examples/beforeafter/pom.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/beforeafter/pom.xml	                        (rev 0)
+++ projects/aop/trunk/aop/docs/examples/beforeafter/pom.xml	2008-03-12 11:08:18 UTC (rev 70762)
@@ -0,0 +1,84 @@
+<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">
+  <parent>
+    <groupId>org.jboss.aop</groupId>
+    <artifactId>examples</artifactId>
+    <version>1.0.0</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.jboss.aop</groupId>
+  <artifactId>beforeafter</artifactId>
+  <packaging>jar</packaging>
+  <version>1.0.0</version>
+  <description>JBoss AOP Examples</description>
+  <name>JBoss AOP Examples</name>
+  <url>http://labs.jboss.org/jbossaop/</url>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.jboss.maven.plugins</groupId>
+      <artifactId>maven-jbossaop-plugin</artifactId>
+      <version>${jboss.aop.plugin.version}</version>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <sourceDirectory>.</sourceDirectory>
+    <outputDirectory>target</outputDirectory>
+    <defaultGoal>install</defaultGoal>
+    <resources>
+       <resource>
+          <directory>resources</directory>
+       </resource>
+    </resources>
+
+    <plugins>
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>${jdkVersion}</source>
+          <target>${jdkVersion}</target>
+          <excludes>
+            <exclude>target/*</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <groupId>org.jboss.maven.plugins</groupId>
+        <artifactId>maven-jbossaop-plugin</artifactId>
+        <version>${jboss.aop.plugin.version}</version>
+        <executions>
+        <!-- just to show true loadtime
+          <execution>
+            <id>compile</id>
+            <configuration>
+              <aoppaths>
+                <aoppath>jboss-aop.xml</aoppath>
+              </aoppaths>
+            </configuration>
+            <goals>
+              <goal>compile</goal>
+            </goals>
+          </execution>
+          -->
+          <execution>
+            <id>run</id>
+            <configuration>
+              <aoppaths>
+                <aoppath>jboss-aop.xml</aoppath>
+              </aoppaths>
+              <executable>Driver</executable>
+              <loadtime>true</loadtime>
+            </configuration>
+            <goals>
+              <goal>run</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
+</project>

Added: projects/aop/trunk/aop/docs/examples/beforeafter/resources/input.txt
===================================================================
--- projects/aop/trunk/aop/docs/examples/beforeafter/resources/input.txt	                        (rev 0)
+++ projects/aop/trunk/aop/docs/examples/beforeafter/resources/input.txt	2008-03-12 11:08:18 UTC (rev 70762)
@@ -0,0 +1,12 @@
+A $30.00
+B $50.00
+C $0.00
+
+A +$50.00
+A -$10.00
+B -$5.00
+B->C $100.00
+C->A $89.11
+C -$0.11
+B +$51.00
+

Added: projects/aop/trunk/aop/docs/examples/caller/pom.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/caller/pom.xml	                        (rev 0)
+++ projects/aop/trunk/aop/docs/examples/caller/pom.xml	2008-03-12 11:08:18 UTC (rev 70762)
@@ -0,0 +1,79 @@
+<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">
+  <parent>
+    <groupId>org.jboss.aop</groupId>
+    <artifactId>examples</artifactId>
+    <version>1.0.0</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.jboss.aop</groupId>
+  <artifactId>caller</artifactId>
+  <packaging>jar</packaging>
+  <version>1.0.0</version>
+  <description>JBoss AOP Examples</description>
+  <name>JBoss AOP Examples</name>
+  <url>http://labs.jboss.org/jbossaop/</url>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.jboss.maven.plugins</groupId>
+      <artifactId>maven-jbossaop-plugin</artifactId>
+      <version>${jboss.aop.plugin.version}</version>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <sourceDirectory>.</sourceDirectory>
+    <outputDirectory>target</outputDirectory>
+    <defaultGoal>install</defaultGoal>
+
+    <plugins>
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>${jdkVersion}</source>
+          <target>${jdkVersion}</target>
+          <excludes>
+            <exclude>target/*</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <groupId>org.jboss.maven.plugins</groupId>
+        <artifactId>maven-jbossaop-plugin</artifactId>
+        <version>${jboss.aop.plugin.version}</version>
+        <executions>
+        <!-- just to show true loadtime
+          <execution>
+            <id>compile</id>
+            <configuration>
+              <aoppaths>
+                <aoppath>jboss-aop.xml</aoppath>
+              </aoppaths>
+            </configuration>
+            <goals>
+              <goal>compile</goal>
+            </goals>
+          </execution>
+          -->
+          <execution>
+            <id>run</id>
+            <configuration>
+              <aoppaths>
+                <aoppath>jboss-aop.xml</aoppath>
+              </aoppaths>
+              <executable>Driver</executable>
+              <loadtime>true</loadtime>
+            </configuration>
+            <goals>
+              <goal>run</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
+</project>

Added: projects/aop/trunk/aop/docs/examples/cflow/pom.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/cflow/pom.xml	                        (rev 0)
+++ projects/aop/trunk/aop/docs/examples/cflow/pom.xml	2008-03-12 11:08:18 UTC (rev 70762)
@@ -0,0 +1,77 @@
+<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">
+  <parent>
+    <groupId>org.jboss.aop</groupId>
+    <artifactId>examples</artifactId>
+    <version>1.0.0</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.jboss.aop</groupId>
+  <artifactId>cflow</artifactId>
+  <packaging>jar</packaging>
+  <version>1.0.0</version>
+  <description>JBoss AOP Examples</description>
+  <name>JBoss AOP Examples</name>
+  <url>http://labs.jboss.org/jbossaop/</url>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.jboss.maven.plugins</groupId>
+      <artifactId>maven-jbossaop-plugin</artifactId>
+      <version>${jboss.aop.plugin.version}</version>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <sourceDirectory>.</sourceDirectory>
+    <outputDirectory>target</outputDirectory>
+    <defaultGoal>install</defaultGoal>
+
+    <plugins>
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>${jdkVersion}</source>
+          <target>${jdkVersion}</target>
+          <excludes>
+            <exclude>target/*</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <groupId>org.jboss.maven.plugins</groupId>
+        <artifactId>maven-jbossaop-plugin</artifactId>
+        <version>${jboss.aop.plugin.version}</version>
+        <executions>
+          <execution>
+            <id>compile</id>
+            <configuration>
+              <aoppaths>
+                <aoppath>jboss-aop.xml</aoppath>
+              </aoppaths>
+            </configuration>
+            <goals>
+              <goal>compile</goal>
+            </goals>
+          </execution>
+          <execution>
+            <id>run</id>
+            <configuration>
+              <aoppaths>
+                <aoppath>jboss-aop.xml</aoppath>
+              </aoppaths>
+              <executable>Driver</executable>
+              <loadtime>true</loadtime>
+            </configuration>
+            <goals>
+              <goal>run</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
+</project>

Added: projects/aop/trunk/aop/docs/examples/composition/pom.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/composition/pom.xml	                        (rev 0)
+++ projects/aop/trunk/aop/docs/examples/composition/pom.xml	2008-03-12 11:08:18 UTC (rev 70762)
@@ -0,0 +1,79 @@
+<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">
+  <parent>
+    <groupId>org.jboss.aop</groupId>
+    <artifactId>examples</artifactId>
+    <version>1.0.0</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.jboss.aop</groupId>
+  <artifactId>composition</artifactId>
+  <packaging>jar</packaging>
+  <version>1.0.0</version>
+  <description>JBoss AOP Examples</description>
+  <name>JBoss AOP Examples</name>
+  <url>http://labs.jboss.org/jbossaop/</url>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.jboss.maven.plugins</groupId>
+      <artifactId>maven-jbossaop-plugin</artifactId>
+      <version>${jboss.aop.plugin.version}</version>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <sourceDirectory>.</sourceDirectory>
+    <outputDirectory>target</outputDirectory>
+    <defaultGoal>install</defaultGoal>
+
+    <plugins>
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>${jdkVersion}</source>
+          <target>${jdkVersion}</target>
+          <excludes>
+            <exclude>target/*</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <groupId>org.jboss.maven.plugins</groupId>
+        <artifactId>maven-jbossaop-plugin</artifactId>
+        <version>${jboss.aop.plugin.version}</version>
+        <executions>
+        <!-- just to show true loadtime
+          <execution>
+            <id>compile</id>
+            <configuration>
+              <aoppaths>
+                <aoppath>jboss-aop.xml</aoppath>
+              </aoppaths>
+            </configuration>
+            <goals>
+              <goal>compile</goal>
+            </goals>
+          </execution>
+          -->
+          <execution>
+            <id>run</id>
+            <configuration>
+              <aoppaths>
+                <aoppath>jboss-aop.xml</aoppath>
+              </aoppaths>
+              <executable>Driver</executable>
+              <loadtime>true</loadtime>
+            </configuration>
+            <goals>
+              <goal>run</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
+</project>

Added: projects/aop/trunk/aop/docs/examples/constructor-execution/pom.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/constructor-execution/pom.xml	                        (rev 0)
+++ projects/aop/trunk/aop/docs/examples/constructor-execution/pom.xml	2008-03-12 11:08:18 UTC (rev 70762)
@@ -0,0 +1,79 @@
+<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">
+  <parent>
+    <groupId>org.jboss.aop</groupId>
+    <artifactId>examples</artifactId>
+    <version>1.0.0</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.jboss.aop</groupId>
+  <artifactId>constructor-execution</artifactId>
+  <packaging>jar</packaging>
+  <version>1.0.0</version>
+  <description>JBoss AOP Examples</description>
+  <name>JBoss AOP Examples</name>
+  <url>http://labs.jboss.org/jbossaop/</url>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.jboss.maven.plugins</groupId>
+      <artifactId>maven-jbossaop-plugin</artifactId>
+      <version>${jboss.aop.plugin.version}</version>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <sourceDirectory>.</sourceDirectory>
+    <outputDirectory>target</outputDirectory>
+    <defaultGoal>install</defaultGoal>
+
+    <plugins>
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>${jdkVersion}</source>
+          <target>${jdkVersion}</target>
+          <excludes>
+            <exclude>target/*</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <groupId>org.jboss.maven.plugins</groupId>
+        <artifactId>maven-jbossaop-plugin</artifactId>
+        <version>${jboss.aop.plugin.version}</version>
+        <executions>
+        <!-- just to show true loadtime
+          <execution>
+            <id>compile</id>
+            <configuration>
+              <aoppaths>
+                <aoppath>jboss-aop.xml</aoppath>
+              </aoppaths>
+            </configuration>
+            <goals>
+              <goal>compile</goal>
+            </goals>
+          </execution>
+          -->
+          <execution>
+            <id>run</id>
+            <configuration>
+              <aoppaths>
+                <aoppath>jboss-aop.xml</aoppath>
+              </aoppaths>
+              <executable>Driver</executable>
+              <loadtime>true</loadtime>
+            </configuration>
+            <goals>
+              <goal>run</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
+</project>

Added: projects/aop/trunk/aop/docs/examples/declare/pom.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/declare/pom.xml	                        (rev 0)
+++ projects/aop/trunk/aop/docs/examples/declare/pom.xml	2008-03-12 11:08:18 UTC (rev 70762)
@@ -0,0 +1,79 @@
+<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">
+  <parent>
+    <groupId>org.jboss.aop</groupId>
+    <artifactId>examples</artifactId>
+    <version>1.0.0</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.jboss.aop</groupId>
+  <artifactId>declare</artifactId>
+  <packaging>jar</packaging>
+  <version>1.0.0</version>
+  <description>JBoss AOP Examples</description>
+  <name>JBoss AOP Examples</name>
+  <url>http://labs.jboss.org/jbossaop/</url>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.jboss.maven.plugins</groupId>
+      <artifactId>maven-jbossaop-plugin</artifactId>
+      <version>${jboss.aop.plugin.version}</version>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <sourceDirectory>.</sourceDirectory>
+    <outputDirectory>target</outputDirectory>
+    <defaultGoal>install</defaultGoal>
+
+    <plugins>
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>${jdkVersion}</source>
+          <target>${jdkVersion}</target>
+          <excludes>
+            <exclude>target/*</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <groupId>org.jboss.maven.plugins</groupId>
+        <artifactId>maven-jbossaop-plugin</artifactId>
+        <version>${jboss.aop.plugin.version}</version>
+        <executions>
+        <!-- just to show true loadtime
+          <execution>
+            <id>compile</id>
+            <configuration>
+              <aoppaths>
+                <aoppath>jboss-aop.xml</aoppath>
+              </aoppaths>
+            </configuration>
+            <goals>
+              <goal>compile</goal>
+            </goals>
+          </execution>
+          -->
+          <execution>
+            <id>run</id>
+            <configuration>
+              <aoppaths>
+                <aoppath>jboss-aop.xml</aoppath>
+              </aoppaths>
+              <executable>Driver</executable>
+              <loadtime>true</loadtime>
+            </configuration>
+            <goals>
+              <goal>run</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
+</project>

Added: projects/aop/trunk/aop/docs/examples/dynamic-aop/pom.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/dynamic-aop/pom.xml	                        (rev 0)
+++ projects/aop/trunk/aop/docs/examples/dynamic-aop/pom.xml	2008-03-12 11:08:18 UTC (rev 70762)
@@ -0,0 +1,77 @@
+<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">
+  <parent>
+    <groupId>org.jboss.aop</groupId>
+    <artifactId>examples</artifactId>
+    <version>1.0.0</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.jboss.aop</groupId>
+  <artifactId>dynamic-aop</artifactId>
+  <packaging>jar</packaging>
+  <version>1.0.0</version>
+  <description>JBoss AOP Examples</description>
+  <name>JBoss AOP Examples</name>
+  <url>http://labs.jboss.org/jbossaop/</url>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.jboss.maven.plugins</groupId>
+      <artifactId>maven-jbossaop-plugin</artifactId>
+      <version>${jboss.aop.plugin.version}</version>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <sourceDirectory>.</sourceDirectory>
+    <outputDirectory>target</outputDirectory>
+    <defaultGoal>install</defaultGoal>
+
+    <plugins>
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>${jdkVersion}</source>
+          <target>${jdkVersion}</target>
+          <excludes>
+            <exclude>target/*</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <groupId>org.jboss.maven.plugins</groupId>
+        <artifactId>maven-jbossaop-plugin</artifactId>
+        <version>${jboss.aop.plugin.version}</version>
+        <executions>
+          <execution>
+            <id>compile</id>
+            <configuration>
+              <aoppaths>
+                <aoppath>jboss-aop.xml</aoppath>
+              </aoppaths>
+            </configuration>
+            <goals>
+              <goal>compile</goal>
+            </goals>
+          </execution>
+          <execution>
+            <id>run</id>
+            <configuration>
+              <aoppaths>
+                <aoppath>jboss-aop.xml</aoppath>
+              </aoppaths>
+              <executable>Driver</executable>
+              <loadtime>true</loadtime>
+            </configuration>
+            <goals>
+              <goal>run</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
+</project>

Added: projects/aop/trunk/aop/docs/examples/dynamic-cflow/pom.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/dynamic-cflow/pom.xml	                        (rev 0)
+++ projects/aop/trunk/aop/docs/examples/dynamic-cflow/pom.xml	2008-03-12 11:08:18 UTC (rev 70762)
@@ -0,0 +1,77 @@
+<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">
+  <parent>
+    <groupId>org.jboss.aop</groupId>
+    <artifactId>examples</artifactId>
+    <version>1.0.0</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.jboss.aop</groupId>
+  <artifactId>dynamic-cflow</artifactId>
+  <packaging>jar</packaging>
+  <version>1.0.0</version>
+  <description>JBoss AOP Examples</description>
+  <name>JBoss AOP Examples</name>
+  <url>http://labs.jboss.org/jbossaop/</url>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.jboss.maven.plugins</groupId>
+      <artifactId>maven-jbossaop-plugin</artifactId>
+      <version>${jboss.aop.plugin.version}</version>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <sourceDirectory>.</sourceDirectory>
+    <outputDirectory>target</outputDirectory>
+    <defaultGoal>install</defaultGoal>
+
+    <plugins>
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>${jdkVersion}</source>
+          <target>${jdkVersion}</target>
+          <excludes>
+            <exclude>target/*</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <groupId>org.jboss.maven.plugins</groupId>
+        <artifactId>maven-jbossaop-plugin</artifactId>
+        <version>${jboss.aop.plugin.version}</version>
+        <executions>
+          <execution>
+            <id>compile</id>
+            <configuration>
+              <aoppaths>
+                <aoppath>jboss-aop.xml</aoppath>
+              </aoppaths>
+            </configuration>
+            <goals>
+              <goal>compile</goal>
+            </goals>
+          </execution>
+          <execution>
+            <id>run</id>
+            <configuration>
+              <aoppaths>
+                <aoppath>jboss-aop.xml</aoppath>
+              </aoppaths>
+              <executable>Driver</executable>
+              <loadtime>true</loadtime>
+            </configuration>
+            <goals>
+              <goal>run</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
+</project>

Added: projects/aop/trunk/aop/docs/examples/field-execution/pom.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/field-execution/pom.xml	                        (rev 0)
+++ projects/aop/trunk/aop/docs/examples/field-execution/pom.xml	2008-03-12 11:08:18 UTC (rev 70762)
@@ -0,0 +1,77 @@
+<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">
+  <parent>
+    <groupId>org.jboss.aop</groupId>
+    <artifactId>examples</artifactId>
+    <version>1.0.0</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.jboss.aop</groupId>
+  <artifactId>field-execution</artifactId>
+  <packaging>jar</packaging>
+  <version>1.0.0</version>
+  <description>JBoss AOP Examples</description>
+  <name>JBoss AOP Examples</name>
+  <url>http://labs.jboss.org/jbossaop/</url>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.jboss.maven.plugins</groupId>
+      <artifactId>maven-jbossaop-plugin</artifactId>
+      <version>${jboss.aop.plugin.version}</version>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <sourceDirectory>.</sourceDirectory>
+    <outputDirectory>target</outputDirectory>
+    <defaultGoal>install</defaultGoal>
+
+    <plugins>
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>${jdkVersion}</source>
+          <target>${jdkVersion}</target>
+          <excludes>
+            <exclude>target/*</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <groupId>org.jboss.maven.plugins</groupId>
+        <artifactId>maven-jbossaop-plugin</artifactId>
+        <version>${jboss.aop.plugin.version}</version>
+        <executions>
+          <execution>
+            <id>compile</id>
+            <configuration>
+              <aoppaths>
+                <aoppath>jboss-aop.xml</aoppath>
+              </aoppaths>
+            </configuration>
+            <goals>
+              <goal>compile</goal>
+            </goals>
+          </execution>
+          <execution>
+            <id>run</id>
+            <configuration>
+              <aoppaths>
+                <aoppath>jboss-aop.xml</aoppath>
+              </aoppaths>
+              <executable>Driver</executable>
+              <loadtime>true</loadtime>
+            </configuration>
+            <goals>
+              <goal>run</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
+</project>

Added: projects/aop/trunk/aop/docs/examples/finally/pom.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/finally/pom.xml	                        (rev 0)
+++ projects/aop/trunk/aop/docs/examples/finally/pom.xml	2008-03-12 11:08:18 UTC (rev 70762)
@@ -0,0 +1,82 @@
+<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">
+  <parent>
+    <groupId>org.jboss.aop</groupId>
+    <artifactId>examples</artifactId>
+    <version>1.0.0</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.jboss.aop</groupId>
+  <artifactId>finally</artifactId>
+  <packaging>jar</packaging>
+  <version>1.0.0</version>
+  <description>JBoss AOP Examples</description>
+  <name>JBoss AOP Examples</name>
+  <url>http://labs.jboss.org/jbossaop/</url>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.jboss.maven.plugins</groupId>
+      <artifactId>maven-jbossaop-plugin</artifactId>
+      <version>${jboss.aop.plugin.version}</version>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <sourceDirectory>.</sourceDirectory>
+    <outputDirectory>target</outputDirectory>
+    <defaultGoal>install</defaultGoal>
+    <resources>
+       <resource>
+          <directory>resources</directory>
+       </resource>
+    </resources>
+
+    <plugins>
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>${jdkVersion}</source>
+          <target>${jdkVersion}</target>
+          <excludes>
+            <exclude>target/*</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <groupId>org.jboss.maven.plugins</groupId>
+        <artifactId>maven-jbossaop-plugin</artifactId>
+        <version>${jboss.aop.plugin.version}</version>
+        <executions>
+          <execution>
+            <id>compile</id>
+            <configuration>
+              <aoppaths>
+                <aoppath>jboss-aop.xml</aoppath>
+              </aoppaths>
+            </configuration>
+            <goals>
+              <goal>compile</goal>
+            </goals>
+          </execution>
+          <execution>
+            <id>run</id>
+            <configuration>
+              <aoppaths>
+                <aoppath>jboss-aop.xml</aoppath>
+              </aoppaths>
+              <executable>Driver</executable>
+              <loadtime>true</loadtime>
+            </configuration>
+            <goals>
+              <goal>run</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
+</project>

Added: projects/aop/trunk/aop/docs/examples/finally/resources/input.txt
===================================================================
--- projects/aop/trunk/aop/docs/examples/finally/resources/input.txt	                        (rev 0)
+++ projects/aop/trunk/aop/docs/examples/finally/resources/input.txt	2008-03-12 11:08:18 UTC (rev 70762)
@@ -0,0 +1,13 @@
+A $30.00
+B $50.00
+C $0.00
+
+A +$50.00
+A -$10.00
+D +$1.00
+B -$5.00
+B->C $100.00
+C->A $89.11
+C -$0.11
+B +$51.00
+


Property changes on: projects/aop/trunk/aop/docs/examples/finally/resources/input.txt
___________________________________________________________________
Name: svn:executable
   + *

Added: projects/aop/trunk/aop/docs/examples/implements/pom.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/implements/pom.xml	                        (rev 0)
+++ projects/aop/trunk/aop/docs/examples/implements/pom.xml	2008-03-12 11:08:18 UTC (rev 70762)
@@ -0,0 +1,79 @@
+<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">
+  <parent>
+    <groupId>org.jboss.aop</groupId>
+    <artifactId>examples</artifactId>
+    <version>1.0.0</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.jboss.aop</groupId>
+  <artifactId>implements</artifactId>
+  <packaging>jar</packaging>
+  <version>1.0.0</version>
+  <description>JBoss AOP Examples</description>
+  <name>JBoss AOP Examples</name>
+  <url>http://labs.jboss.org/jbossaop/</url>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.jboss.maven.plugins</groupId>
+      <artifactId>maven-jbossaop-plugin</artifactId>
+      <version>${jboss.aop.plugin.version}</version>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <sourceDirectory>.</sourceDirectory>
+    <outputDirectory>target</outputDirectory>
+    <defaultGoal>install</defaultGoal>
+
+    <plugins>
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>${jdkVersion}</source>
+          <target>${jdkVersion}</target>
+          <excludes>
+            <exclude>target/*</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <groupId>org.jboss.maven.plugins</groupId>
+        <artifactId>maven-jbossaop-plugin</artifactId>
+        <version>${jboss.aop.plugin.version}</version>
+        <executions>
+        <!-- just to show true loadtime
+          <execution>
+            <id>compile</id>
+            <configuration>
+              <aoppaths>
+                <aoppath>jboss-aop.xml</aoppath>
+              </aoppaths>
+            </configuration>
+            <goals>
+              <goal>compile</goal>
+            </goals>
+          </execution>
+          -->
+          <execution>
+            <id>run</id>
+            <configuration>
+              <aoppaths>
+                <aoppath>jboss-aop.xml</aoppath>
+              </aoppaths>
+              <executable>Driver</executable>
+              <loadtime>true</loadtime>
+            </configuration>
+            <goals>
+              <goal>run</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
+</project>

Added: projects/aop/trunk/aop/docs/examples/instanceof/pom.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/instanceof/pom.xml	                        (rev 0)
+++ projects/aop/trunk/aop/docs/examples/instanceof/pom.xml	2008-03-12 11:08:18 UTC (rev 70762)
@@ -0,0 +1,77 @@
+<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">
+  <parent>
+    <groupId>org.jboss.aop</groupId>
+    <artifactId>examples</artifactId>
+    <version>1.0.0</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.jboss.aop</groupId>
+  <artifactId>instanceof</artifactId>
+  <packaging>jar</packaging>
+  <version>1.0.0</version>
+  <description>JBoss AOP Examples</description>
+  <name>JBoss AOP Examples</name>
+  <url>http://labs.jboss.org/jbossaop/</url>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.jboss.maven.plugins</groupId>
+      <artifactId>maven-jbossaop-plugin</artifactId>
+      <version>${jboss.aop.plugin.version}</version>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <sourceDirectory>.</sourceDirectory>
+    <outputDirectory>target</outputDirectory>
+    <defaultGoal>install</defaultGoal>
+
+    <plugins>
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>${jdkVersion}</source>
+          <target>${jdkVersion}</target>
+          <excludes>
+            <exclude>target/*</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <groupId>org.jboss.maven.plugins</groupId>
+        <artifactId>maven-jbossaop-plugin</artifactId>
+        <version>${jboss.aop.plugin.version}</version>
+        <executions>
+          <execution>
+            <id>compile</id>
+            <configuration>
+              <aoppaths>
+                <aoppath>jboss-aop.xml</aoppath>
+              </aoppaths>
+            </configuration>
+            <goals>
+              <goal>compile</goal>
+            </goals>
+          </execution>
+          <execution>
+            <id>run</id>
+            <configuration>
+              <aoppaths>
+                <aoppath>jboss-aop.xml</aoppath>
+              </aoppaths>
+              <executable>Driver</executable>
+              <loadtime>true</loadtime>
+            </configuration>
+            <goals>
+              <goal>run</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
+</project>

Added: projects/aop/trunk/aop/docs/examples/introductions/pom.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/introductions/pom.xml	                        (rev 0)
+++ projects/aop/trunk/aop/docs/examples/introductions/pom.xml	2008-03-12 11:08:18 UTC (rev 70762)
@@ -0,0 +1,79 @@
+<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">
+  <parent>
+    <groupId>org.jboss.aop</groupId>
+    <artifactId>examples</artifactId>
+    <version>1.0.0</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.jboss.aop</groupId>
+  <artifactId>introductions</artifactId>
+  <packaging>jar</packaging>
+  <version>1.0.0</version>
+  <description>JBoss AOP Examples</description>
+  <name>JBoss AOP Examples</name>
+  <url>http://labs.jboss.org/jbossaop/</url>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.jboss.maven.plugins</groupId>
+      <artifactId>maven-jbossaop-plugin</artifactId>
+      <version>${jboss.aop.plugin.version}</version>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <sourceDirectory>.</sourceDirectory>
+    <outputDirectory>target</outputDirectory>
+    <defaultGoal>install</defaultGoal>
+
+    <plugins>
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>${jdkVersion}</source>
+          <target>${jdkVersion}</target>
+          <excludes>
+            <exclude>target/*</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <groupId>org.jboss.maven.plugins</groupId>
+        <artifactId>maven-jbossaop-plugin</artifactId>
+        <version>${jboss.aop.plugin.version}</version>
+        <executions>
+        <!-- just to show true loadtime
+          <execution>
+            <id>compile</id>
+            <configuration>
+              <aoppaths>
+                <aoppath>jboss-aop.xml</aoppath>
+              </aoppaths>
+            </configuration>
+            <goals>
+              <goal>compile</goal>
+            </goals>
+          </execution>
+          -->
+          <execution>
+            <id>run</id>
+            <configuration>
+              <aoppaths>
+                <aoppath>jboss-aop.xml</aoppath>
+              </aoppaths>
+              <executable>Driver</executable>
+              <loadtime>true</loadtime>
+            </configuration>
+            <goals>
+              <goal>run</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
+</project>

Added: projects/aop/trunk/aop/docs/examples/ioc-with-has/pom.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/ioc-with-has/pom.xml	                        (rev 0)
+++ projects/aop/trunk/aop/docs/examples/ioc-with-has/pom.xml	2008-03-12 11:08:18 UTC (rev 70762)
@@ -0,0 +1,77 @@
+<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">
+  <parent>
+    <groupId>org.jboss.aop</groupId>
+    <artifactId>examples</artifactId>
+    <version>1.0.0</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.jboss.aop</groupId>
+  <artifactId>ioc-with-has</artifactId>
+  <packaging>jar</packaging>
+  <version>1.0.0</version>
+  <description>JBoss AOP Examples</description>
+  <name>JBoss AOP Examples</name>
+  <url>http://labs.jboss.org/jbossaop/</url>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.jboss.maven.plugins</groupId>
+      <artifactId>maven-jbossaop-plugin</artifactId>
+      <version>${jboss.aop.plugin.version}</version>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <sourceDirectory>.</sourceDirectory>
+    <outputDirectory>target</outputDirectory>
+    <defaultGoal>install</defaultGoal>
+
+    <plugins>
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>${jdkVersion}</source>
+          <target>${jdkVersion}</target>
+          <excludes>
+            <exclude>target/*</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <groupId>org.jboss.maven.plugins</groupId>
+        <artifactId>maven-jbossaop-plugin</artifactId>
+        <version>${jboss.aop.plugin.version}</version>
+        <executions>
+          <execution>
+            <id>compile</id>
+            <configuration>
+              <aoppaths>
+                <aoppath>jboss-aop.xml</aoppath>
+              </aoppaths>
+            </configuration>
+            <goals>
+              <goal>compile</goal>
+            </goals>
+          </execution>
+          <execution>
+            <id>run</id>
+            <configuration>
+              <aoppaths>
+                <aoppath>jboss-aop.xml</aoppath>
+              </aoppaths>
+              <executable>Driver</executable>
+              <loadtime>true</loadtime>
+            </configuration>
+            <goals>
+              <goal>run</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
+</project>

Added: projects/aop/trunk/aop/docs/examples/logging/pom.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/logging/pom.xml	                        (rev 0)
+++ projects/aop/trunk/aop/docs/examples/logging/pom.xml	2008-03-12 11:08:18 UTC (rev 70762)
@@ -0,0 +1,77 @@
+<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">
+  <parent>
+    <groupId>org.jboss.aop</groupId>
+    <artifactId>examples</artifactId>
+    <version>1.0.0</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.jboss.aop</groupId>
+  <artifactId>logging</artifactId>
+  <packaging>jar</packaging>
+  <version>1.0.0</version>
+  <description>JBoss AOP Examples</description>
+  <name>JBoss AOP Examples</name>
+  <url>http://labs.jboss.org/jbossaop/</url>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.jboss.maven.plugins</groupId>
+      <artifactId>maven-jbossaop-plugin</artifactId>
+      <version>${jboss.aop.plugin.version}</version>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <sourceDirectory>.</sourceDirectory>
+    <outputDirectory>target</outputDirectory>
+    <defaultGoal>install</defaultGoal>
+
+    <plugins>
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>${jdkVersion}</source>
+          <target>${jdkVersion}</target>
+          <excludes>
+            <exclude>target/*</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <groupId>org.jboss.maven.plugins</groupId>
+        <artifactId>maven-jbossaop-plugin</artifactId>
+        <version>${jboss.aop.plugin.version}</version>
+        <executions>
+          <execution>
+            <id>compile</id>
+            <configuration>
+              <aoppaths>
+                <aoppath>jboss-aop.xml</aoppath>
+              </aoppaths>
+            </configuration>
+            <goals>
+              <goal>compile</goal>
+            </goals>
+          </execution>
+          <execution>
+            <id>run</id>
+            <configuration>
+              <aoppaths>
+                <aoppath>jboss-aop.xml</aoppath>
+              </aoppaths>
+              <executable>Driver</executable>
+              <loadtime>true</loadtime>
+            </configuration>
+            <goals>
+              <goal>run</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
+</project>

Added: projects/aop/trunk/aop/docs/examples/metadata/pom.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/metadata/pom.xml	                        (rev 0)
+++ projects/aop/trunk/aop/docs/examples/metadata/pom.xml	2008-03-12 11:08:18 UTC (rev 70762)
@@ -0,0 +1,79 @@
+<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">
+  <parent>
+    <groupId>org.jboss.aop</groupId>
+    <artifactId>examples</artifactId>
+    <version>1.0.0</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.jboss.aop</groupId>
+  <artifactId>metadata</artifactId>
+  <packaging>jar</packaging>
+  <version>1.0.0</version>
+  <description>JBoss AOP Examples</description>
+  <name>JBoss AOP Examples</name>
+  <url>http://labs.jboss.org/jbossaop/</url>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.jboss.maven.plugins</groupId>
+      <artifactId>maven-jbossaop-plugin</artifactId>
+      <version>${jboss.aop.plugin.version}</version>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <sourceDirectory>.</sourceDirectory>
+    <outputDirectory>target</outputDirectory>
+    <defaultGoal>install</defaultGoal>
+
+    <plugins>
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>${jdkVersion}</source>
+          <target>${jdkVersion}</target>
+          <excludes>
+            <exclude>target/*</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <groupId>org.jboss.maven.plugins</groupId>
+        <artifactId>maven-jbossaop-plugin</artifactId>
+        <version>${jboss.aop.plugin.version}</version>
+        <executions>
+        <!-- just to show true loadtime
+          <execution>
+            <id>compile</id>
+            <configuration>
+              <aoppaths>
+                <aoppath>jboss-aop.xml</aoppath>
+              </aoppaths>
+            </configuration>
+            <goals>
+              <goal>compile</goal>
+            </goals>
+          </execution>
+          -->
+          <execution>
+            <id>run</id>
+            <configuration>
+              <aoppaths>
+                <aoppath>jboss-aop.xml</aoppath>
+              </aoppaths>
+              <executable>Driver</executable>
+              <loadtime>true</loadtime>
+            </configuration>
+            <goals>
+              <goal>run</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
+</project>

Added: projects/aop/trunk/aop/docs/examples/method-execution/pom.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/method-execution/pom.xml	                        (rev 0)
+++ projects/aop/trunk/aop/docs/examples/method-execution/pom.xml	2008-03-12 11:08:18 UTC (rev 70762)
@@ -0,0 +1,76 @@
+<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">
+  <parent>
+    <groupId>org.jboss.aop</groupId>
+    <artifactId>examples</artifactId>
+    <version>1.0.0</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.jboss.aop</groupId>
+  <artifactId>method-execution</artifactId>
+  <packaging>jar</packaging>
+  <version>1.0.0</version>
+  <description>JBoss AOP Examples</description>
+  <name>JBoss AOP Examples</name>
+  <url>http://labs.jboss.org/jbossaop/</url>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.jboss.maven.plugins</groupId>
+      <artifactId>maven-jbossaop-plugin</artifactId>
+      <version>${jboss.aop.plugin.version}</version>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <sourceDirectory>.</sourceDirectory>
+    <outputDirectory>target</outputDirectory>
+    <defaultGoal>install</defaultGoal>
+
+    <plugins>
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>${jdkVersion}</source>
+          <target>${jdkVersion}</target>
+          <excludes>
+            <exclude>target/*</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <groupId>org.jboss.maven.plugins</groupId>
+        <artifactId>maven-jbossaop-plugin</artifactId>
+        <version>${jboss.aop.plugin.version}</version>
+        <executions>
+          <execution>
+            <id>compile</id>
+            <configuration>
+              <aoppaths>
+                <aoppath>jboss-aop.xml</aoppath>
+              </aoppaths>
+            </configuration>
+            <goals>
+              <goal>compile</goal>
+            </goals>
+          </execution>
+          <execution>
+            <id>run</id>
+            <configuration>
+              <aoppaths>
+                <aoppath>jboss-aop.xml</aoppath>
+              </aoppaths>
+              <executable>Driver</executable>
+            </configuration>
+            <goals>
+              <goal>run</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
+</project>

Added: projects/aop/trunk/aop/docs/examples/overloaded-advices/pom.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/overloaded-advices/pom.xml	                        (rev 0)
+++ projects/aop/trunk/aop/docs/examples/overloaded-advices/pom.xml	2008-03-12 11:08:18 UTC (rev 70762)
@@ -0,0 +1,77 @@
+<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">
+  <parent>
+    <groupId>org.jboss.aop</groupId>
+    <artifactId>examples</artifactId>
+    <version>1.0.0</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.jboss.aop</groupId>
+  <artifactId>overloaded-advices</artifactId>
+  <packaging>jar</packaging>
+  <version>1.0.0</version>
+  <description>JBoss AOP Examples</description>
+  <name>JBoss AOP Examples</name>
+  <url>http://labs.jboss.org/jbossaop/</url>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.jboss.maven.plugins</groupId>
+      <artifactId>maven-jbossaop-plugin</artifactId>
+      <version>${jboss.aop.plugin.version}</version>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <sourceDirectory>.</sourceDirectory>
+    <outputDirectory>target</outputDirectory>
+    <defaultGoal>install</defaultGoal>
+
+    <plugins>
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>${jdkVersion}</source>
+          <target>${jdkVersion}</target>
+          <excludes>
+            <exclude>target/*</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <groupId>org.jboss.maven.plugins</groupId>
+        <artifactId>maven-jbossaop-plugin</artifactId>
+        <version>${jboss.aop.plugin.version}</version>
+        <executions>
+          <execution>
+            <id>compile</id>
+            <configuration>
+              <aoppaths>
+                <aoppath>jboss-aop.xml</aoppath>
+              </aoppaths>
+            </configuration>
+            <goals>
+              <goal>compile</goal>
+            </goals>
+          </execution>
+          <execution>
+            <id>run</id>
+            <configuration>
+              <aoppaths>
+                <aoppath>jboss-aop.xml</aoppath>
+              </aoppaths>
+              <executable>Driver</executable>
+              <loadtime>true</loadtime>
+            </configuration>
+            <goals>
+              <goal>run</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
+</project>

Added: projects/aop/trunk/aop/docs/examples/pom.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/pom.xml	                        (rev 0)
+++ projects/aop/trunk/aop/docs/examples/pom.xml	2008-03-12 11:08:18 UTC (rev 70762)
@@ -0,0 +1,43 @@
+<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.jboss.aop</groupId>
+   <artifactId>examples</artifactId>
+   <packaging>pom</packaging>
+   <name>JBoss AOP</name>
+   <version>1.0.0</version>
+
+   <properties>
+     <jboss.aop.version>2.0.0.CR3</jboss.aop.version>
+     <jboss.aop.plugin.version>1.0.0-SNAPSHOT</jboss.aop.plugin.version>
+     <jdkVersion>1.5</jdkVersion>
+   </properties>
+
+
+   <pluginRepositories>
+     <pluginRepository>
+         <releases>
+            <updatePolicy>never</updatePolicy>
+         </releases>
+         <snapshots>
+            <enabled>true</enabled>
+         </snapshots>
+         <id>snapshots.jboss.org</id>
+         <name>JBoss Maven Snapshot Repository</name>
+         <url>http://snapshots.jboss.org/maven2</url>
+      </pluginRepository>
+   </pluginRepositories>
+
+<!--
+   <repositories>
+     <repository>
+       <id>snapshots.jboss.org</id>
+       <name>JBoss Maven Snapshot Repository</name>
+       <url>http://snapshots.jboss.org/maven2</url>
+     </repository>
+   </repositories>
+
+   -->
+
+</project>

Added: projects/aop/trunk/aop/docs/examples/precedence/pom.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/precedence/pom.xml	                        (rev 0)
+++ projects/aop/trunk/aop/docs/examples/precedence/pom.xml	2008-03-12 11:08:18 UTC (rev 70762)
@@ -0,0 +1,79 @@
+<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">
+  <parent>
+    <groupId>org.jboss.aop</groupId>
+    <artifactId>examples</artifactId>
+    <version>1.0.0</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.jboss.aop</groupId>
+  <artifactId>precedence</artifactId>
+  <packaging>jar</packaging>
+  <version>1.0.0</version>
+  <description>JBoss AOP Examples</description>
+  <name>JBoss AOP Examples</name>
+  <url>http://labs.jboss.org/jbossaop/</url>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.jboss.maven.plugins</groupId>
+      <artifactId>maven-jbossaop-plugin</artifactId>
+      <version>${jboss.aop.plugin.version}</version>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <sourceDirectory>.</sourceDirectory>
+    <outputDirectory>target</outputDirectory>
+    <defaultGoal>install</defaultGoal>
+
+    <plugins>
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>${jdkVersion}</source>
+          <target>${jdkVersion}</target>
+          <excludes>
+            <exclude>target/*</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <groupId>org.jboss.maven.plugins</groupId>
+        <artifactId>maven-jbossaop-plugin</artifactId>
+        <version>${jboss.aop.plugin.version}</version>
+        <executions>
+        <!-- just to show true loadtime
+          <execution>
+            <id>compile</id>
+            <configuration>
+              <aoppaths>
+                <aoppath>jboss-aop.xml</aoppath>
+              </aoppaths>
+            </configuration>
+            <goals>
+              <goal>compile</goal>
+            </goals>
+          </execution>
+          -->
+          <execution>
+            <id>run</id>
+            <configuration>
+              <aoppaths>
+                <aoppath>jboss-aop.xml</aoppath>
+              </aoppaths>
+              <executable>Driver</executable>
+              <loadtime>true</loadtime>
+            </configuration>
+            <goals>
+              <goal>run</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
+</project>

Added: projects/aop/trunk/aop/docs/examples/return-types/pom.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/return-types/pom.xml	                        (rev 0)
+++ projects/aop/trunk/aop/docs/examples/return-types/pom.xml	2008-03-12 11:08:18 UTC (rev 70762)
@@ -0,0 +1,77 @@
+<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">
+  <parent>
+    <groupId>org.jboss.aop</groupId>
+    <artifactId>examples</artifactId>
+    <version>1.0.0</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.jboss.aop</groupId>
+  <artifactId>return-types</artifactId>
+  <packaging>jar</packaging>
+  <version>1.0.0</version>
+  <description>JBoss AOP Examples</description>
+  <name>JBoss AOP Examples</name>
+  <url>http://labs.jboss.org/jbossaop/</url>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.jboss.maven.plugins</groupId>
+      <artifactId>maven-jbossaop-plugin</artifactId>
+      <version>${jboss.aop.plugin.version}</version>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <sourceDirectory>.</sourceDirectory>
+    <outputDirectory>target</outputDirectory>
+    <defaultGoal>install</defaultGoal>
+
+    <plugins>
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>${jdkVersion}</source>
+          <target>${jdkVersion}</target>
+          <excludes>
+            <exclude>target/*</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <groupId>org.jboss.maven.plugins</groupId>
+        <artifactId>maven-jbossaop-plugin</artifactId>
+        <version>${jboss.aop.plugin.version}</version>
+        <executions>
+          <execution>
+            <id>compile</id>
+            <configuration>
+              <aoppaths>
+                <aoppath>jboss-aop.xml</aoppath>
+              </aoppaths>
+            </configuration>
+            <goals>
+              <goal>compile</goal>
+            </goals>
+          </execution>
+          <execution>
+            <id>run</id>
+            <configuration>
+              <aoppaths>
+                <aoppath>jboss-aop.xml</aoppath>
+              </aoppaths>
+              <executable>Driver</executable>
+              <loadtime>true</loadtime>
+            </configuration>
+            <goals>
+              <goal>run</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
+</project>

Added: projects/aop/trunk/aop/docs/examples/stacks/pom.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/stacks/pom.xml	                        (rev 0)
+++ projects/aop/trunk/aop/docs/examples/stacks/pom.xml	2008-03-12 11:08:18 UTC (rev 70762)
@@ -0,0 +1,77 @@
+<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">
+  <parent>
+    <groupId>org.jboss.aop</groupId>
+    <artifactId>examples</artifactId>
+    <version>1.0.0</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.jboss.aop</groupId>
+  <artifactId>stacks</artifactId>
+  <packaging>jar</packaging>
+  <version>1.0.0</version>
+  <description>JBoss AOP Examples</description>
+  <name>JBoss AOP Examples</name>
+  <url>http://labs.jboss.org/jbossaop/</url>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.jboss.maven.plugins</groupId>
+      <artifactId>maven-jbossaop-plugin</artifactId>
+      <version>${jboss.aop.plugin.version}</version>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <sourceDirectory>.</sourceDirectory>
+    <outputDirectory>target</outputDirectory>
+    <defaultGoal>install</defaultGoal>
+
+    <plugins>
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>${jdkVersion}</source>
+          <target>${jdkVersion}</target>
+          <excludes>
+            <exclude>target/*</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <groupId>org.jboss.maven.plugins</groupId>
+        <artifactId>maven-jbossaop-plugin</artifactId>
+        <version>${jboss.aop.plugin.version}</version>
+        <executions>
+          <execution>
+            <id>compile</id>
+            <configuration>
+              <aoppaths>
+                <aoppath>jboss-aop.xml</aoppath>
+              </aoppaths>
+            </configuration>
+            <goals>
+              <goal>compile</goal>
+            </goals>
+          </execution>
+          <execution>
+            <id>run</id>
+            <configuration>
+              <aoppaths>
+                <aoppath>jboss-aop.xml</aoppath>
+              </aoppaths>
+              <executable>Driver</executable>
+              <loadtime>true</loadtime>
+            </configuration>
+            <goals>
+              <goal>run</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
+</project>

Added: projects/aop/trunk/aop/docs/examples/typedef/pom.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/typedef/pom.xml	                        (rev 0)
+++ projects/aop/trunk/aop/docs/examples/typedef/pom.xml	2008-03-12 11:08:18 UTC (rev 70762)
@@ -0,0 +1,77 @@
+<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">
+  <parent>
+    <groupId>org.jboss.aop</groupId>
+    <artifactId>examples</artifactId>
+    <version>1.0.0</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.jboss.aop</groupId>
+  <artifactId>typedef</artifactId>
+  <packaging>jar</packaging>
+  <version>1.0.0</version>
+  <description>JBoss AOP Examples</description>
+  <name>JBoss AOP Examples</name>
+  <url>http://labs.jboss.org/jbossaop/</url>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.jboss.maven.plugins</groupId>
+      <artifactId>maven-jbossaop-plugin</artifactId>
+      <version>${jboss.aop.plugin.version}</version>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <sourceDirectory>.</sourceDirectory>
+    <outputDirectory>target</outputDirectory>
+    <defaultGoal>install</defaultGoal>
+
+    <plugins>
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>${jdkVersion}</source>
+          <target>${jdkVersion}</target>
+          <excludes>
+            <exclude>target/*</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <groupId>org.jboss.maven.plugins</groupId>
+        <artifactId>maven-jbossaop-plugin</artifactId>
+        <version>${jboss.aop.plugin.version}</version>
+        <executions>
+          <execution>
+            <id>compile</id>
+            <configuration>
+              <aoppaths>
+                <aoppath>jboss-aop.xml</aoppath>
+              </aoppaths>
+            </configuration>
+            <goals>
+              <goal>compile</goal>
+            </goals>
+          </execution>
+          <execution>
+            <id>run</id>
+            <configuration>
+              <aoppaths>
+                <aoppath>jboss-aop.xml</aoppath>
+              </aoppaths>
+              <executable>Driver</executable>
+              <loadtime>true</loadtime>
+            </configuration>
+            <goals>
+              <goal>run</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
+</project>




More information about the jboss-cvs-commits mailing list