binance / binance-connector-java

Simple Java connector to Binance Spot API
MIT License
399 stars 173 forks source link

Support for Jakarta EE 10 #108

Open roberto-cisternino opened 9 months ago

roberto-cisternino commented 9 months ago

Hello, is the Jakarta EE underway ?

aisling-2 commented 9 months ago

Hi @roberto-cisternino, we haven't explored what Jakarta EE could bring and its requirements, so there's no plan for it. But saving this with label "review" to research more in the future.

roberto-cisternino commented 9 months ago

I was able to work with Jakarta EE 10 as well by solving a conflict this way, all the rest is working fine.

    <dependency>
        <groupId>io.github.binance</groupId>
        <artifactId>binance-connector-java</artifactId>
        <version>3.2.0</version>
        <exclusions>
            <exclusion>
                <groupId>org.jetbrains.kotlin</groupId>
                <artifactId>kotlin-stdlib-common</artifactId>
            </exclusion>
        </exclusions>
    </dependency>