summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x/trunk
diff options
context:
space:
mode:
authorantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2010-09-16 09:45:42 +0000
committerantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2010-09-16 09:45:42 +0000
commit9f27f14e177adccbdb68997293b66076e3a1303a (patch)
tree0228a46a898ba0278e4477a55db47d05d3443730 /sca-java-2.x/trunk
parent2f314c198584b2e7827adbe46cffe85fa8d6890a (diff)
Add a skip for the remote resources plugin for the samples so they don't inlcude unnecessar guff
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@997652 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-2.x/trunk')
-rw-r--r--sca-java-2.x/trunk/samples/pom.xml9
1 files changed, 9 insertions, 0 deletions
diff --git a/sca-java-2.x/trunk/samples/pom.xml b/sca-java-2.x/trunk/samples/pom.xml
index 8b0350dc57..f0fa7753e0 100644
--- a/sca-java-2.x/trunk/samples/pom.xml
+++ b/sca-java-2.x/trunk/samples/pom.xml
@@ -79,6 +79,7 @@
<build>
<plugins>
+ <!-- this prevents the sample artifacts being deployed as they're only distributed as part of the binary distribution -->
<plugin>
<inherited>true</inherited>
<artifactId>maven-deploy-plugin</artifactId>
@@ -87,6 +88,14 @@
<skip>true</skip>
</configuration>
</plugin>
+ <!-- this prevents adding LICENSE/NOTICE/DEPENDENCIES files to the sample artifacts which aren't needed as they're not separately distributed -->
+ <plugin>
+ <inherited>true</inherited>
+ <artifactId>maven-remote-resources-plugin</artifactId>
+ <configuration>
+ <skip>true</skip>
+ </configuration>
+ </plugin>
</plugins>
</build>