From 797f8c054352fda2aef8b3caefc66bd930d2e933 Mon Sep 17 00:00:00 2001 From: vmassol Date: Wed, 4 Feb 2004 07:24:23 +0000 Subject: [PATCH] Added goal to run the test application and verify (manually for the time being) that the weaving has been done correctly. git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@114680 13f79535-47bb-0310-9956-ffa450edef68 --- aspectwerkz/src/plugin-test/child/maven.xml | 21 ++++++++++++++++++- aspectwerkz/src/plugin-test/child/project.xml | 20 ++++++++++++++++++ .../org/apache/maven/aspectwerkz/Target.java | 6 ++++++ 3 files changed, 46 insertions(+), 1 deletion(-) diff --git a/aspectwerkz/src/plugin-test/child/maven.xml b/aspectwerkz/src/plugin-test/child/maven.xml index 6b57118c..f4015330 100644 --- a/aspectwerkz/src/plugin-test/child/maven.xml +++ b/aspectwerkz/src/plugin-test/child/maven.xml @@ -1,5 +1,24 @@ - + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/aspectwerkz/src/plugin-test/child/project.xml b/aspectwerkz/src/plugin-test/child/project.xml index a6b268f2..556e8e67 100644 --- a/aspectwerkz/src/plugin-test/child/project.xml +++ b/aspectwerkz/src/plugin-test/child/project.xml @@ -12,5 +12,25 @@ true + + dom4j + dom4j + 1.4 + + + trove + trove + 1.0.2 + + + bcel + bcel + 5.1 + + + jrexx + jrexx + 1.1.1 + diff --git a/aspectwerkz/src/plugin-test/child/src/main/org/apache/maven/aspectwerkz/Target.java b/aspectwerkz/src/plugin-test/child/src/main/org/apache/maven/aspectwerkz/Target.java index 9080e8f6..360b6fc2 100644 --- a/aspectwerkz/src/plugin-test/child/src/main/org/apache/maven/aspectwerkz/Target.java +++ b/aspectwerkz/src/plugin-test/child/src/main/org/apache/maven/aspectwerkz/Target.java @@ -14,4 +14,10 @@ public class Target { System.out.println("someMethod2"); } + + public static void main(String[] args) + { + Target.someMethod1(); + Target.someMethod2(); + } }