sample-connector
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.talend.sdk.component</groupId>
<artifactId>sample-connector</artifactId>
<version>1.92.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (C) 2006-2026 Talend Inc. - www.talend.com
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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<!-- Maven model definition -->
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.talend.sdk.component</groupId>
<artifactId>sample-parent</artifactId>
<version>1.92.0</version>
</parent>
<artifactId>sample-connector</artifactId>
<name>Component Runtime :: Sample Parent :: Sample connector</name>
<description>Sample connectors for test.
This connector plugin include several connectors used for learning process and automation testing.
Examples of automation testing projects:
- TCK API automatic testing.</description>
<properties>
<talend.build.name>${talend.build.name.base}.sample.connector</talend.build.name>
<!-- talend.validation.icons.legacy shall be deactivated because for test purpose this connector doesn't
have all icons provided. See sample-parent/sample-connector/src/main/resources/icons/README.md-->
<talend.validation.icons.legacy>false</talend.validation.icons.legacy>
</properties>
<dependencies>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.18.0</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-collections4</artifactId>
<version>4.4</version>
</dependency>
<dependency>
<groupId>org.talend.sdk.component</groupId>
<artifactId>component-api</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.talend.sdk.component</groupId>
<artifactId>component-runtime-impl</artifactId>
<version>1.92.0</version>
<scope>compile</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.talend.sdk.component</groupId>
<artifactId>talend-component-maven-plugin</artifactId>
<version>${project.version}</version>
<executions>
<execution>
<id>talend-svg2png</id>
<goals>
<goal>svg2png</goal>
</goals>
<phase>process-classes</phase>
</execution>
<execution>
<id>talend-dependencies</id>
<goals>
<goal>dependencies</goal>
</goals>
<phase>process-classes</phase>
</execution>
<execution>
<id>talend-component-bundle</id>
<goals>
<goal>car</goal>
</goals>
<phase>package</phase>
</execution>
<execution>
<id>talend-component-validate</id>
<goals>
<goal>validate</goal>
</goals>
<phase>process-classes</phase>
<configuration>
<validatePlaceholder>true</validatePlaceholder>
<validateSvg>true</validateSvg>
<validateLegacyIcons>false</validateLegacyIcons>
<!-- needed because this connector is use theme icons. -->
<validateFamily>true</validateFamily>
<validateSerializable>true</validateSerializable>
<validateInternationalization>true</validateInternationalization>
<validateModel>true</validateModel>
<validateMetadata>true</validateMetadata>
<validateComponent>true</validateComponent>
<validateDataStore>true</validateDataStore>
<validateDataSet>true</validateDataSet>
<validateActions>true</validateActions>
<validateDocumentation>true</validateDocumentation>
<validateWording>true</validateWording>
<validateLayout>true</validateLayout>
<validateOptionNames>true</validateOptionNames>
<validateOutputConnection>true</validateOutputConnection>
<validateLocalConfiguration>true</validateLocalConfiguration>
<validateNoFinalOption>true</validateNoFinalOption>
<validateExceptions>true</validateExceptions>
<validateRecord>true</validateRecord>
<validateSchema>true</validateSchema>
<failOnValidateExceptions>true</failOnValidateExceptions>
</configuration>
</execution>
<execution>
<id>talend-component-documentation</id>
<goals>
<goal>asciidoc</goal>
</goals>
<phase>process-classes</phase>
<configuration>
<locales>
<locale>root</locale>
<locale>en</locale>
<locale>fr</locale>
<locale>ja</locale>
<locale>de</locale>
<locale>uk</locale>
<locale>zh</locale>
</locales>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>