Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
780 blopes 1
<?xml version="1.0" encoding="UTF-8"?>
2
<project xmlns="http://maven.apache.org/POM/4.0.0"
3
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
5
                             http://maven.apache.org/xsd/maven-4.0.0.xsd">
6
    <modelVersion>4.0.0</modelVersion>
7
 
8
    <groupId>br.com.stocklifepro</groupId>
9
    <artifactId>ibkr-bot</artifactId>
10
    <version>1.0.0-SNAPSHOT</version>
11
    <name>StockLifePro IBKR Bot</name>
12
 
13
    <properties>
14
        <maven.compiler.source>17</maven.compiler.source>
15
        <maven.compiler.target>17</maven.compiler.target>
16
    </properties>
17
 
18
    <dependencies>
19
 
20
        <!-- IBKR API (instale o JAR localmente com mvn install:install-file) -->
21
        <dependency>
22
            <groupId>com.ib</groupId>
23
            <artifactId>ibapi</artifactId>
24
            <version>1.0</version>
25
        </dependency>
26
 
27
        <!-- Log (slf4j + logback) -->
28
        <dependency>
29
            <groupId>ch.qos.logback</groupId>
30
            <artifactId>logback-classic</artifactId>
31
            <version>1.5.6</version>
32
        </dependency>
33
 
34
        <dependency>
35
            <groupId>org.slf4j</groupId>
36
            <artifactId>slf4j-api</artifactId>
37
            <version>2.0.13</version>
38
        </dependency>
39
 
40
    </dependencies>
41
 
42
</project>