Giter Club home page Giter Club logo

Comments (10)

RichardWarburton avatar RichardWarburton commented on August 20, 2024

Thanks for the bug report @karianna - do you have a sequence of steps I could use to reproduce this issue? If not even a description of what was happening or what you were doing at the time would be helpful.

from lambda-behave.

RichardWarburton avatar RichardWarburton commented on August 20, 2024

Yeah, looks like the only version of BCEL which supports Java 8 is in findbugs - https://twitter.com/wendigo/status/485786418523156480

from lambda-behave.

karianna avatar karianna commented on August 20, 2024

Argh, of course, sorry - just run mvn clean compile site I was using Maven 3.2.2, but I suspect you might see it with 3.2.1 as well.

from lambda-behave.

karianna avatar karianna commented on August 20, 2024

Fair enough, I guess close with Won't Fix :-)

from lambda-behave.

RichardWarburton avatar RichardWarburton commented on August 20, 2024

Maybe worth leaving the issue in place to track the bug and once they've released a fix can re-test then.

from lambda-behave.

RichardWarburton avatar RichardWarburton commented on August 20, 2024

Maybe fixed soon:
https://twitter.com/rafaelonjava/status/485803028101201920

from lambda-behave.

cmccorvey avatar cmccorvey commented on August 20, 2024

Any update on this?

from lambda-behave.

sdhaene avatar sdhaene commented on August 20, 2024

Got the same problem. I ended up in replacing the bcel 5.2 dependency with the bcel-findbugs V6.0 version which does have support for lambda functions.
This is what i did in my pom-file:

<build>
    <plugins>
...

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-project-info-reports-plugin</artifactId>
    <version>2.8</version>
    <dependencies>
        <dependency>
            <groupId>org.apache.maven.shared</groupId>
            <artifactId>maven-shared-jar</artifactId>
            <version>1.1</version>
            <exclusions>
                <exclusion>
                    <groupId>org.apache.bcel</groupId>
                    <artifactId>bcel</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>com.google.code.findbugs</groupId>
            <artifactId>bcel-findbugs</artifactId>
            <version>6.0</version>
        </dependency>
    </dependencies>
</plugin>

...

    </plugins>
</build>

from lambda-behave.

russray2008 avatar russray2008 commented on August 20, 2024

Thank you sdhaene this helped me.

from lambda-behave.

RichardWarburton avatar RichardWarburton commented on August 20, 2024

@russray2008 this should be fixed in the 0.4 release btw.

from lambda-behave.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.