Kucoin / kucoin-java-sdk

MIT License
87 stars 76 forks source link

Can't compile in IntelliJ #34

Closed vidicunt closed 2 years ago

vidicunt commented 3 years ago

I'm getting about 60 "java: cannot find symbol" errors, only when building. I tried everything. The errors don't appear in the live text editor, only when compiling.

sfergu commented 3 years ago

I was able to get this to build in intelliJ by making the following lombok change to the pom, and then be sure to build with a maven task

  <dependency>
        <groupId>org.projectlombok</groupId>
        <artifactId>lombok</artifactId>
        <version>1.18.2</version>
        <scope>compile</scope>
    </dependency>

maven clean install with the skip tests checked installed it to my local maven repo

leehus commented 3 years ago

@sfergu Life Saver!!