Subversion Repositories Integrator Subversion

Rev

Rev 795 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

<project xmlns="http://maven.apache.org/POM/4.0.0"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
                            http://maven.apache.org/xsd/maven-4.0.0.xsd">

    <modelVersion>4.0.0</modelVersion>

    <groupId>br.com.kronus</groupId>
    <artifactId>kronus-ibkr</artifactId>
    <version>1.0.0-SNAPSHOT</version>

    <properties>
        <tws-api-systemPath>F:\espacocase\projeto-trade\kronus-ibkr/lib/tws-api.jar</tws-api-systemPath>
        <java.version>17</java.version>
        <maven.compiler.source>17</maven.compiler.source>
        <maven.compiler.target>17</maven.compiler.target>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>

    <dependencies>
        <dependency>
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-databind</artifactId>
            <version>2.17.0</version>
        </dependency>
        <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
                <dependency>
                    <groupId>org.apache.commons</groupId>
                    <artifactId>commons-lang3</artifactId>
                    <version>3.19.0</version>
                </dependency>

        <!-- IBKR TWS Java API: adicione o arquivo tws-api.jar em lib/ -->
        <dependency>
            <groupId>com.ibkr</groupId>
            <artifactId>tws-api</artifactId>
            <version>10.39.1</version>
            <scope>system</scope>
            <systemPath>${tws-api-systemPath}</systemPath>
        </dependency>

    </dependencies>

</project>