sample-connector
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.talend.sdk.component</groupId> <artifactId>sample-connector</artifactId> <version>1.64.6</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright (C) 2006-2024 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 http://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.64.6</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>true</talend.validation.icons.legacy> </properties> <dependencies> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.12.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> </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> <validateModel>true</validateModel> <validatePlaceholder>true</validatePlaceholder> <validateDocumentation>true</validateDocumentation> <validateWording>true</validateWording> <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>