diff options
author | nash <nash@13f79535-47bb-0310-9956-ffa450edef68> | 2010-03-19 05:36:56 +0000 |
---|---|---|
committer | nash <nash@13f79535-47bb-0310-9956-ffa450edef68> | 2010-03-19 05:36:56 +0000 |
commit | 696be36f6e9ff58fa39e5dcfed575f32ec1340dd (patch) | |
tree | 07ef33c68864c175a0b4a79c52cc566f4887bfd4 | |
parent | 05077b2bafecef20b1e10535699dfb9efb89ac9b (diff) |
Apply workaround for TUSCANY-3476 to workspace-distribution.xml and add inline comments referencing this JIRA
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@925097 13f79535-47bb-0310-9956-ffa450edef68
2 files changed, 3 insertions, 1 deletions
diff --git a/sca-java-1.x/trunk/tutorials/travelsample/domainconfig/fullapp/src/main/resources/workspace-distribution.xml b/sca-java-1.x/trunk/tutorials/travelsample/domainconfig/fullapp/src/main/resources/workspace-distribution.xml index 3e7060edb7..a7a3b01895 100644 --- a/sca-java-1.x/trunk/tutorials/travelsample/domainconfig/fullapp/src/main/resources/workspace-distribution.xml +++ b/sca-java-1.x/trunk/tutorials/travelsample/domainconfig/fullapp/src/main/resources/workspace-distribution.xml @@ -27,7 +27,8 @@ <contribution location="file:../contributions/scatours-contribution-trip.jar" uri="trip"/>
<contribution location="file:../contributions/scatours-contribution-tripbooking.jar" uri="tripbooking"/>
<contribution location="file:../contributions/scatours-contribution-travelcatalog.jar" uri="travelcatalog"/>
- <contribution location="file:../contributions/scatours-contribution-payment-spring-policy.jar" uri="fullapp-payment"/>
+ <!-- the following line should be payment-spring-policy but this doesn't work when using the domain manager (TUSCANY-3476) -->
+ <contribution location="file:../contributions/scatours-contribution-payment-java-policy.jar" uri="fullapp-payment"/>
<contribution location="file:../contributions/scatours-contribution-creditcard-payment-jaxb-policy.jar" uri="fullapp-creditcard"/>
<contribution location="file:../contributions/scatours-contribution-shoppingcart.jar" uri="shoppingcart"/>
<contribution location="file:../contributions/scatours-contribution-scatours.jar" uri="scatours"/>
diff --git a/sca-java-1.x/trunk/tutorials/travelsample/domainconfig/fullapp/src/main/resources/workspace.xml b/sca-java-1.x/trunk/tutorials/travelsample/domainconfig/fullapp/src/main/resources/workspace.xml index 8814cd086b..8f1efcd1fd 100644 --- a/sca-java-1.x/trunk/tutorials/travelsample/domainconfig/fullapp/src/main/resources/workspace.xml +++ b/sca-java-1.x/trunk/tutorials/travelsample/domainconfig/fullapp/src/main/resources/workspace.xml @@ -27,6 +27,7 @@ <contribution location="file:../../contributions/trip/target/scatours-contribution-trip.jar" uri="trip"/>
<contribution location="file:../../contributions/tripbooking/target/scatours-contribution-tripbooking.jar" uri="tripbooking"/>
<contribution location="file:../../contributions/travelcatalog/target/scatours-contribution-travelcatalog.jar" uri="travelcatalog"/>
+ <!-- the following line should be payment-spring-policy but this doesn't work when using the domain manager (TUSCANY-3476) -->
<contribution location="file:../../contributions/payment-java-policy/target/scatours-contribution-payment-java-policy.jar" uri="fullapp-payment"/>
<contribution location="file:../../contributions/creditcard-payment-jaxb-policy/target/scatours-contribution-creditcard-payment-jaxb-policy.jar" uri="fullapp-creditcard"/>
<contribution location="file:../../contributions/shoppingcart/target/scatours-contribution-shoppingcart.jar" uri="shoppingcart"/>
|