efluid-datagate-generator-example
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.efluid.oss</groupId>
<artifactId>efluid-datagate-generator-example</artifactId>
<version>6.1.5</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<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>
<artifactId>efluid-datagate-generator-example</artifactId>
<packaging>jar</packaging>
<name>Dictionary generator tests on example instance</name>
<description>Dictionary generator test on app model, with validation on a temporary datagate instance</description>
<parent>
<groupId>com.efluid.oss</groupId>
<artifactId>efluid-datagate-parent</artifactId>
<version>6.1.5</version>
</parent>
<build>
<plugins>
<!-- Disabled as intermodule plugin is not quite possible in the same project -->
<!--
<plugin>
<groupId>${project.groupId}</groupId>
<artifactId>efluid-datagate-generator</artifactId>
<executions>
<execution>
<id>generate</id>
<phase>generate-sources</phase>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
<configuration>
<destinationFileDesignation>generated-dictionary</destinationFileDesignation>
<destinationFolder>${project.basedir}/target</destinationFolder>
<protectColumn>true</protectColumn>
<sourcePackage>fr.uem.efluid.sample</sourcePackage>
<uploadToServer>false</uploadToServer>
<uploadEntryPointUri>http://127.0.0.1:8080/rest/v1</uploadEntryPointUri>
<uploadSecurityToken>afc9921811684c7f88062cd47ddf0ff5</uploadSecurityToken>
<projectVersion>${project.version}</projectVersion>
<checkDuplicateTables>false</checkDuplicateTables>
</configuration>
</plugin>
-->
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<executions>
<execution>
<id>report-aggregate</id>
<phase>verify</phase>
<goals>
<goal>report-aggregate</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>efluid-datagate-api</artifactId>
<version>${project.version}</version>
</dependency>
<!-- Test tools -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>efluid-datagate-generator</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>efluid-datagate-app</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>