此内容没有您所选择的语言版本。
3.6. Setting the Development Environment
For JBoss Developer Studio, create an empty java project and add "teiid-common-core", "teiid-api" and JEE "connector-api" JARs as dependencies.
For using Maven, use the following 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>${connector-api-version}</version>
<scope>provided</scope>
</dependency>
</dependencies>
The
teiid-version property must be set to the expected version. You must also add the new declared property connector-api-version. You can find relevant artifacts in the Maven repository.