okhttp3 java.lang.NoClassDefFoundError: kotlin/jvm/internal/Intrinsics
I m following this tutorial : https://scrapingant.com/blog/web-scraping-java to scrap with java.
I created a java project and when I try to execute this code from the tutorial :
import java.io.IOException;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import okhttp3.OkHttpClient;
import okhttp3.Request;
import okhttp3.Response;
public class App {
public static void main(String[]...