restassured icon indicating copy to clipboard operation
restassured copied to clipboard

problems compiling lombok with IntelliJ 2021.1, jdk10

Open pabloeigen opened this issue 4 years ago • 0 comments

Hi, I am following your course in youtube and dowloaded the code.

I am having problems to compile it, having problems with the builder class of lombok

java: cannot find symbol symbol: class Builder location: class model.Posts

`var posts = new Posts.Builder().build();

    var post = response.getBody().as(posts.getClass());

    assertThat(post.getAuthor(), equalTo("Karthik KK"));`

I have tried everything in google to make it work (proper configuration for lombok) but still cannot figure it out. I am using jdk 10 as you propose in your videos.

Any help would be appreciate! Thanks

pabloeigen avatar Jun 14 '21 09:06 pabloeigen