summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x/trunk/distribution/all/src/main
diff options
context:
space:
mode:
authorkelvingoodson <kelvingoodson@13f79535-47bb-0310-9956-ffa450edef68>2010-03-31 16:03:35 +0000
committerkelvingoodson <kelvingoodson@13f79535-47bb-0310-9956-ffa450edef68>2010-03-31 16:03:35 +0000
commit32f40c3401ff70222df0d8359b733b36b455f617 (patch)
tree811ec10d7ab2f2c471c17ef272252de5d76445b3 /sca-java-2.x/trunk/distribution/all/src/main
parente6e014cb71ac33687bbd3af4bb75840c5767edaf (diff)
add tracing capability into distribution and extend calculator sample to demonstrate tracing
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@929603 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-2.x/trunk/distribution/all/src/main')
-rw-r--r--sca-java-2.x/trunk/distribution/all/src/main/assembly/bin-default.xml1
-rw-r--r--sca-java-2.x/trunk/distribution/all/src/main/components/bin-modules.xml3
-rw-r--r--sca-java-2.x/trunk/distribution/all/src/main/components/bin-tracing.xml41
3 files changed, 45 insertions, 0 deletions
diff --git a/sca-java-2.x/trunk/distribution/all/src/main/assembly/bin-default.xml b/sca-java-2.x/trunk/distribution/all/src/main/assembly/bin-default.xml
index 2f78f57aa1..871c483808 100644
--- a/sca-java-2.x/trunk/distribution/all/src/main/assembly/bin-default.xml
+++ b/sca-java-2.x/trunk/distribution/all/src/main/assembly/bin-default.xml
@@ -31,5 +31,6 @@
<componentDescriptor>src/main/components/bin-modules.xml</componentDescriptor>
<componentDescriptor>src/main/components/bin-samples.xml</componentDescriptor>
<componentDescriptor>src/main/components/bin-launcher.xml</componentDescriptor>
+ <componentDescriptor>src/main/components/bin-tracing.xml</componentDescriptor>
</componentDescriptors>
</assembly>
diff --git a/sca-java-2.x/trunk/distribution/all/src/main/components/bin-modules.xml b/sca-java-2.x/trunk/distribution/all/src/main/components/bin-modules.xml
index 89de329d86..b41a7e0260 100644
--- a/sca-java-2.x/trunk/distribution/all/src/main/components/bin-modules.xml
+++ b/sca-java-2.x/trunk/distribution/all/src/main/components/bin-modules.xml
@@ -26,6 +26,9 @@
<include>modules/**/*</include>
<include>features/**/*</include>
</includes>
+ <excludes>
+ <exclude>org.aspectj:aspectjweaver</exclude>
+ </excludes>
</fileSet>
</fileSets>
diff --git a/sca-java-2.x/trunk/distribution/all/src/main/components/bin-tracing.xml b/sca-java-2.x/trunk/distribution/all/src/main/components/bin-tracing.xml
new file mode 100644
index 0000000000..0f272dda24
--- /dev/null
+++ b/sca-java-2.x/trunk/distribution/all/src/main/components/bin-tracing.xml
@@ -0,0 +1,41 @@
+<!--
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+-->
+<component>
+ <fileSets>
+ <fileSet>
+ <directory>src/main/release/tracing</directory>
+ <outputDirectory>bin</outputDirectory>
+ <includes>
+ </includes>
+ </fileSet>
+ </fileSets>
+
+ <dependencySets>
+ <dependencySet>
+ <outputDirectory>bin</outputDirectory>
+ <unpack>false</unpack>
+ <includes>
+ <include>org.aspectj:aspectjweaver</include>
+ </includes>
+ <outputFileNameMapping>aspectjweaver.jar</outputFileNameMapping>
+ </dependencySet>
+
+ </dependencySets>
+
+</component>