[jbossws-commits] [jbossws/jbossws-cxf] 11f375: Adding modules for rest client and agnostic rest t...

GitHub noreply at github.com
Tue Jan 26 04:14:10 EST 2016


  Branch: refs/heads/rest
  Home:   https://github.com/jbossws/jbossws-cxf
  Commit: 11f37537053dac8770afcb80e742571642b5b08d
      https://github.com/jbossws/jbossws-cxf/commit/11f37537053dac8770afcb80e742571642b5b08d
  Author: Alessio Soldano <asoldano at redhat.com>
  Date:   2015-12-31 (Thu, 31 Dec 2015)

  Changed paths:
    A modules/rest-client/pom.xml
    M modules/testsuite/cxf-tests/pom.xml
    M modules/testsuite/perf-tests/pom.xml
    M modules/testsuite/pom.xml
    A modules/testsuite/shared-rest-tests/pom.xml
    M modules/testsuite/shared-tests/pom.xml
    M pom.xml

  Log Message:
  -----------
  Adding modules for rest client and agnostic rest tests


  Commit: c65430010c6976e2c1b69efcb6a81600ed2f470d
      https://github.com/jbossws/jbossws-cxf/commit/c65430010c6976e2c1b69efcb6a81600ed2f470d
  Author: Alessio Soldano <asoldano at redhat.com>
  Date:   2015-12-31 (Thu, 31 Dec 2015)

  Changed paths:
    M modules/test-utils/src/main/java/org/jboss/wsf/test/JBossWSTestHelper.java

  Log Message:
  -----------
  Deprecating isIntegrationCXF() (not needed anymore) and removing testsuite stack check based on JAX-WS impl in the testsuite classloader


  Commit: fb60ecf342cfd03802a1cb30ed27c8fd95b337a8
      https://github.com/jbossws/jbossws-cxf/commit/fb60ecf342cfd03802a1cb30ed27c8fd95b337a8
  Author: Alessio Soldano <asoldano at redhat.com>
  Date:   2015-12-31 (Thu, 31 Dec 2015)

  Changed paths:
    M modules/testsuite/shared-rest-tests/pom.xml
    A modules/testsuite/shared-rest-tests/src/test/etc/arquillian.xml
    A modules/testsuite/shared-rest-tests/src/test/etc/client.keystore
    A modules/testsuite/shared-rest-tests/src/test/etc/container.properties
    A modules/testsuite/shared-rest-tests/src/test/etc/log4j.xml
    A modules/testsuite/shared-rest-tests/src/test/etc/test.keystore
    A modules/testsuite/shared-rest-tests/src/test/etc/test.truststore
    A modules/testsuite/shared-rest-tests/src/test/etc/tst.policy
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex03_1/CustomerResourceTest.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex03_1/domain/Customer.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex03_1/services/CustomerResource.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex03_1/services/ShoppingApplication.java
    A modules/testsuite/shared-rest-tests/src/test/resources/jaxrs/examples/ex03_1/WEB-INF/web.xml
    A modules/testsuite/shared-rest-tests/src/test/scripts/jbws-testsuite-shared-rest-default.groovy

  Log Message:
  -----------
  - Fix misc testsuite stuff
- Add testcase based on O'Reilly "RESTful Java with JAX-RS" book examples


  Commit: 64a91631fad772c4fa889f8553e1531baa191e84
      https://github.com/jbossws/jbossws-cxf/commit/64a91631fad772c4fa889f8553e1531baa191e84
  Author: Alessio Soldano <asoldano at redhat.com>
  Date:   2016-01-12 (Tue, 12 Jan 2016)

  Changed paths:
    M modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex03_1/CustomerResourceTest.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex04_1/PatchTest.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex04_1/annotations/PATCH.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex04_1/domain/Customer.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex04_1/services/CustomerResource.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex04_1/services/ShoppingApplication.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex04_2/CustomerResourceTest.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex04_2/domain/Customer.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex04_2/services/CustomerResource.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex04_2/services/ShoppingApplication.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex04_3/CustomerResourceTest.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex04_3/domain/Customer.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex04_3/services/CustomerDatabaseResource.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex04_3/services/CustomerResource.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex04_3/services/FirstLastCustomerResource.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex04_3/services/ShoppingApplication.java
    A modules/testsuite/shared-rest-tests/src/test/resources/jaxrs/examples/ex04_x/WEB-INF/web.xml

  Log Message:
  -----------
  Adding more examples (ex04_x)


  Commit: 8b87ffea660553619587f31782b2cab47584d7fc
      https://github.com/jbossws/jbossws-cxf/commit/8b87ffea660553619587f31782b2cab47584d7fc
  Author: Alessio Soldano <asoldano at redhat.com>
  Date:   2016-01-12 (Tue, 12 Jan 2016)

  Changed paths:
    M modules/rest-client/pom.xml
    M modules/testsuite/shared-rest-tests/pom.xml
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex03_1/CustomerResource20Test.java
    M pom.xml

  Log Message:
  -----------
  First JAXRS 2.0 test...


  Commit: 5cfbfcb911b2d02ac71ec1d2552740c5d1fcb593
      https://github.com/jbossws/jbossws-cxf/commit/5cfbfcb911b2d02ac71ec1d2552740c5d1fcb593
  Author: Alessio Soldano <asoldano at redhat.com>
  Date:   2016-01-12 (Tue, 12 Jan 2016)

  Changed paths:
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex04_1/Patch20Test.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex04_2/CustomerResource20Test.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex04_3/CustomerResource20Test.java

  Log Message:
  -----------
  More JAX-RS 2.0 examples...


  Commit: a1df209a49b0418c85d25f2fb78442409ed5d9cd
      https://github.com/jbossws/jbossws-cxf/commit/a1df209a49b0418c85d25f2fb78442409ed5d9cd
  Author: Alessio Soldano <asoldano at redhat.com>
  Date:   2016-01-12 (Tue, 12 Jan 2016)

  Changed paths:
    M modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex04_3/CustomerResource20Test.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex05_1/InjectionTest.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex05_1/domain/Customer.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex05_1/services/CarResource.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex05_1/services/CustomerResource.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex05_1/services/ShoppingApplication.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex06_1/CustomerResourceTest.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex06_1/domain/Customer.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex06_1/services/CustomerResource.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex06_1/services/ShoppingApplication.java
    A modules/testsuite/shared-rest-tests/src/test/resources/jaxrs/examples/ex05_x/WEB-INF/web.xml
    A modules/testsuite/shared-rest-tests/src/test/resources/jaxrs/examples/ex06_x/WEB-INF/web.xml

  Log Message:
  -----------
  More tests...


  Commit: d8d34168fa81096bd07287c8a074fd598121e60d
      https://github.com/jbossws/jbossws-cxf/commit/d8d34168fa81096bd07287c8a074fd598121e60d
  Author: Alessio Soldano <asoldano at redhat.com>
  Date:   2016-01-12 (Tue, 12 Jan 2016)

  Changed paths:
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex06_2/CustomerResourceTest.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex06_2/domain/Customer.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex06_2/services/CustomerResource.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex06_2/services/JavaMarshaller.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex06_2/services/ShoppingApplication.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex07_1/CustomerResourceTest.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex07_1/domain/Customer.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex07_1/services/CustomerNotFoundException.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex07_1/services/CustomerNotFoundExceptionMapper.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex07_1/services/CustomerResource.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex07_1/services/ShoppingApplication.java
    A modules/testsuite/shared-rest-tests/src/test/resources/jaxrs/examples/ex07_x/WEB-INF/web.xml

  Log Message:
  -----------
  More tests...


  Commit: 4a457a13d21275084693e89fd3d550d2826e0466
      https://github.com/jbossws/jbossws-cxf/commit/4a457a13d21275084693e89fd3d550d2826e0466
  Author: Alessio Soldano <asoldano at redhat.com>
  Date:   2016-01-12 (Tue, 12 Jan 2016)

  Changed paths:
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex09_1/CustomerResourceTest.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex09_1/domain/Customer.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex09_1/services/CustomerResource.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex09_1/services/ShoppingApplication.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex10_1/CustomerResourceTest.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex10_1/domain/Customer.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex10_1/domain/Customers.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex10_1/services/CustomerResource.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex10_1/services/ShoppingApplication.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex10_2/CustomerResourceTest.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex10_2/domain/Customer.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex10_2/domain/Customers.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex10_2/domain/LineItem.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex10_2/domain/Order.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex10_2/domain/Orders.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex10_2/services/CustomerResource.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex10_2/services/OrderResource.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex10_2/services/ShoppingApplication.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex10_2/services/StoreResource.java
    A modules/testsuite/shared-rest-tests/src/test/resources/jaxrs/examples/ex09_x/WEB-INF/web.xml
    A modules/testsuite/shared-rest-tests/src/test/resources/jaxrs/examples/ex10_x/WEB-INF/web.xml

  Log Message:
  -----------
  More tests...


  Commit: 8541295601b0cc74b841f5addb124a912fd4524e
      https://github.com/jbossws/jbossws-cxf/commit/8541295601b0cc74b841f5addb124a912fd4524e
  Author: Alessio Soldano <asoldano at redhat.com>
  Date:   2016-01-12 (Tue, 12 Jan 2016)

  Changed paths:
    R modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex10_2/CustomerResourceTest.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex10_2/OrderResourceTest.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex11_1/CustomerResourceTest.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex11_1/domain/Customer.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex11_1/services/CustomerResource.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex11_1/services/ShoppingApplication.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex12_1/CustomerResourceTest.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex12_1/domain/Customer.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex12_1/features/CacheControlFilter.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex12_1/features/MaxAge.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex12_1/features/MaxAgeFeature.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex12_1/services/CustomerResource.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex12_1/services/ShoppingApplication.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex12_2/CustomerResourceTest.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex12_2/domain/Customer.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex12_2/features/ContentMD5Writer.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex12_2/services/CustomerResource.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex12_2/services/ShoppingApplication.java
    A modules/testsuite/shared-rest-tests/src/test/resources/jaxrs/examples/ex11_x/WEB-INF/web.xml
    A modules/testsuite/shared-rest-tests/src/test/resources/jaxrs/examples/ex12_x/WEB-INF/web.xml

  Log Message:
  -----------
  More tests...


  Commit: b50f4d59262c052301c754b43455606cd8b9623f
      https://github.com/jbossws/jbossws-cxf/commit/b50f4d59262c052301c754b43455606cd8b9623f
  Author: Alessio Soldano <asoldano at redhat.com>
  Date:   2016-01-13 (Wed, 13 Jan 2016)

  Changed paths:
    M modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex12_2/CustomerResourceTest.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex15_1/CustomerResourceTest.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex15_1/domain/Customer.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex15_1/features/AllowedPerDay.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex15_1/features/OTP.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex15_1/features/OTPAuthenticated.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex15_1/features/OneTimePasswordAuthenticator.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex15_1/features/OneTimePasswordGenerator.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex15_1/features/PerDayAuthorizer.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex15_1/services/CustomerResource.java
    A modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex15_1/services/ShoppingApplication.java
    A modules/testsuite/shared-rest-tests/src/test/resources/jaxrs/examples/ex15_x/WEB-INF/web.xml

  Log Message:
  -----------
  More tests


  Commit: 9fc476dc0fbbc0fd8fd0ce902b8d2dd565d54e84
      https://github.com/jbossws/jbossws-cxf/commit/9fc476dc0fbbc0fd8fd0ce902b8d2dd565d54e84
  Author: Alessio Soldano <asoldano at redhat.com>
  Date:   2016-01-19 (Tue, 19 Jan 2016)

  Changed paths:
    M modules/dist/pom.xml
    M modules/resources/src/main/resources/modules/wildfly900/org/apache/cxf/impl/main/module.xml
    M modules/resources/src/main/resources/modules/wildfly900/org/apache/cxf/main/module.xml
    M modules/server/pom.xml
    M modules/testsuite/pom.xml
    M pom.xml

  Log Message:
  -----------
  Misc depepencies updates


  Commit: 7d9925d839ccde0f6f91ec320e1d700bcb71aec9
      https://github.com/jbossws/jbossws-cxf/commit/7d9925d839ccde0f6f91ec320e1d700bcb71aec9
  Author: Alessio Soldano <asoldano at redhat.com>
  Date:   2016-01-19 (Tue, 19 Jan 2016)

  Changed paths:
    M modules/addons/pom.xml
    M modules/addons/transports/http/undertow/pom.xml
    M modules/addons/transports/udp/pom.xml
    M modules/client/pom.xml
    M modules/dist/pom.xml
    M modules/endorsed/pom.xml
    M modules/jaspi/pom.xml
    M modules/resources/pom.xml
    M modules/rest-client/pom.xml
    M modules/server/pom.xml
    M modules/test-utils/pom.xml
    M modules/testsuite/cxf-tests/pom.xml
    M modules/testsuite/perf-tests/pom.xml
    M modules/testsuite/pom.xml
    M modules/testsuite/shared-rest-tests/pom.xml
    M modules/testsuite/shared-tests/pom.xml
    M pom.xml

  Log Message:
  -----------
  Build to .rest-SNAPSHOT version


  Commit: 852897d1298cdefae0c6c979a05f2492b2118ecb
      https://github.com/jbossws/jbossws-cxf/commit/852897d1298cdefae0c6c979a05f2492b2118ecb
  Author: Alessio Soldano <asoldano at redhat.com>
  Date:   2016-01-20 (Wed, 20 Jan 2016)

  Changed paths:
    A modules/server/src/main/java/org/jboss/wsf/stack/cxf/JAXRSServletExt.java
    A modules/server/src/main/java/org/jboss/wsf/stack/cxf/deployment/aspect/JAXRSBusDeploymentAspect.java

  Log Message:
  -----------
  Adding preliminary servlet and DA


  Commit: 6e34bad2dc8dc54f84085d1494a287c0efe9704f
      https://github.com/jbossws/jbossws-cxf/commit/6e34bad2dc8dc54f84085d1494a287c0efe9704f
  Author: Alessio Soldano <asoldano at redhat.com>
  Date:   2016-01-20 (Wed, 20 Jan 2016)

  Changed paths:
    M modules/resources/src/main/resources/modules/wildfly900/org/jboss/ws/cxf/jbossws-cxf-server/main/module.xml

  Log Message:
  -----------
  Add jaxrs to jbossws-cxf-server


  Commit: 7098ec2ab5f59bfb59fa93afe41e9356498c029c
      https://github.com/jbossws/jbossws-cxf/commit/7098ec2ab5f59bfb59fa93afe41e9356498c029c
  Author: Alessio Soldano <asoldano at redhat.com>
  Date:   2016-01-20 (Wed, 20 Jan 2016)

  Changed paths:
    M modules/server/src/main/java/org/jboss/wsf/stack/cxf/JAXRSServletExt.java
    M modules/server/src/main/java/org/jboss/wsf/stack/cxf/deployment/aspect/JAXRSBusDeploymentAspect.java

  Log Message:
  -----------
  Initial move of the Bus / RS beans into deployment phase instead of first servlet execution


  Commit: 2a79942022ba6db4128ab8aa14f36bb0e9c3ae77
      https://github.com/jbossws/jbossws-cxf/commit/2a79942022ba6db4128ab8aa14f36bb0e9c3ae77
  Author: Alessio Soldano <asoldano at redhat.com>
  Date:   2016-01-25 (Mon, 25 Jan 2016)

  Changed paths:
    M modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex03_1/CustomerResource20Test.java
    M modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex03_1/CustomerResourceTest.java
    M modules/testsuite/shared-rest-tests/src/test/java/org/jboss/test/jaxrs/examples/ex03_1/services/ShoppingApplication.java

  Log Message:
  -----------
  Change test application path for one of the tests to avoid them all using "/services" which is kind of special for CXF being the location it uses for serving the html page that links to the wadl.


  Commit: b3b8d851045387d883d284a1e45cae602579e95f
      https://github.com/jbossws/jbossws-cxf/commit/b3b8d851045387d883d284a1e45cae602579e95f
  Author: Alessio Soldano <asoldano at redhat.com>
  Date:   2016-01-25 (Mon, 25 Jan 2016)

  Changed paths:
    M modules/rest-client/pom.xml
    M modules/server/src/main/java/org/jboss/wsf/stack/cxf/deployment/aspect/JAXRSBusDeploymentAspect.java
    M pom.xml

  Log Message:
  -----------
  Adding JSON support (and moving to cxf 3.1.5-SNAPSHOT


  Commit: 06e11f670165a647352176506f6847307c993928
      https://github.com/jbossws/jbossws-cxf/commit/06e11f670165a647352176506f6847307c993928
  Author: Alessio Soldano <asoldano at redhat.com>
  Date:   2016-01-25 (Mon, 25 Jan 2016)

  Changed paths:
    M modules/server/src/main/java/org/jboss/wsf/stack/cxf/JAXRSServletExt.java

  Log Message:
  -----------
  Fix PATCH tests


Compare: https://github.com/jbossws/jbossws-cxf/compare/11f37537053d^...06e11f670165


More information about the jbossws-commits mailing list