Subversion Repositories Integrator Subversion

Rev

Rev 784 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
784 blopes 1
<project xmlns="http://maven.apache.org/POM/4.0.0"
2
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
4
                             http://maven.apache.org/xsd/maven-4.0.0.xsd">
5
    <modelVersion>4.0.0</modelVersion>
6
 
7
    <groupId>br.com.kronus</groupId>
8
    <artifactId>kronus-binance-futures</artifactId>
9
    <version>1.0.0-SNAPSHOT</version>
10
 
11
    <properties>
12
        <java.version>17</java.version>
13
        <maven.compiler.source>17</maven.compiler.source>
14
        <maven.compiler.target>17</maven.compiler.target>
15
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
16
    </properties>
17
 
18
    <dependencies>
19
        <dependency>
20
            <groupId>com.fasterxml.jackson.core</groupId>
21
            <artifactId>jackson-databind</artifactId>
22
            <version>2.17.0</version>
23
        </dependency>
790 blopes 24
        <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
25
                <dependency>
26
                    <groupId>org.apache.commons</groupId>
27
                    <artifactId>commons-lang3</artifactId>
28
                    <version>3.19.0</version>
29
                </dependency>
784 blopes 30
    </dependencies>
31
 
32
</project>