vdb-maven-plugin Maven Plugin

A maven plug in that helps to build -vdb.xml to .vdb

Лицензия

Лицензия

Категории

Категории

Maven Компиляция и сборка
Группа

Группа

org.teiid
Идентификатор

Идентификатор

vdb-maven-plugin
Последняя версия

Последняя версия

1.5
Дата

Дата

Тип

Тип

maven-plugin
Описание

Описание

vdb-maven-plugin Maven Plugin
A maven plug in that helps to build -vdb.xml to .vdb
Ссылка на сайт

Ссылка на сайт

http://teiid.org
Система контроля версий

Система контроля версий

https://github.com/teiid/vdb-maven-plugin

Скачать vdb-maven-plugin

Как подключить последнюю версию

<plugin>
    <groupId>org.teiid</groupId>
    <artifactId>vdb-maven-plugin</artifactId>
    <version>1.5</version>
</plugin>

Зависимости

compile (11)

Идентификатор библиотеки Тип Версия
org.apache.maven : maven-plugin-api jar 3.1.1
org.codehaus.plexus : plexus-utils jar 3.0.8
org.apache.maven : maven-core jar 3.1.1
org.twdata.maven : mojo-executor jar 2.2.0
org.apache.velocity : velocity jar 1.7
org.apache.commons : commons-compress jar 1.19
commons-io : commons-io jar 2.4
commons-lang : commons-lang jar 2.6
org.teiid : teiid-common-core jar 11.0.2
org.teiid : teiid-client jar 11.0.2
org.teiid : teiid-admin jar 11.0.2

provided (1)

Идентификатор библиотеки Тип Версия
org.apache.maven.plugin-tools : maven-plugin-annotations jar 3.2

test (1)

Идентификатор библиотеки Тип Версия
junit : junit jar 4.13.1

Модули Проекта

Данный проект не имеет модулей.

VDB Maven Plugin (replaced with new version https://github.com/teiid/teiid-spring-boot/tree/master/tools/vdb-plugin )

A Maven PlugIn to build a VDB file. Thorntail only allows ZIP archive based artifact deployment when a VDB needs to be deployed with Thorntail Teiid. This Maven plugin has packaging type of "vdb" can be defined in a pom.xml as

<modelVersion>4.0.0</modelVersion>
<groupId>com.example</groupId>
<artifactId>teiid-demo</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>vdb</packaging>

<build>
  <plugins>
    <plugin>
      <groupId>org.teiid</groupId>
      <artifactId>vdb-maven-plugin</artifactId>
      <version>1.2</version>
      <extensions>true</extensions>
      <executions>
        <execution>
          <id>test</id>
          <goals>
            <goal>vdb</goal>
          </goals>
          <configuration>
            <!-- your configuration here -->
            <!-- 
            <vdbXmlFile>path/to/vdbfile</vdbXmlFile> <!-- optional -->
            <vdbFolder>path/to/vdbfile</vdbFolder> <!-- optional -->
            -->
          </configuration>          
        </execution>
      </executions>
    </plugin>
  </plugins>
</build>

The default vdbXMLFile is set to "${basedir}/src/main/vdb/META-INF/vdb.xml", if this file is available, then it this file is used as the VDB file. If this file is not there then code will look into vdbFolder directory and scan for -vdb.xml or -vdb.ddl files in this folder or any of sub folders. The very first file found with either of the name is choosen as the VDB file. So, only provide single vdb file for project. Inside the vdbFolder one can have any number of other supporting files in same folder or sub folders, they will be copied as is into target archive. Default vdbFolder value is ${basedir}/src/main/vdb. The vdb structure can be like follows.

src
  /main
    /vdb
      sample-vdb.xml
      /ddl
         model1.ddl
         model2.ddl
      /misc
        foo.txt 

NOTE: the vdbFolder is always defined in exploded format, it will NOT work if you copied the legacy Designer based VDB into this folder and expect to convert it. If you have a Designer based vdb, first load that into the your Designer, export as -vdb.xml file, and then copy that file here.

When the build process finishes, it will create zip archive with .vdb extension with all the vdb files and marks it as artifact of the build process.

If your VDB does import other VDBs, then define those VDBs as dependencies in this project. For ex:

<dependency>
  <groupId>com.example</groupId>
  <artifactId>another-vdb</artifactId>
  <version>1.0.0</version>
  <type>vdb</type>
</dependency>

The build process will pull in the these dependencies and will it a part of the main VDB.

When it finds the -vdb.xml file, NOTE: Currently -vdb.ddl based vdbs do not support the vdb import feature, it is limited to -vdb.xml based vdbs.

How to do a release

git pull upstream master
mvn -DautoVersionSubmodules=true -P release clean package release:prepare
mvn -P release release:perform
org.teiid

Teiid

Open Source Data Virtualization Platform

Версии библиотеки

Версия
1.5
1.4
1.3
1.2
1.1
1.0