vdb-materialization
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.teiid</groupId>
<artifactId>vdb-materialization</artifactId>
<version>1.0.2</version>
</dependency><?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.teiid</groupId>
<artifactId>thorntail-examples</artifactId>
<version>1.0.2</version>
<relativePath>../</relativePath>
</parent>
<artifactId>vdb-materialization</artifactId>
<name>Thorntail Based Teiid Example showing file source materialization</name>
<packaging>vdb</packaging>
<properties>
<version.thorntail>2.2.0.Final</version.thorntail>
<version.thorntail.teiid>1.0.2</version.thorntail.teiid>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.teiid</groupId>
<artifactId>thorntail-bom</artifactId>
<version>${version.thorntail.teiid}</version>
<scope>import</scope>
<type>pom</type>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
<plugins>
<plugin>
<groupId>io.thorntail</groupId>
<artifactId>thorntail-maven-plugin</artifactId>
<version>${version.thorntail}</version>
<executions>
<execution>
<goals>
<goal>package</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.teiid</groupId>
<artifactId>vdb-maven-plugin</artifactId>
<version>1.1</version>
<extensions>true</extensions>
<executions>
<execution>
<id>build</id>
<goals>
<goal>vdb</goal>
</goals>
<configuration>
<!-- your configuration here -->
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.teiid</groupId>
<artifactId>thorntail-runtime</artifactId>
</dependency>
<dependency>
<groupId>org.teiid</groupId>
<artifactId>thorntail-file</artifactId>
</dependency>
</dependencies>
</project>