Uploaded image for project: 'CXF'
  1. CXF
  2. CXF-4262

oauth sample in 2.5.3 release does not build without POM changes

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Minor
    • Resolution: Fixed
    • 2.5.3
    • 2.5.4, 2.6.1
    • Samples
    • Unknown

    Description

      Tried building oauth client and server samples in 2.5.3 release using provided instruction:
      mvn jetty:run
      Also tried:
      mvn clean install
      These attempts in both client and server fail with the following relevant exception from the stack trace:
      *****
      Caused by: org.apache.maven.project.ProjectBuildingException: POM 'org.apache.cxf.samples:cxf-samples' not found in repository: Unable to download the artifact from any repository

      org.apache.cxf.samples:cxf-samples:pom:2.5.3-SNAPSHOT
      *****

      Looking in the pom.xml file for this 2.5.3-SNAPSHOT problem, I find this entry:
      <version>2.5.3-SNAPSHOT</version>

      Changing it to the following resolves the problem and lets the samples build:
      <version>2.5.3</version>

      The client now starts with "mvn jetty:run", but the server still fails with an apparently unrelated error. Still, at least it builds with this change.

      The server error is:
      java.lang.NoSuchMethodError: org.objectweb.asm.ClassWriter.<init>(Z)V

      This is apparently due to the use of cglib in the pom.xml. It can be resolved and let the server start by changing this entry in the pom.xml:
      <dependency>
      <groupId>cglib</groupId>
      <artifactId>cglib</artifactId>
      <version>2.1</version>
      </dependency>
      to this:
      <dependency>
      <groupId>cglib</groupId>
      <artifactId>cglib-nodep</artifactId>
      <version>2.1</version>
      </dependency>

      After this it is possible to start "mvn jetty:run" with no errors, though I don't know enough about the sample to verify its functionality yet.

      Attachments

        Activity

          People

            sergey_beryozkin Sergey Beryozkin
            jpangburn Jesse Pangburn
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: