Subversion Repositories Integrator Subversion

Rev

Go to most recent revision | Details | 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>
24
    </dependencies>
25
 
26
</project>