JBoss Community Archive (Read Only)

Teiid 8.3

Setting up the build environment

For Eclipse create a empty java project and add dependencies to "teiid-common-core", "teiid-api" and JEE "connector-api" jars.

For using maven use following as your dependencies.

    <dependencies>
        <dependency>
            <groupId>org.jboss.teiid</groupId>
            <artifactId>teiid-api</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.jboss.teiid</groupId>
            <artifactId>teiid-common-core</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>javax.resource</groupId>
            <artifactId>connector-api</artifactId>
            <scope>provided</scope>
        </dependency>
    </dependencies>        

You can find teiid artifacts in the JBoss maven repository

JBoss.org Content Archive (Read Only), exported from JBoss Community Documentation Editor at 2020-03-13 12:37:53 UTC, last content change 2013-03-14 16:27:13 UTC.