vdb-codegen-test
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.teiid</groupId>
<artifactId>vdb-codegen-test</artifactId>
<version>1.7.2</version>
</dependency><!--
Copyright (C) 2016 Red Hat, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<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>
<parent>
<groupId>org.teiid</groupId>
<artifactId>tools</artifactId>
<version>1.7.2</version>
</parent>
<artifactId>vdb-codegen-test</artifactId>
<packaging>jar</packaging>
<name>VDB Code Generator Test</name>
<properties>
<!-- there are some insignificant overlaps with resources in some of the cxf jars,
also activation is duplicated -->
<basepom.check.skip-duplicate-finder>true</basepom.check.skip-duplicate-finder>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.teiid</groupId>
<artifactId>vdb-codegen-plugin</artifactId>
<version>${project.version}</version>
<configuration>
<packageName>org.teiid.spring.example</packageName>
<vdbFile>src/main/resources/customer-vdb.ddl</vdbFile>
<materializationEnable>true</materializationEnable>
<vdbVersion>1</vdbVersion>
</configuration>
<executions>
<execution>
<goals>
<goal>vdb-codegen</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.teiid</groupId>
<artifactId>vdb-codegen-plugin</artifactId>
<versionRange>[1.7.1-SNAPSHOT,)</versionRange>
<goals>
<goal>vdb-codegen</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore />
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<dependencies>
<dependency>
<groupId>org.teiid</groupId>
<artifactId>spring-data-salesforce</artifactId>
</dependency>
<dependency>
<groupId>org.teiid</groupId>
<artifactId>spring-data-rest</artifactId>
</dependency>
<dependency>
<groupId>org.teiid</groupId>
<artifactId>spring-data-odata</artifactId>
</dependency>
<dependency>
<groupId>org.teiid</groupId>
<artifactId>spring-data-odata4</artifactId>
</dependency>
<dependency>
<groupId>org.teiid</groupId>
<artifactId>spring-data-google-spreadsheet</artifactId>
</dependency>
<dependency>
<groupId>org.teiid</groupId>
<artifactId>spring-data-mongodb</artifactId>
</dependency>
<dependency>
<groupId>org.teiid</groupId>
<artifactId>spring-data-hive</artifactId>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
</dependency>
<dependency>
<groupId>org.teiid</groupId>
<artifactId>spring-data-infinispan-hotrod</artifactId>
</dependency>
<dependency>
<groupId>org.teiid</groupId>
<artifactId>spring-data-soap</artifactId>
</dependency>
<dependency>
<groupId>org.teiid</groupId>
<artifactId>spring-data-ftp</artifactId>
</dependency>
<dependency>
<groupId>org.teiid</groupId>
<artifactId>spring-data-cassandra</artifactId>
</dependency>
<dependency>
<groupId>org.teiid</groupId>
<artifactId>spring-data-s3</artifactId>
</dependency>
<dependency>
<groupId>org.teiid</groupId>
<artifactId>spring-data-file</artifactId>
</dependency>
<dependency>
<groupId>org.teiid</groupId>
<artifactId>spring-data-jdbc-ansi</artifactId>
</dependency>
<dependency>
<groupId>org.teiid</groupId>
<artifactId>spring-data-mssql-server</artifactId>
</dependency>
<dependency>
<groupId>org.teiid</groupId>
<artifactId>spring-data-postgresql</artifactId>
</dependency>
<dependency>
<groupId>net.sourceforge.jtds</groupId>
<artifactId>jtds</artifactId>
</dependency>
<dependency>
<groupId>com.microsoft.sqlserver</groupId>
<artifactId>mssql-jdbc</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>