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