For Eclipse users (without maven integration), create a java project and add dependencies to "teiid\-common\-core", "teiid\-api" and JEE "connector\-api" jars. |
For maven users add the following as your dependencies: |
... |
For Eclipse users (without maven integration), create a java project and add dependencies to "teiid-common-core", "teiid-api" and JEE "connector-api" jars.
For maven users add the following as your dependencies:
<dependencies> <dependency> <groupId>org.jboss.teiid</groupId> <artifactId>teiid-api</artifactId> <version>${teiid-version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.jboss.teiid</groupId> <artifactId>teiid-common-core</artifactId> <version>${teiid-version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>javax.resource</groupId> <artifactId>connector-api</artifactId> <version>${version.connector.api}</version> <scope>provided</scope> </dependency> </dependencies>
Where the ${teiid-version} property should be set to the expected version, such as 8.7.0.Final. You can find Teiid artifacts in the JBoss maven repository . The ${version.connector.api} version last used was 1.5.